Re: About automatic purchase order ship and receive

2009-03-05 Thread BJ Freeman
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Dropshipper items must be in the Dropshipper Category. https://demo.hotwaxmedia.com/catalog/control/EditCategory?productCategoryId=dropShip you can find info in applications\product\data\ProductTypeData.xml PRODRQM_DS PRODRQM_DSQOH also DROP_SHIPMENT a

Re: About automatic purchase order ship and receive

2009-03-05 Thread Larry.Liu
Hi Freeman, As you adviced, it's better to do this in SCA rather than ECA and give an example of dropshipper, but we have search throught the latest trunk of Ofbiz, but didn't find any code related to dropshipper, can you please give any advice on where do these code located? BTW: by SCA, do you

Re: About automatic purchase order ship and receive

2009-03-03 Thread BJ Freeman
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 ECA is to modify or update an Entity, like re-calc the grand total of an order in the orderheader. SCA is when you want to perform operations based on some other event like a service update. So yours should be an SCA Should review how a SCA works. Look

Re: About automatic purchase order ship and receive

2009-03-02 Thread Divesh Dutta
Hello Liu, Now in OFBiz , When Purchase Order is placed, Order is in ORDER_CREATED status and item in order is in ITEM_CREATED status. So when user clicks on link of "Approve Order" then, Order is in ORDER_APPROVED status and item in Order is in ITEM_APPROVED status. So according to y

About automatic purchase order ship and receive

2009-03-02 Thread Larry.Liu
Hi all, We have implement automatically purchase order ship and receive by the follow step, 1. Create a customize service and invoke service quickShipPurchaseOrder and receiveInventoryProduct 2. Add a customize eca service as below to invoke this new defined service. So does anybody a