私の販売注文には、顧客請求書で参照する必要がある顧客参照番号があります。請求書は、ソース ドキュメントを使用して関連する販売注文を検索し、販売記録を検索します。私のRMLには次のものがあります。
[[o.getcustomerPO(origin) or 'No associated PO' ]]
そしてこれは私のパーサーで:
def getcustomerPO(self,so_num):
context = {}
saleorder = self.pool.get('sale.order')
sale_oID = saleorder.search(self.cr, self.uid,[('name','=','so_num')],context=context)
customerPO = saleorder.browse(self.cr, self.uid, sale_oID, context=context)
return customerPO
しかし、サイコロはありません。
進め方がわかりません。