I am new to odoo and could not find documentation regarding creation of invoice from
sale order using python (xmlrpc)
Here's my code for creating the quotation and confirming the sale order. Could anyone
please help me with creating invoice
s = models.execute_kw(db, uid, password, 'sale.order', 'create', [{
'partner_id': 1, 'validity_date': "2021-08-09",
'order_line': [(0, 0, {'product_id': 2, 'product_uom_qty': 2, 'price_unit': 10.00}),
(0, 0, {'product_id': 5, 'product_uom_qty': 4, 'price_unit': 20.00}),
],
}])
models.execute_kw(db, uid, password, 'sale.order', 'action_confirm', [[s]])
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- 客户关系管理
- e-Commerce
- 会计
- 库存
- PoS
- Project
- MRP
此问题已终结
1
回复
3149
查看
You can use create method for manual creation
相关帖文 | 回复 | 查看 | 活动 | |
---|---|---|---|---|
|
1
11月 22
|
3270 | ||
|
2
7月 22
|
4786 | ||
|
3
7月 25
|
788 | ||
|
1
8月 23
|
13236 | ||
|
1
10月 22
|
4179 |
On CE inoicing module is free, just so you know, you can take a look on that.