制造订单 单个制造
This commit is contained in:
39
sf_manufacturing_orders/views/sf_production.xml
Normal file
39
sf_manufacturing_orders/views/sf_production.xml
Normal file
@@ -0,0 +1,39 @@
|
||||
<odoo>
|
||||
<data>
|
||||
<!-- view common to both template and product -->
|
||||
<record id="view_template_property_form" model="ir.ui.view">
|
||||
<field name="name">product.template.stock.property.form.inherit</field>
|
||||
<field name="model">product.template</field>
|
||||
<field name="inherit_id" ref="product.product_template_form_view"/>
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//group[@name='operations']" position="inside">
|
||||
<group>
|
||||
|
||||
</group>
|
||||
|
||||
<group string="订单规则">
|
||||
<field name="single_manufacturing" string="单个制造" widget="checkbox"/>
|
||||
|
||||
</group>
|
||||
</xpath>
|
||||
|
||||
<page name="inventory" position="inside">
|
||||
<group>
|
||||
<group string="Description for Receipts">
|
||||
<field name="description_pickingin" nolabel="1" placeholder="This note is added to receipt orders (e.g. where to store the product in the warehouse)."/>
|
||||
</group>
|
||||
<group string="Description for Delivery Orders">
|
||||
<field name="description_pickingout" nolabel="1" placeholder="This note is added to delivery orders."/>
|
||||
</group>
|
||||
<group string="Description for Internal Transfers" groups="stock.group_stock_multi_locations">
|
||||
<field name="description_picking" placeholder="This note is added to internal transfer orders (e.g. where to pick the product in the warehouse)." nolabel="1"/>
|
||||
</group>
|
||||
</group>
|
||||
</page>
|
||||
<page name="inventory" position="attributes">
|
||||
<attribute name="groups">stock.group_stock_user,product.group_stock_packaging</attribute>
|
||||
</page>
|
||||
</field>
|
||||
</record>
|
||||
</data>
|
||||
</odoo>
|
||||
Reference in New Issue
Block a user