You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ofbiz.apache.org by "ddev (Jira)" <ji...@apache.org> on 2020/10/02 16:16:00 UTC

[jira] [Created] (OFBIZ-12037) Bug is seed data for UomType / Uom

ddev created OFBIZ-12037:
----------------------------

             Summary: Bug is seed data for UomType / Uom
                 Key: OFBIZ-12037
                 URL: https://issues.apache.org/jira/browse/OFBIZ-12037
             Project: OFBiz
          Issue Type: Bug
          Components: datamodel
            Reporter: ddev


I found a problem in the seed data.  The kilogram, is under the wrong measure type.  The kilogram is a unit of mass, not a unit of weight. 

Explanation: The weight of a product/object changes with altitude, the mass does not.  (example: If you want to lower your mass, then you need to diet, but if you just want to weigh less, then just live on mars.)

(These are easy to confuse because of a naming collision:  there is a unit of mass called the pound and also unit of force called the pound)

Basically, we should change:

<UomType description="Weight" hasTable="N" uomTypeId="WEIGHT_MEASURE"/>

 To be:
 <UomType description="Mass" hasTable="N" uomTypeId="MASS_MEASURE"/>
 <UomType description="Force" hasTable="N" uomTypeId="FORCE_MEASURE"/>

 

With seperate Uoms under each UomType

 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)