ODOO-SaleorderCreate

ODOO订单创建接口

1、 接口地址: base_url + '/web/dataset/call_kw'

base_url: 实际业务域名

2、 调用方式: jsonrpc

3、 模块名称:sale.order

4、 函数名: create

5、 参数

1)、kwargs: {} 字典

2)、args: [] 列表,包含如下:

客户信息参数 {} 字典,包含如下:

参数名称 是否必填 类型 描述
ec_code String 商城数据库的订单ID
origin String 源单据
client_order_ref String 客户参考
date_order String 订单时间
validity_date String 失效日期
user_id Int 销售员的ERP数据库ID
note String 订单条款和说明
team_id Int 销售渠道的数据库ID
partner_id Int 客户的ERP数据库ID
order_line List 订单明细行,以元组的列表增加数据,如[(0,0,{"name": "test"}),(0,0,{"name": "test1"})]
name String 订单明细行的名称,也是描述,
product_id Int 订单明细行的产品在ERP数据库的ID
product_uom_qty String 订单明细行的产品数量
sequence Int 订单明细行的序号
price_unit Float 订单明细行的单价
discount Float 订单明细行的折扣
product_uom Int 订单明细行的产品计量单位在ERP中的ID
customer_lead Float 订单明细行的交货期

3)、 HEADERS参数

参数名称 是否必填 类型 描述
X-Openerp-Session-Id String 用户验证后的session_id

6、返回值

格式: json

参数名称 是否必填 类型 描述
result Int 销售订单的数据库ID值

7、python DEMO

你可能感兴趣的:(ODOO-SaleorderCreate)