Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/usr/bin/env python
- # -*- coding: utf8 -*-
- from proteus import config, Model
- from decimal import Decimal
- Sale = Model.get('sale.sale')
- SaleLine = Model.get('sale.line')
- sale = Sale()
- Party = Model.get('party.party')
- supplier = Party(name='Supplier')
- supplier.save()
- customer = Party(name='Customer')
- customer.save()
- sale.party = customer
- PaymentTerm = Model.get('account.invoice.payment_term')
- PaymentTermLine = Model.get('account.invoice.payment_term.line')
- payment_term = PaymentTerm(name='Direct')
- payment_term_line = PaymentTermLine(type='remainder', days=0)
- payment_term.lines.append(payment_term_line)
- payment_term.save()
- sale.payment_term = payment_term
- sale.invoice_method = 'order'
- sale_line = SaleLine()
- sale.lines.append(sale_line)
- ProductUom = Model.get('product.uom')
- unit, = ProductUom.find([('name', '=', 'Unit')])
- Product = Model.get('product.product')
- product = Product()
- product.name = 'product'
- product.default_uom = unit
- product.type = 'goods'
- product.purchasable = True
- product.salable = True
- product.list_price = Decimal('10')
- product.cost_price = Decimal('5')
- product.cost_price_method = 'fixed'
- product.save()
- sale_line.product = product
- sale_line.quantity = 2.0
- sale.save()
- Sale.quote([sale.id], config.context)
- Sale.confirm([sale.id], config.context)
- Sale.process([sale.id], config.context)
- sale.state
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement