跳至內容
選單
此問題已被標幟
5550 瀏覽次數

Odoo versin 11.0

Succeed to create sales order and its auto created purchase order in case of drop ship.

Now, i want to validate stock after confirm purchase order by script/code.

Or, how i can click on validate button of stock.picking module using code. 



Though, i know the method "button_validate" need to call but getting those error like,

  raise TypeError(\"cannot marshal %s objects\" % type(value))\nTypeError: cannot marshal <class 'odoo.tools.misc.frozendict'> 

Have an idea about this, any help would be appreciate..

頭像
捨棄

Would you please share your code?

作者

//Validate and auto Receive PO process

//recive product

loRpcRecord.calling_workflow_method2(lsOdooDBName, liUserid, lsOdooDBPassword, OdooHelper.Models.PurchaseOrder, "action_view_picking", new int[] { Convert.ToInt32(loPurchaseOrder.stERPId) });

//Validate Shipment

int liShipmentERPId = getShipmentID(liUserid, lsOdooDBName, lsOdooDBPassword, loPurchaseOrder.stPONumber);

loRpcRecord.calling_workflow_method2(lsOdooDBName, liUserid, lsOdooDBPassword, OdooHelper.Models.Shipment, "button_validate", new int[] { liShipmentERPId });

//after validated shipment move to on done state.

int liImmediateTransferERPId = getImmediateTransferID(liUserid, lsOdooDBName, lsOdooDBPassword, liShipmentERPId);

loRpcRecord.calling_workflow_method2(lsOdooDBName, liUserid, lsOdooDBPassword, "stock.immediate.transfer", "process", new int[] { liImmediateTransferERPId });

相關帖文 回覆 瀏覽次數 活動
6
12月 22
15364
4
3月 24
12250
0
2月 20
2899
2
1月 20
7396
2
12月 19
5598