GoodERP
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

575 lines
36KB

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <odoo>
  3. <data>
  4. <!-- 物料清单 -->
  5. <record id='wh_bom_list' model='ir.ui.view'>
  6. <field name='name'>wh.bom.list</field>
  7. <field name='model'>wh.bom</field>
  8. <field name='arch' type='xml'>
  9. <list string='物料清单'>
  10. <field name='name' optional="show"/>
  11. <field name='type' optional="show"/>
  12. <field name='version_control_id' optional="show"/>
  13. <field name='details' widget="html" optional="show"/>
  14. <field name='active' optional="hide"/>
  15. </list>
  16. </field>
  17. </record>
  18. <record id='wh_bom_form' model='ir.ui.view'>
  19. <field name='name'>wh.bom.form</field>
  20. <field name='model'>wh.bom</field>
  21. <field name='arch' type='xml'>
  22. <form string='物料清单'>
  23. <sheet>
  24. <group>
  25. <group>
  26. <field name='name' required='1' />
  27. <field name='version_control_id' context="{'default_type': 'bom_version'}" />
  28. </group>
  29. <group>
  30. <field name='type' required='1' />
  31. </group>
  32. </group>
  33. <group string='组合件'>
  34. <field name='line_parent_ids' nolabel='1' colspan="2">
  35. <list editable='bottom'>
  36. <field name='goods_id' required='1' />
  37. <field name='attribute_id' domain="[('goods_id', '=', goods_id)]"/>
  38. <field name='goods_qty' required='1' />
  39. <field name="last_cost" groups='goods.view_cost_groups' sum="合计"/>
  40. </list>
  41. </field>
  42. </group>
  43. <group string='子件'>
  44. <field name='line_child_ids' nolabel='1' colspan="2">
  45. <list editable='bottom'>
  46. <field name='goods_id' required='1' />
  47. <field name='attribute_id' domain="[('goods_id', '=', goods_id)]"/>
  48. <field name='designator'/>
  49. <field name='goods_qty' required='1' />
  50. <field name="last_cost" groups='goods.view_cost_groups' sum="合计"/>
  51. </list>
  52. </field>
  53. </group>
  54. </sheet>
  55. <chatter/>
  56. </form>
  57. </field>
  58. </record>
  59. <record id="wh_bom_search" model="ir.ui.view">
  60. <field name="name">wh.bom.search</field>
  61. <field name="model">wh.bom</field>
  62. <field name="arch" type="xml">
  63. <search string="物料清单">
  64. <field name="name"/>
  65. <field name="type"/>
  66. <field name="goods_id"/>
  67. <field name="line_child_ids" string="含部件" filter_domain="[('line_child_ids.goods_id','ilike',self)]"/>
  68. <filter name="assembly" string="组装单" domain="[('type','=','assembly')]"/>
  69. <filter name="disassembly" string="拆卸单" domain="[('type','=','disassembly')]"/>
  70. </search>
  71. </field>
  72. </record>
  73. <record id='wh_assembly_list' model='ir.ui.view'>
  74. <field name='name'>wh.assembly.list</field>
  75. <field name='model'>wh.assembly</field>
  76. <field name='arch' type='xml'>
  77. <list string='组装单' decoration-info='state == "draft"' decoration-muted= 'state == "cancel"' >
  78. <field name='date' optional="show"/>
  79. <field name='name' optional="show"/>
  80. <field name='fee' optional="show"/>
  81. <field name='goods_qty' optional="show"/>
  82. <field name='details' widget="html" optional="show"/>
  83. <field name='warehouse_id' string="材料扣料仓" optional="show"/>
  84. <field name='warehouse_dest_id' string="成品入库仓" optional="show"/>
  85. <field name='lot' string="入库批号" groups='goods.batch_groups' optional="show"/>
  86. <field name='user_id' optional="show"/>
  87. <field name='state' optional="show"/>
  88. </list>
  89. </field>
  90. </record>
  91. <record id='wh_assembly_form' model='ir.ui.view'>
  92. <field name='name'>wh.assembly.form</field>
  93. <field name='model'>wh.assembly</field>
  94. <field name='arch' type='xml'>
  95. <form string='组装单' >
  96. <header>
  97. <button name='approve_feeding' type='object' string='发料' class='oe_highlight'
  98. invisible="state != 'draft'"/>
  99. <button name='cancel_feeding' type='object' string='退料'
  100. invisible="state != 'feeding'"/>
  101. <button name='approve_order' type='object' string='成品入库' class='oe_highlight'
  102. invisible="state != 'feeding'"/>
  103. <button name='cancel_approved_order' type='object' string='撤销入库' invisible="state != 'done'" />
  104. <button name='update_bom' type='object' string='存为物料清单' invisible="1"/>
  105. <button name="action_cancel" invisible="state != 'draft'" string="作废" type="object"/>
  106. <field name='state' widget='statusbar' statusbar_visible="draft,feeding,done"/>
  107. </header>
  108. <sheet>
  109. <group>
  110. <group>
  111. <field name='date' required='1' readonly="state=='done'"/>
  112. <field name='warehouse_id' string="材料扣料仓"/>
  113. <field name='bom_id' options="{'no_create': 1}"
  114. readonly="state != 'draft' and state != 'feeding'"/>
  115. <field name='goods_id' options="{'no_create': 1}" invisible="1"
  116. readonly="state != 'draft' and state != 'feeding'"/>
  117. <field name='lot' string="入库批号"
  118. groups='goods.batch_groups'
  119. readonly="state != 'draft' and state != 'feeding'"/>
  120. <field name='goods_qty' options="{'no_create': 1}"
  121. readonly="state != 'draft' and state != 'feeding'"/>
  122. <field name='user_id'
  123. options="{'no_open': True, 'no_create': True}"/>
  124. </group>
  125. <group>
  126. <field name='fee'/>
  127. <field name='warehouse_dest_id' string="成品入库仓"/>
  128. <field name='voucher_id' readonly='1'/>
  129. <field name='out_voucher_id' readonly='1'/>
  130. <field name='finance_category_id' invisible="1"/>
  131. <field name='state' invisible='1'/>
  132. </group>
  133. </group>
  134. <group>
  135. <field name='line_ids'
  136. context="{'lot': True, 'default_warehouse_id': warehouse_id}"
  137. readonly="state=='done'">
  138. <list string='库存调拨' editable='bottom' default_order="type desc" decoration-info="type=='out'">
  139. <field name='type' required='1' readonly="state=='done'" optional="show"/>
  140. <field name='goods_id' required='1' readonly="state=='done'" optional="show"/>
  141. <field name='attribute_id'
  142. domain="[('goods_id', '=', goods_id)]"
  143. required="using_attribute" readonly="not using_attribute or state=='done'"
  144. groups='goods.multi_attrs_groups' optional="show"/>
  145. <field name="warehouse_id" invisible="1"/>
  146. <field name='lot_id' string="发料批号"
  147. groups='goods.batch_groups'
  148. readonly="not using_batch or state=='done' or type=='in'"
  149. required="using_batch and type=='out'"
  150. context="{'lot': True}"
  151. options="{'no_open': True, 'no_create': True, 'no_edit': True}" optional="show"/>
  152. <field name='lot'
  153. groups='goods.batch_groups'
  154. readonly="not using_batch or state=='done' or type=='out'"
  155. required="using_batch and type=='in'" optional="show"/>
  156. <field name='location_id' groups="warehouse.multi_location_groups" options="{'no_open': True, 'no_create': True}" optional="show"/>
  157. <field name='goods_uos_qty'
  158. groups='goods.auxiliary_unit_groups' sum='1'
  159. readonly="state=='done'" optional="show"/>
  160. <field name='uos_id' groups='goods.auxiliary_unit_groups'
  161. readonly="state=='done'" optional="show"/>
  162. <field name='goods_qty' readonly="force_batch_one or state=='done'" sum='1' optional="show"/>
  163. <field name='uom_id' required='1' readonly="state=='done'" optional="show"/>
  164. <field name='cost_unit' string='入库单位成本' readonly='1' optional="show"/>
  165. <field name='cost' string='入库金额' readonly='1' sum='1' optional="show"/>
  166. <field name='expiration_date' groups='warehouse.group_expiration_date' optional="show"/>
  167. <field name="scrap" optional="show"/>
  168. <field name='note' string='备注' optional="show"/>
  169. <field name='using_batch' column_invisible='1'/>
  170. <field name='force_batch_one' column_invisible='1'/>
  171. <field name='using_attribute' column_invisible='1'/>
  172. <field name='type' column_invisible='1'/>
  173. <field name='state' column_invisible='1'/>
  174. </list>
  175. </field>
  176. </group>
  177. <group>
  178. <field name='note' nolabel='1' colspan="2" placeholder='备注...' />
  179. </group>
  180. <group>
  181. <field name='qc_result' widget='pdf_viewer'
  182. readonly="state=='done'"
  183. groups='warehouse.group_qc'
  184. />
  185. </group>
  186. <group col='6'>
  187. <group colspan='2'>
  188. <field name='create_uid' string='制单人' readonly='1' />
  189. <field name='create_date' string='录单时间' readonly='1' />
  190. </group>
  191. <group colspan='2'>
  192. <field name='write_uid' string='最后修改人' readonly='1' />
  193. <field name='write_date' string='最后修改时间' readonly='1' />
  194. </group>
  195. <group colspan='2'>
  196. <field name='approve_uid' readonly='1' />
  197. <field name='approve_date' readonly='1' />
  198. </group>
  199. </group>
  200. </sheet>
  201. <chatter/>
  202. </form>
  203. </field>
  204. </record>
  205. <record id="wh_assembly_search" model="ir.ui.view">
  206. <field name="name">wh.assembly.search</field>
  207. <field name="model">wh.assembly</field>
  208. <field name="arch" type="xml">
  209. <search string="组装单">
  210. <field name="name"/>
  211. <field name="line_in_ids" string="含成品" filter_domain="[('line_in_ids.goods_id','ilike',self)]"/>
  212. <field name="line_out_ids" string="含部件" filter_domain="[('line_out_ids.goods_id','ilike',self)]"/>
  213. <field name='warehouse_id'/>
  214. <field name="state"/>
  215. <group expand="0" string="分组">
  216. <filter name="by_wh" string="调出仓库" domain="[]" context="{'group_by':'warehouse_id'}"/>
  217. <filter name="by_day" string="单据日期" domain="[]" context="{'group_by':'date:day'}"/>
  218. </group>
  219. </search>
  220. </field>
  221. </record>
  222. <record id='outsource_list' model='ir.ui.view'>
  223. <field name='name'>outsource.list</field>
  224. <field name='model'>outsource</field>
  225. <field name='arch' type='xml'>
  226. <list string='委外加工单' decoration-info='state == "draft"' decoration-muted= 'state == "cancel"' >
  227. <field name="outsource_partner_id" optional="show"/>
  228. <field name='date' optional="show"/>
  229. <field name='name' optional="show"/>
  230. <field name='outsource_fee' optional="show"/>
  231. <field name='goods_qty' optional="show"/>
  232. <field name='details' widget="html" optional="show"/>
  233. <field name='warehouse_id' optional="show"/>
  234. <field name='warehouse_dest_id' optional="show"/>
  235. <field name='lot' string="入库批号" groups='goods.batch_groups' optional="show"/>
  236. <field name='user_id' optional="show"/>
  237. <field name='state' optional="show"/>
  238. </list>
  239. </field>
  240. </record>
  241. <record id='outsource_form' model='ir.ui.view'>
  242. <field name='name'>outsource.form</field>
  243. <field name='model'>outsource</field>
  244. <field name='arch' type='xml'>
  245. <form string='委外加工单'>
  246. <header>
  247. <button name='approve_feeding' type='object' string='发料' class='oe_highlight'
  248. invisible="state != 'draft'"/>
  249. <button name='cancel_feeding' type='object' string='退料'
  250. invisible="state != 'feeding'"/>
  251. <button name='approve_order' type='object' string='成品入库' class='oe_highlight'
  252. invisible="state != 'feeding'"/>
  253. <button name='cancel_approved_order' type='object' string='撤销入库' invisible="state != 'done'"/>
  254. <button name="action_cancel" invisible="state != 'draft'" string="作废" type="object"/>
  255. <field name='state' widget='statusbar' statusbar_visible="draft,feeding,done"/>
  256. </header>
  257. <sheet>
  258. <group>
  259. <group>
  260. <field name='outsource_partner_id' domain="[('s_category_id', '!=', False)]"
  261. context="{'form_view_ref': 'core.supplier_address_form'}"
  262. readonly="state != 'draft' and state != 'feeding'"/>
  263. <field name='address_id' readonly="state=='done'"/>
  264. <field name='date' required='1' readonly="state=='done'"/>
  265. <field name='warehouse_id'/>
  266. <field name='bom_id' options="{'no_create': 1}"/>
  267. <field name='goods_id' options="{'no_create': 1}" invisible="1"/>
  268. <field name='lot' string="入库批号"
  269. groups='goods.batch_groups'/>
  270. <field name='goods_qty' options="{'no_create': 1}"/>
  271. <field name='user_id'
  272. options="{'no_open': True, 'no_create': True}"/>
  273. </group>
  274. <group>
  275. <field name='outsource_fee'
  276. readonly="state != 'draft' and state != 'feeding'"/>
  277. <field name='tax_amount'
  278. readonly="state != 'draft' and state != 'feeding'"/>
  279. <field name='wh_assembly_id' options="{'no_create': True}"
  280. readonly="state != 'draft' and state != 'feeding'"/>
  281. <field name='warehouse_dest_id'/>
  282. <field name='invoice_id' readonly='1' options="{'no_create': True}"/>
  283. <field name='voucher_id' readonly='1'/>
  284. <field name='out_voucher_id' readonly='1'/>
  285. <field name='finance_category_id' invisible="1"/>
  286. <field name='state' invisible='1'/>
  287. </group>
  288. </group>
  289. <group string='产出成品和投入材料'>
  290. <field nolabel='1' name='line_ids' colspan="2"
  291. context="{'lot': True, 'default_warehouse_id': warehouse_id}"
  292. readonly="state=='done'">
  293. <list string='库存调拨' editable='bottom' default_order="type desc" decoration-info="type=='out'">
  294. <field name='type'
  295. required='1'
  296. readonly="state=='done'" optional="show"/>
  297. <field name='goods_id'
  298. required='1'
  299. readonly="state=='done'" optional="show"/>
  300. <field name='attribute_id'
  301. domain="[('goods_id', '=', goods_id)]"
  302. required="using_attribute" readonly="not using_attribute or state=='done'"
  303. groups='goods.multi_attrs_groups' optional="show"/>
  304. <field name="warehouse_id" invisible="1"/>
  305. <field name='lot_id' string="发料批号"
  306. groups='goods.batch_groups'
  307. readonly="not using_batch or state=='done' or type=='in'"
  308. required="using_batch and type=='out'"
  309. context="{'lot': True}"
  310. options="{'no_open': True, 'no_create': True, 'no_edit': True}" optional="show"/>
  311. <field name='lot'
  312. groups='goods.batch_groups'
  313. readonly="not using_batch or state=='done' or type=='out'"
  314. required="using_batch and type=='in'" optional="show"/>
  315. <field name='goods_uos_qty'
  316. groups='goods.auxiliary_unit_groups'
  317. sum='1'
  318. readonly="state=='done'" optional="hide"/>
  319. <field name='uos_id'
  320. groups='goods.auxiliary_unit_groups'
  321. readonly="state=='done'" optional="hide"/>
  322. <field name='goods_qty'
  323. readonly="force_batch_one or state=='done'"
  324. sum='1' optional="show"/>
  325. <field name='uom_id'
  326. required='1'
  327. readonly="state=='done'" optional="show"/>
  328. <field name='price' string='加工单价(末税单价)'
  329. readonly="state=='done'" optional="show"/>
  330. <field name='tax_rate'
  331. readonly="state=='done'" optional="show"/>
  332. <field name='price_taxed'
  333. readonly="state=='done'" optional="show"/>
  334. <field name='cost_unit' string='入库单位成本' readonly='1' optional="show"/>
  335. <field name='cost' string='入库金额' readonly='1' sum='1' optional="show"/>
  336. <field name='expiration_date' groups='warehouse.group_expiration_date' optional="hide"/>
  337. <field name="scrap" optional="show"/>
  338. <field name='note' string='备注' optional="show"/>
  339. <field name='using_batch' column_invisible='1'/>
  340. <field name='force_batch_one' column_invisible='1'/>
  341. <field name='using_attribute' column_invisible='1'/>
  342. <field name='type' column_invisible='1'/>
  343. <field name='state' column_invisible='1'/>
  344. </list>
  345. </field>
  346. </group>
  347. <group>
  348. <field name='note' nolabel='1' colspan="2" placeholder='备注...' />
  349. </group>
  350. <group>
  351. <field name='qc_result' widget='pdf_viewer'
  352. readonly="state=='done'"
  353. groups='warehouse.group_qc'
  354. />
  355. </group>
  356. <group col='6'>
  357. <group colspan='2'>
  358. <field name='create_uid' string='制单人' readonly='1' />
  359. <field name='create_date' string='录单时间' readonly='1' />
  360. </group>
  361. <group colspan='2'>
  362. <field name='write_uid' string='最后修改人' readonly='1' />
  363. <field name='write_date' string='最后修改时间' readonly='1' />
  364. </group>
  365. <group colspan='2'>
  366. <field name='approve_uid' readonly='1' />
  367. <field name='approve_date' readonly='1' />
  368. </group>
  369. </group>
  370. </sheet>
  371. <chatter/>
  372. </form>
  373. </field>
  374. </record>
  375. <record id="outsource_search" model="ir.ui.view">
  376. <field name="name">outsource.search</field>
  377. <field name="model">outsource</field>
  378. <field name="arch" type="xml">
  379. <search string="委外单">
  380. <field name="name"/>
  381. <field name="line_in_ids" string="含成品" filter_domain="[('line_in_ids.goods_id','ilike',self)]"/>
  382. <field name="line_out_ids" string="含部件" filter_domain="[('line_out_ids.goods_id','ilike',self)]"/>
  383. <field name='warehouse_id'/>
  384. <field name="state"/>
  385. <group expand="0" string="分组">
  386. <filter name="by_wh" string="调出仓库" domain="[]" context="{'group_by':'warehouse_id'}"/>
  387. <filter name="by_day" string="单据日期" domain="[]" context="{'group_by':'date:day'}"/>
  388. </group>
  389. </search>
  390. </field>
  391. </record>
  392. <record id='wh_disassembly_list' model='ir.ui.view'>
  393. <field name='name'>wh.disassembly.list</field>
  394. <field name='model'>wh.disassembly</field>
  395. <field name='arch' type='xml'>
  396. <list string='拆卸单' decoration-info='state == "draft"' decoration-muted= 'state == "cancel"' >
  397. <field name='date' optional="show"/>
  398. <field name='name' optional="show"/>
  399. <field name='fee' optional="show"/>
  400. <field name='goods_qty' optional="show"/>
  401. <field name='details' widget="html" optional="show"/>
  402. <field name='warehouse_id' optional="show"/>
  403. <field name='warehouse_dest_id' optional="show"/>
  404. <field name='lot_id' string="发料批号" groups='goods.batch_groups' optional="show"/>
  405. <field name='user_id' optional="show"/>
  406. <field name='state' optional="show"/>
  407. </list>
  408. </field>
  409. </record>
  410. <record id='wh_disassembly_form' model='ir.ui.view'>
  411. <field name='name'>wh.disassembly.form</field>
  412. <field name='model'>wh.disassembly</field>
  413. <field name='arch' type='xml'>
  414. <form string='拆卸单' >
  415. <header>
  416. <button name='approve_feeding' type='object' string='发料' class='oe_highlight'
  417. invisible="state != 'draft'"/>
  418. <button name='cancel_feeding' type='object' string='退料'
  419. invisible="state != 'feeding'"/>
  420. <button name='approve_order' type='object' string='成品入库' class='oe_highlight'
  421. invisible="state != 'feeding'"/>
  422. <button name='cancel_approved_order' type='object' string='撤销入库' invisible="state != 'done'" />
  423. <button name='update_bom' type='object' string='存为物料清单' invisible="1"/>
  424. <button name="action_cancel" invisible="state != 'draft'" string="作废" type="object"/>
  425. <field name='state' widget='statusbar' statusbar_visible="draft,feeding,done"/>
  426. </header>
  427. <sheet>
  428. <group>
  429. <group>
  430. <field name='date' required='1' readonly="state=='done'" />
  431. <field name='warehouse_id' />
  432. <field name='bom_id' options="{'no_create': 1}"
  433. readonly="state != 'draft' and state != 'feeding'"/>
  434. <field name='goods_id' options="{'no_create': 1}" invisible="1"
  435. readonly="state != 'draft' and state != 'feeding'"/>
  436. <field name='lot_id' string="发料批号"
  437. groups='goods.batch_groups'
  438. domain="[('goods_id', '=', goods_id), ('state', '=', 'done'),
  439. ('lot', '!=', False), ('qty_remaining', '>', 0), ('warehouse_dest_id', '=', warehouse_id)]"/>
  440. <field name='goods_qty' options="{'no_create': 1}"
  441. readonly="state != 'draft' and state != 'feeding'"/>
  442. <field name='user_id'
  443. options="{'no_open': True, 'no_create': True}"/>
  444. </group>
  445. <group>
  446. <field name='fee' />
  447. <field name='warehouse_dest_id'/>
  448. <field name='voucher_id' readonly='1'/>
  449. <field name='out_voucher_id' readonly='1'/>
  450. <field name='finance_category_id' invisible="1"/>
  451. <field name='state' invisible='1'/>
  452. </group>
  453. </group>
  454. <group string='组合件和子件'>
  455. <field nolabel='1' colspan="2" name='line_ids'
  456. context="{'lot': True, 'default_warehouse_id': warehouse_id}"
  457. readonly="state=='done'">
  458. <list string='库存调拨' editable='bottom' default_order="type desc" decoration-info="type=='out'">
  459. <field name='type' required='1' readonly="state=='done'" optional="show"/>
  460. <field name='goods_id' required='1' readonly="state=='done'" optional="show"/>
  461. <field name='attribute_id'
  462. domain="[('goods_id', '=', goods_id)]"
  463. required="using_attribute"
  464. readonly="not using_attribute or state=='done'"
  465. groups='goods.multi_attrs_groups' optional="show"/>
  466. <field name='designator' invisible="1"/>
  467. <field name="warehouse_id" invisible="1"/>
  468. <field name='lot_id' string="发料批号"
  469. groups='goods.batch_groups'
  470. readonly="not using_batch or state=='done' or type=='in'"
  471. required="using_batch and type=='out'"
  472. context="{'lot': True}"
  473. options="{'no_open': True, 'no_create': True, 'no_edit': True}" optional="show"/>
  474. <field name='lot'
  475. groups='goods.batch_groups'
  476. readonly="not using_batch or state=='done' or type=='out'"
  477. required="using_batch and type=='in'" optional="show"/>
  478. <field name='goods_uos_qty'
  479. sum='1'
  480. readonly="state=='done'"
  481. groups='goods.auxiliary_unit_groups' optional="show"/>
  482. <field name='uos_id'
  483. groups='goods.auxiliary_unit_groups'
  484. readonly="state=='done'" optional="show"/>
  485. <field name='goods_qty' sum='1'
  486. readonly="force_batch_one or state=='done'" optional="show"/>
  487. <field name='uom_id'
  488. required='1'
  489. readonly="state=='done'" optional="show"/>
  490. <field name='cost_unit' string='出库单位成本' readonly='1' optional="show"/>
  491. <field name='cost' string='出库成本' readonly='1' sum='1' optional="show"/>
  492. <field name='expiration_date'
  493. readonly='1'
  494. groups='warehouse.group_expiration_date' optional="show"/>
  495. <field name='note' string='备注' optional="show"/>
  496. <field name='using_attribute' column_invisible='1'/>
  497. <field name='using_batch' column_invisible='1'/>
  498. <field name='force_batch_one' column_invisible='1'/>
  499. <field name='lot_qty' column_invisible='1'/>
  500. <field name='lot_uos_qty' column_invisible='1'/>
  501. <field name='type' column_invisible='1'/>
  502. <field name='state' column_invisible='1'/>
  503. <field name="all_lack" optional="hide"/>
  504. <field name="wh_lack" optional="hide"/>
  505. </list>
  506. </field>
  507. </group>
  508. <group>
  509. <field name='note' nolabel='1' colspan="2" placeholder='备注...' />
  510. </group>
  511. <group>
  512. <field name='qc_result' widget='pdf_viewer'
  513. readonly="state=='done'"
  514. groups='warehouse.group_qc'
  515. />
  516. </group>
  517. <group col='6'>
  518. <group colspan='2'>
  519. <field name='create_uid' string='制单人' readonly='1' />
  520. <field name='create_date' string='录单时间' readonly='1' />
  521. </group>
  522. <group colspan='2'>
  523. <field name='write_uid' string='最后修改人' readonly='1' />
  524. <field name='write_date' string='最后修改时间' readonly='1' />
  525. </group>
  526. <group colspan='2'>
  527. <field name='approve_uid' readonly='1' />
  528. <field name='approve_date' readonly='1' />
  529. </group>
  530. </group>
  531. </sheet>
  532. <chatter/>
  533. </form>
  534. </field>
  535. </record>
  536. <record id="wh_disassembly_search" model="ir.ui.view">
  537. <field name="name">wh.disassembly.search</field>
  538. <field name="model">wh.disassembly</field>
  539. <field name="arch" type="xml">
  540. <search string="拆卸单">
  541. <field name="name"/>
  542. <field name="line_in_ids" string="含成品" filter_domain="[('line_in_ids.goods_id','ilike',self)]"/>
  543. <field name="line_out_ids" string="含部件" filter_domain="[('line_out_ids.goods_id','ilike',self)]"/>
  544. <field name='warehouse_id'/>
  545. <field name="state"/>
  546. <group expand="0" string="分组">
  547. <filter name="by_wh" string="调出仓库" domain="[]" context="{'group_by':'warehouse_id'}"/>
  548. <filter name="by_day" string="单据日期" domain="[]" context="{'group_by':'date:day'}"/>
  549. </group>
  550. </search>
  551. </field>
  552. </record>
  553. </data>
  554. </odoo>
上海开阖软件有限公司 沪ICP备12045867号-1