[IMP] account: added class 'oe_account_total' to get total in align

bzr revid: cha@tinyerp.com-20130315073131-eltl1141mtxspokd
This commit is contained in:
Ajay Chauhan (OpenERP) 2013-03-15 13:01:31 +05:30
parent d0933e93b5
commit bcd4ee5cd2
2 changed files with 6 additions and 3 deletions

View File

@ -2350,15 +2350,15 @@
<group class="oe_subtotal_footer oe_right">
<field name="balance_start" readonly="1" string="Opening Balance" class="oe_subtotal_footer_separator" widget="monetary" options="{'currency_field': 'currency'}"/>
<label for="total_entry_encoding" string="+ Transactions" class="oe_bold oe_account_opening_total"/>
<field name="total_entry_encoding" nolabel="1" class="oe_bold" widget="monetary" options="{'currency_field': 'currency'}"/>
<field name="total_entry_encoding" nolabel="1" class="oe_bold oe_account_total" widget="monetary" options="{'currency_field': 'currency'}"/>
<label for="balance_end" string="= Computed Balance" class="oe_force_bold oe_account_opening_total"/>
<field name="balance_end" nolabel="1" class="oe_bold" widget="monetary" options="{'currency_field': 'currency'}"/>
<field name="balance_end" nolabel="1" class="oe_bold oe_account_total" widget="monetary" options="{'currency_field': 'currency'}"/>
</group>
<div>
<group class="oe_subtotal_footer oe_right" attrs="{'invisible' : [('state', '=', 'draft')]}">
<field name="balance_end_real" readonly="1" class="oe_subtotal_footer_separator" widget="monetary" options="{'currency_field': 'currency'}"/>
<label for="difference" class="oe_force_bold oe_account_ening_total"/>
<field name="difference" nolabel="1" class="oe_bold" widget="monetary" options="{'currency_field': 'currency'}"/>
<field name="difference" nolabel="1" class="oe_bold oe_account_total" widget="monetary" options="{'currency_field': 'currency'}"/>
</group>
</div>
</group>

View File

@ -25,4 +25,7 @@
}
.openerp .oe_account_ening_total {
margin-right: -2px;
}
.openerp .oe_account_total {
margin-left: -2px;
}