I want to add a custom field in sale order line and want to show its value in purchase order line. It cannot get value from sale order line because when I apply debugger on
def _prepare_procurement_values(self, group_id=False):
res = super()._prepare_procurement_values(group_id)
it will go only there then break but not execute
def _prepare_purchase_order_line(self, product_id, product_qty, product_uom, company_id, values, po):
res = super()._prepare_purchase_order_line(product_id, product_qty, product_uom, company_id, values, po)
that function.
What's the solution anyone suggest me?
Next time please use punctuation in your sentences and format your code so your question is actually readable.