Odoo 以编程方式向 python 中的采购订单添加税金

Odoo programatically add taxes to purchase order in python

我正在从外部来源创建采购订单(在线 xml 请求)。 当我遍历每个订单时,我创建了一个采购订单,然后我遍历了产品并为每个产品创建了一个订单行。

除增加税收外,所有这些都有效。我对如何加税感到困惑。我应该像这样立即将值添加到采购订单中吗 ->

# Create orderline foreach product (this happens in the loop foreach product)
orderlineList =  {
                'name': itemText,
                'product_id': itemId,
                'product_qty': itemOrdered,
                'product_uom': 1,
                'price_unit': itemPrice,
                'date_planned': orderDatePlanned,
            }

            struct = orderlinetuple + (orderlineList,)
            po_vals.append(struct)

 #This adds all the orderlines into 'order_line'
  orderDict = { 
         'amount_untaxed' : totalNet,
         'amount_tax': totalTax,
         'partner_id': api_partner,
         'amount_total' : totalBrut,
         'order_line': po_vals,
     }
# Then we create the purchase order with the added orderlines in one go
  self.PurchaseOrder = self.env['purchase.order']   
  po_id = self.PurchaseOrder.create(orderDict)

如果我这样创建我的采购订单,amount_tax 和 amount_total 将被忽略,我只是从订单行中获取不含税的总计。

这是不是走错了?我读过有关在采购订单上调用 onchange 的信息,但我不确定它是如何工作的,因为我看不到这将如何增加税收

此图显示订单行没有税

这张图片显示订单没有税

简而言之,如何在 python.

中从后端创建的采购订单中添加税金 (f.e. 21%)

感谢能够为我指明正确方向的人,过去 3 天一直在努力寻找这个...

需要调用odoo默认的on-change方法

When you call on-change method then system will automatic set tax based on product default tax and purchase order fiscal position.

第 1 步:您需要在不添加任何订单行的情况下创建采购订单

self.env['purchase.order'].create({'partner_id':'',...})

步骤 2: 使用以下方法创建所有采购订单行。

    new_record=self.env['purchase.order.line'].new({'order_id':purchase_order.id,
              'product_id':product_id,
              'product_uom':uom+id,
              'name':product_name
              })

    new_record.onchange_product_id()
    order_vals=new_record._convert_to_write({name: new_record[name] for name in new_record._cache}) 
    order_vals.update({'product_qty':product_qty,'price_unit':price_unit})
    self.env['purchase.order.line'].create(order_vals)

step-2 中,我们创建了采购订单行并调用了 onchange_product_id 方法。它将根据采购订单财务状况和产品默认税自动计算税收。

这可能对您有所帮助。