我有一个创建表单的自定义模块。根据此表格中的答案,我正在生成订单行。用户发送此表单后,我将使用生成的订单行中的所有产品创建销售订单。
因此,我通过 JavaScript 发送包含要购买的产品的 JSON:
order_data = [{product_id: 1, amount: 10, …},{product_id: 2, …}, …];
note = '';
this._rpc({
route: '/api/create_order',
params: { order_products: order_data, note: note }
}).then((data) => {
window.location = '/contactus-thank-you';
}).catch((error) => {
console.error(error);
});
然后在 Python 中,我基于 JSON 创建销售订单:
@http.route('/api/create_order', type='json', auth='user', website=True)
def create_order(self, **kw):
uid = http.request.env.context.get('uid')
partner_id = http.request.env['res.users'].search([('id','=',uid)]).partner_id.id
order_products = kw.get('order_products', [])
note = kw.get('note', '')
order_line = []
for product in order_products:
amount = 0
if 'custom_amount' in product:
amount = product['custom_amount']
else:
amount = product['amount']
if amount > 0:
order_line.append(
(0, 0, {
'product_id': product['product_id'],
'product_uom_qty': amount,
}))
order_data = {
'name': http.request.env['ir.sequence'].with_user(SUPERUSER_ID).next_by_code('sale.order') or _('New'),
'partner_id': partner_id,
'order_line': order_line,
'note': note,
}
result_insert_record = http.request.env['sale.order'].with_user(SUPERUSER_ID).create(order_data)
return result_insert_record.id
但是我需要使用 Odoo 电子商务插件的工作流程,而不是直接生成销售订单。这样用户就可以编辑送货地址、选择付款方式等。所以我想我只需要以编程方式将所有产品放入购物车,然后 Odoo 内置功能即可处理剩下的事情。 但如何呢?我试图在 Odoo 源代码中找到一些东西,但很难掌握任何东西。
Odoo 使用典型的销售订单来处理购物车内的产品。但该过程并不像仅创建某些产品的销售订单那么简单。 Odoo 需要知道哪个订单与哪个购物车等相关联。
幸运的是,Odoo 有一个处理它的方法。有一种
sale_get_order()
方法可以让您获取当前与购物车链接的订单,或者创建新订单(如果没有)。
我不确定它是否记录在源代码之外的任何地方,所以这里是代码的一部分(
/addons/website_sale/models/website.py
):
def sale_get_order(self, force_create=False, code=None, update_pricelist=False, force_pricelist=False):
""" Return the current sales order after mofications specified by params.
:param bool force_create: Create sales order if not already existing
:param str code: Code to force a pricelist (promo code)
If empty, it's a special case to reset the pricelist with the first available else the default.
:param bool update_pricelist: Force to recompute all the lines from sales order to adapt the price with the current pricelist.
:param int force_pricelist: pricelist_id - if set, we change the pricelist with this one
:returns: browse record for the current sales order
"""
# ...
我将它与另一种方法一起使用
_cart_update()
,让我可以轻松更新此订单中的产品。还有 sale_reset()
,我使用它只是为了确保当前会话每次都会使用特定的销售订单进行更新。
sale_order = request.website.sale_get_order(force_create=True)
request.website.sale_reset()
sale_order.write({'order_line':[(5, 0, 0)]})
for product in order_products:
sale_order._cart_update(product_id=product['product_id'], line_id=None, add_qty=None, set_qty=product['amount'])
您能指导我创建一个按钮,通过代码在ODOO的库存中触发创建新产品表单吗