[IMP] Improved the product_id in yml.

bzr revid: psa@tinyerp.com-20130827054608-ppf03r3xzu9td4db
This commit is contained in:
Paramjit Singh Sahota 2013-08-27 11:16:08 +05:30
parent 9d6cc51728
commit b4d13e3c3d
2 changed files with 7 additions and 8 deletions

View File

@ -77,7 +77,7 @@ Dashboard / Reports for MRP will include:
#TODO: This yml tests are needed to be completely reviewed again because the product wood panel is removed in product demo as it does not suit for new demo context of computer and consultant company
# so the ymls are too complex to change at this stage
'test': [
# 'test/bom_with_service_type_product.yml',
'test/bom_with_service_type_product.yml',
# 'test/order_demo.yml',
# 'test/order_process.yml',
# 'test/cancel_order.yml',

View File

@ -3,24 +3,24 @@
-
!record {model: mrp.bom, id: mrp_bom_test1}:
company_id: base.main_company
name: BOM with Service type products
product_id: product.product_product_4
name: PC Assemble SC234
product_id: product.product_product_3
product_qty: 1.0
type: normal
bom_lines:
- company_id: base.main_company
name: On Site Assistance
product_id: product.product_product_3
product_id: product.product_product_2
product_qty: 1.0
- company_id: base.main_company
name: GrapWorks Software
product_id: product.product_product_45
product_id: product.product_product_44
product_qty: 1.0
-
I make the production order for BoM having one service type product and one consumable product.
I make the production order using BoM having one service type product and one consumable product.
-
!record {model: mrp.production, id: mrp_production_servicetype_mo1}:
product_id: product.product_product_6
product_id: product.product_product_5
product_qty: 1.0
bom_id: mrp_bom_test1
date_planned: !eval time.strftime('%Y-%m-%d %H:%M:%S')
@ -57,4 +57,3 @@
!python {model: mrp.production}: |
order = self.browse(cr, uid, ref("mrp_production_servicetype_mo1"))
assert order.state == 'done', "Production order should be closed."