[ADD]Form view in action of quick journal items + add css class to handle switcher with extended list quickadd

bzr revid: dle@openerp.com-20121220114333-srge6x6bj8x2e7fl
This commit is contained in:
dle@openerp.com 2012-12-20 12:43:33 +01:00
commit 58f22ff9ed
3 changed files with 8 additions and 2 deletions

View File

@ -133,7 +133,9 @@ for a particular financial year and for preparation of vouchers there is a modul
"static/src/xml/account_move_reconciliation.xml",
"static/src/xml/account_move_line_quickadd.xml",
],
'css':['static/src/css/account_move_reconciliation.css'
'css':[
'static/src/css/account_move_reconciliation.css',
'static/src/css/account_move_line_quickadd.css'
],
'demo': [
'demo/account_demo.xml',

View File

@ -1155,7 +1155,7 @@
<field name="name">Journal Items</field>
<field name="res_model">account.move.line</field>
<field name="view_id" ref="view_move_line_tree"/>
<field name="view_mode">tree_account_move_line_quickadd</field>
<field name="view_mode">tree_account_move_line_quickadd,form</field>
<field name="help" type="html">
<p class="oe_view_nocontent_create">
Select the period and the journal you want to fill.

View File

@ -0,0 +1,4 @@
.openerp .oe_vm_switch_tree_account_move_line_quickadd:after {
padding: 2px;
content: "i";
}