Skip to content

Commit

Permalink
[ENH] Columns adjusted in the tracking items views.
Browse files Browse the repository at this point in the history
  • Loading branch information
Odoo authored and dreispt committed Aug 27, 2023
1 parent c321c75 commit b1f3584
Showing 1 changed file with 25 additions and 24 deletions.
49 changes: 25 additions & 24 deletions account_analytic_wip/views/account_analytic_tracking.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,17 +23,18 @@
<group>
<field name="date" />
<field name="parent_id" />
<field name="planned_amount" />
<field name="planned_amount" string="Standard"/>
</group>
<group string="Actuals" name="actuals">
<field name="actual_amount" />
<field name="wip_actual_amount" />
<field name="remaining_actual_amount" />
<field name="variance_actual_amount" />
<field name="remaining_actual_amount" string="Remaining"/>
<field name="actual_amount" string="Actuals"/>
<field name="wip_actual_amount" string="WIP"/>
<field name="difference_actual_amount" string="Difference"/>
<field name="variance_actual_amount" string="Variance"/>
</group>
<group string="Accounted" name="accounted">
<field name="accounted_amount" />
<field name="pending_amount" />
<field name="accounted_amount" />
<button
name="process_wip_and_variance"
type="object"
Expand Down Expand Up @@ -91,9 +92,15 @@
<field name="product_id" optional="hide" />
<field
name="planned_amount"
string="Planned"
string="Standard"
optional="show"
sum="Planned"
sum="Standard"
/>
<field
name="remaining_actual_amount"
string="Remaining"
optional="show"
sum="Remaining"
/>
<field name="actual_amount" string="Actual" sum="Actual" />
<field
Expand All @@ -103,36 +110,30 @@
sum="WIP"
/>
<field
name="variance_actual_amount"
string="Variance"
name="pending_amount"
string="To Post"
optional="show"
sum="Variance"
sum="To Post"
/>
<field
name="remaining_actual_amount"
string="Remaining"
name="accounted_amount"
string="Posted"
optional="show"
sum="Remaining"
sum="Posted"
/>
<field
name="difference_actual_amount"
string="Difference"
optional="show"
sum="Difference"
/>
<field name="state" />
<field
name="accounted_amount"
string="Posted"
optional="show"
sum="Posted"
/>
<field
name="pending_amount"
string="To Post"
name="variance_actual_amount"
string="Variance"
optional="show"
sum="To Post"
sum="Variance"
/>
<field name="state" />
</tree>
</field>
</record>
Expand Down

0 comments on commit b1f3584

Please sign in to comment.