You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
996 B
26 lines
996 B
<?xml version="1.0" encoding="UTF-8"?>
|
|
<openerp><data>
|
|
|
|
<record model="ir.ui.view" id="cash_box_in_form">
|
|
<field name="model">cash.box.in</field>
|
|
<field name="inherit_id" ref="account.cash_box_in_form" />
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//field[@name='name']" position="before">
|
|
<field name="product_id" required="1" class="oe_inline"
|
|
domain="[('income_pdt', '=', True)]"/>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
|
|
<record model="ir.ui.view" id="cash_box_out_form">
|
|
<field name="model">cash.box.out</field>
|
|
<field name="inherit_id" ref="account.cash_box_out_form" />
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//field[@name='name']" position="before">
|
|
<field name="product_id" required="1" class="oe_inline"
|
|
domain="[('expense_pdt', '=', True)]"/>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
|
|
</data></openerp>
|