You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ofbiz.apache.org by "Tanakorn (JIRA)" <ji...@apache.org> on 2008/06/21 05:09:45 UTC

[jira] Created: (OFBIZ-1844) Entity budget_item has not relation with entity budget

Entity budget_item has not relation with entity budget
------------------------------------------------------

                 Key: OFBIZ-1844
                 URL: https://issues.apache.org/jira/browse/OFBIZ-1844
             Project: OFBiz
          Issue Type: Bug
          Components: accounting
    Affects Versions: SVN trunk
         Environment: Entity model
            Reporter: Tanakorn
            Priority: Critical
             Fix For: SVN trunk


The entity budget_item has two primary key: budget_id and budget_item_seq_id. The issue is budget_id should be a foreign key to entity budget.

<entity entity-name="BudgetItem"
            package-name="org.ofbiz.accounting.budget"
            title="Budget Item Entity">
      <field name="budgetId" type="id-ne"></field>
      <field name="budgetItemSeqId" type="id-ne"></field>
      <field name="budgetItemTypeId" type="id"></field>
      <field name="amount" type="currency-amount"></field>
      <field name="purpose" type="long-varchar"></field>
      <field name="justification" type="long-varchar"></field>
      <prim-key field="budgetId"/>
      <prim-key field="budgetItemSeqId"/>
+     <relation type="one" fk-name="BUDGET" rel-entity-name="Budget">
+      <key-map field-name="budgetId"/>
+     </relation>
      <relation type="one" fk-name="BUDGET_ITEM_BTYP" rel-entity-name="BudgetItemType">
        <key-map field-name="budgetItemTypeId"/>
      </relation>

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (OFBIZ-1844) Entity budget_item has not relation with entity budget

Posted by "Ashish Vijaywargiya (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/OFBIZ-1844?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12606974#action_12606974 ] 

Ashish Vijaywargiya commented on OFBIZ-1844:
--------------------------------------------

Thanks Tanakorn.
Your patch is in trunk rev # 670139.

--
Ashish Vijaywargiya

> Entity budget_item has not relation with entity budget
> ------------------------------------------------------
>
>                 Key: OFBIZ-1844
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-1844
>             Project: OFBiz
>          Issue Type: Bug
>          Components: accounting
>    Affects Versions: SVN trunk
>         Environment: Entity model
>            Reporter: Tanakorn
>            Assignee: Ashish Vijaywargiya
>            Priority: Critical
>             Fix For: SVN trunk
>
>
> The entity budget_item has two primary key: budget_id and budget_item_seq_id. The issue is budget_id should be a foreign key to entity budget.
> <entity entity-name="BudgetItem"
>             package-name="org.ofbiz.accounting.budget"
>             title="Budget Item Entity">
>       <field name="budgetId" type="id-ne"></field>
>       <field name="budgetItemSeqId" type="id-ne"></field>
>       <field name="budgetItemTypeId" type="id"></field>
>       <field name="amount" type="currency-amount"></field>
>       <field name="purpose" type="long-varchar"></field>
>       <field name="justification" type="long-varchar"></field>
>       <prim-key field="budgetId"/>
>       <prim-key field="budgetItemSeqId"/>
> +     <relation type="one" fk-name="BUDGET" rel-entity-name="Budget">
> +      <key-map field-name="budgetId"/>
> +     </relation>
>       <relation type="one" fk-name="BUDGET_ITEM_BTYP" rel-entity-name="BudgetItemType">
>         <key-map field-name="budgetItemTypeId"/>
>       </relation>

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Assigned: (OFBIZ-1844) Entity budget_item has not relation with entity budget

Posted by "Ashish Vijaywargiya (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/OFBIZ-1844?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Ashish Vijaywargiya reassigned OFBIZ-1844:
------------------------------------------

    Assignee: Ashish Vijaywargiya

> Entity budget_item has not relation with entity budget
> ------------------------------------------------------
>
>                 Key: OFBIZ-1844
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-1844
>             Project: OFBiz
>          Issue Type: Bug
>          Components: accounting
>    Affects Versions: SVN trunk
>         Environment: Entity model
>            Reporter: Tanakorn
>            Assignee: Ashish Vijaywargiya
>            Priority: Critical
>             Fix For: SVN trunk
>
>
> The entity budget_item has two primary key: budget_id and budget_item_seq_id. The issue is budget_id should be a foreign key to entity budget.
> <entity entity-name="BudgetItem"
>             package-name="org.ofbiz.accounting.budget"
>             title="Budget Item Entity">
>       <field name="budgetId" type="id-ne"></field>
>       <field name="budgetItemSeqId" type="id-ne"></field>
>       <field name="budgetItemTypeId" type="id"></field>
>       <field name="amount" type="currency-amount"></field>
>       <field name="purpose" type="long-varchar"></field>
>       <field name="justification" type="long-varchar"></field>
>       <prim-key field="budgetId"/>
>       <prim-key field="budgetItemSeqId"/>
> +     <relation type="one" fk-name="BUDGET" rel-entity-name="Budget">
> +      <key-map field-name="budgetId"/>
> +     </relation>
>       <relation type="one" fk-name="BUDGET_ITEM_BTYP" rel-entity-name="BudgetItemType">
>         <key-map field-name="budgetItemTypeId"/>
>       </relation>

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Closed: (OFBIZ-1844) Entity budget_item has not relation with entity budget

Posted by "Ashish Vijaywargiya (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/OFBIZ-1844?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Ashish Vijaywargiya closed OFBIZ-1844.
--------------------------------------

    Resolution: Fixed

> Entity budget_item has not relation with entity budget
> ------------------------------------------------------
>
>                 Key: OFBIZ-1844
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-1844
>             Project: OFBiz
>          Issue Type: Bug
>          Components: accounting
>    Affects Versions: SVN trunk
>         Environment: Entity model
>            Reporter: Tanakorn
>            Assignee: Ashish Vijaywargiya
>            Priority: Critical
>             Fix For: SVN trunk
>
>
> The entity budget_item has two primary key: budget_id and budget_item_seq_id. The issue is budget_id should be a foreign key to entity budget.
> <entity entity-name="BudgetItem"
>             package-name="org.ofbiz.accounting.budget"
>             title="Budget Item Entity">
>       <field name="budgetId" type="id-ne"></field>
>       <field name="budgetItemSeqId" type="id-ne"></field>
>       <field name="budgetItemTypeId" type="id"></field>
>       <field name="amount" type="currency-amount"></field>
>       <field name="purpose" type="long-varchar"></field>
>       <field name="justification" type="long-varchar"></field>
>       <prim-key field="budgetId"/>
>       <prim-key field="budgetItemSeqId"/>
> +     <relation type="one" fk-name="BUDGET" rel-entity-name="Budget">
> +      <key-map field-name="budgetId"/>
> +     </relation>
>       <relation type="one" fk-name="BUDGET_ITEM_BTYP" rel-entity-name="BudgetItemType">
>         <key-map field-name="budgetItemTypeId"/>
>       </relation>

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.