[IMP] account: added classes to set marginn & get label bold

bzr revid: cha@tinyerp.com-20130315071339-wu5yz4t8pax9ijlk
This commit is contained in:
Ajay Chauhan (OpenERP) 2013-03-15 12:43:39 +05:30
parent dbc91ddf99
commit d0933e93b5
2 changed files with 13 additions and 4 deletions

View File

@ -2349,16 +2349,16 @@
<group>
<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" style="font-weight:bold;"/>
<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'}"/>
<label for="balance_end" string="= Computed Balance" style="font-weight:bold;"/>
<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'}"/>
</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" style="font-weight:bold;"/>
<field name="difference" nolabel="1" class="oe_bold" 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'}"/>
</group>
</div>
</group>

View File

@ -16,4 +16,13 @@
.openerp .oe_account_reconciliation>div>div {
display: table-cell;
width: 50%:
}
.openerp .oe_force_bold {
font-weight: bold !important;
}
.openerp .oe_account_opening_total {
margin-right: -14px;
}
.openerp .oe_account_ening_total {
margin-right: -2px;
}