first commit
This commit is contained in:
@@ -0,0 +1,159 @@
|
||||
===============================================
|
||||
Stock Consignment Supplier to Customer Scenario
|
||||
===============================================
|
||||
|
||||
Imports::
|
||||
|
||||
>>> from decimal import Decimal
|
||||
|
||||
>>> from proteus import Model
|
||||
>>> from trytond.modules.account.tests.tools import create_chart, get_accounts
|
||||
>>> from trytond.modules.company.tests.tools import create_company
|
||||
>>> from trytond.tests.tools import activate_modules, assertEqual
|
||||
|
||||
Activate modules::
|
||||
|
||||
>>> config = activate_modules('stock_consignment', create_company, create_chart)
|
||||
|
||||
Get accounts::
|
||||
|
||||
>>> accounts = get_accounts()
|
||||
>>> revenue = accounts['revenue']
|
||||
>>> expense = accounts['expense']
|
||||
|
||||
Create parties::
|
||||
|
||||
>>> Party = Model.get('party.party')
|
||||
>>> supplier = Party(name='Supplier')
|
||||
>>> supplier.save()
|
||||
>>> customer = Party(name='Customer')
|
||||
>>> customer.save()
|
||||
|
||||
Get stock locations::
|
||||
|
||||
>>> Location = Model.get('stock.location')
|
||||
>>> warehouse_loc, = Location.find([('code', '=', 'WH')])
|
||||
>>> supplier_loc, = Location.find([('code', '=', 'SUP')])
|
||||
>>> storage_loc, = Location.find([('code', '=', 'STO')])
|
||||
>>> customer_loc, = Location.find([('code', '=', 'CUS')])
|
||||
>>> output_loc, = Location.find([('code', '=', 'OUT')])
|
||||
|
||||
Create customer consignment location::
|
||||
|
||||
>>> customer_consignment_loc = Location()
|
||||
>>> customer_consignment_loc.name = "Customer Consignment"
|
||||
>>> customer_consignment_loc.type = 'storage'
|
||||
>>> customer_consignment_loc.parent = customer_loc
|
||||
>>> customer_consignment_loc.consignment_party = customer
|
||||
>>> customer_consignment_loc.save()
|
||||
|
||||
Create supplier consignment location under customer consignment location::
|
||||
|
||||
>>> supplier_consignment_loc = Location()
|
||||
>>> supplier_consignment_loc.name = "Supplier Consignment"
|
||||
>>> supplier_consignment_loc.type = 'supplier'
|
||||
>>> supplier_consignment_loc.parent = customer_consignment_loc
|
||||
>>> supplier_consignment_loc.consignment_party = supplier
|
||||
>>> supplier_consignment_loc.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')
|
||||
>>> unit, = ProductUom.find([('name', '=', 'Unit')])
|
||||
>>> ProductTemplate = Model.get('product.template')
|
||||
>>> Product = Model.get('product.product')
|
||||
>>> product = Product()
|
||||
>>> template = ProductTemplate()
|
||||
>>> template.name = 'product'
|
||||
>>> template.default_uom = unit
|
||||
>>> template.type = 'goods'
|
||||
>>> template.purchasable = True
|
||||
>>> template.salable = True
|
||||
>>> template.list_price = Decimal('10')
|
||||
>>> template.account_category = account_category
|
||||
>>> product_supplier = template.product_suppliers.new()
|
||||
>>> product_supplier.party = supplier
|
||||
>>> price = product_supplier.prices.new()
|
||||
>>> price.quantity = 1
|
||||
>>> price.unit_price = Decimal('4')
|
||||
>>> template.save()
|
||||
>>> product.template = template
|
||||
>>> product.save()
|
||||
|
||||
Fill supplier consignment location::
|
||||
|
||||
>>> Shipment = Model.get('stock.shipment.internal')
|
||||
>>> shipment = Shipment()
|
||||
>>> shipment.from_location = supplier_loc
|
||||
>>> shipment.to_location = supplier_consignment_loc
|
||||
>>> move = shipment.moves.new()
|
||||
>>> move.product = product
|
||||
>>> move.quantity = 10
|
||||
>>> move.from_location = supplier_loc
|
||||
>>> move.to_location = supplier_consignment_loc
|
||||
>>> shipment.click('wait')
|
||||
>>> shipment.state
|
||||
'waiting'
|
||||
>>> shipment.click('assign_try')
|
||||
>>> shipment.state
|
||||
'assigned'
|
||||
>>> shipment.click('do')
|
||||
>>> shipment.state
|
||||
'done'
|
||||
|
||||
Use supplier consignment stock by customer::
|
||||
|
||||
>>> shipment = Shipment()
|
||||
>>> shipment.from_location = supplier_consignment_loc
|
||||
>>> shipment.to_location = customer_loc
|
||||
>>> move = shipment.moves.new()
|
||||
>>> move.product = product
|
||||
>>> move.quantity = 4
|
||||
>>> move.from_location = supplier_consignment_loc
|
||||
>>> move.to_location = customer_loc
|
||||
>>> shipment.click('wait')
|
||||
>>> shipment.state
|
||||
'waiting'
|
||||
>>> shipment.click('assign_try')
|
||||
>>> shipment.state
|
||||
'assigned'
|
||||
>>> shipment.click('do')
|
||||
>>> shipment.state
|
||||
'done'
|
||||
>>> move, = shipment.moves
|
||||
>>> len(move.invoice_lines)
|
||||
2
|
||||
>>> move.origin in move.invoice_lines
|
||||
True
|
||||
|
||||
Check supplier invoice line::
|
||||
|
||||
>>> InvoiceLine = Model.get('account.invoice.line')
|
||||
>>> invoice_line, = InvoiceLine.find([('invoice_type', '=', 'in')])
|
||||
>>> assertEqual(invoice_line.product, product)
|
||||
>>> invoice_line.quantity
|
||||
4.0
|
||||
>>> assertEqual(invoice_line.unit, unit)
|
||||
>>> invoice_line.unit_price
|
||||
Decimal('4.0000')
|
||||
>>> assertEqual(invoice_line.origin, move)
|
||||
|
||||
Check customer invoice line::
|
||||
|
||||
>>> invoice_line, = InvoiceLine.find([('invoice_type', '=', 'out')])
|
||||
>>> assertEqual(invoice_line.product, product)
|
||||
>>> invoice_line.quantity
|
||||
4.0
|
||||
>>> assertEqual(invoice_line.unit, unit)
|
||||
>>> invoice_line.unit_price
|
||||
Decimal('10.0000')
|
||||
>>> assertEqual(invoice_line.origin, move)
|
||||
Reference in New Issue
Block a user