20 lines
745 B
XML
20 lines
745 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
|
|
|
|
<record id="sf_install_the_tray_workorder_form_view_inherit" model="ir.ui.view">
|
|
<field name="name">sale.order.inherit</field>
|
|
<field name="model">mrp.workorder</field>
|
|
<!-- <field name="model">cnc.processing</field>-->
|
|
<field name="inherit_id" ref="sf_manufacturing.view_mrp_production_workorder_tray_form_inherit_sf"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//field[@name='remark']" position="after">
|
|
<button string="测试按钮" name="pri" type="object" class="btn-primary"/>
|
|
<button string="下发按钮" name="up" type="object" confirm="是否确认下发此程序" class="btn-primary"/>
|
|
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|