Remove accounts from products.

This commit is contained in:
Albert Cervera i Areny 2018-08-18 23:22:50 +02:00
parent 137daa339b
commit 0f5d59fe0b
1 changed files with 10 additions and 2 deletions

View File

@ -45,6 +45,15 @@ Create parties::
>>> customer = Party(name='Customer')
>>> customer.save()
Create account category::
>>> ProductCategory = Model.get('product.category')
>>> account_category = ProductCategory(name="Account Category")
>>> account_category.accounting = True
>>> account_category.account_expense = expense
>>> account_category.account_revenue = revenue
>>> account_category.save()
Create product::
>>> ProductUom = Model.get('product.uom')
@ -57,9 +66,8 @@ Create product::
>>> template.default_uom = unit
>>> template.type = 'goods'
>>> template.list_price = Decimal('20')
>>> template.cost_price = Decimal('8')
>>> template.purchasable = True
>>> template.account_expense = expense
>>> template.account_category = account_category
>>> template.save()
>>> product.template = template
>>> product.save()