You are viewing this forum as a guest. Login to an existing account, or create a new account, to reply to topics and to create new topics.
NOTE: This post was created on 2024-01-04 on the Kryptronic eCommerce Community facebook page, which has been replaced with this forum. All facebook support content was migrated into this forum in April 2024.
Evan:
How would I be able to have the vendor id along with our sku show up in the create purchase order screen? The vendor number shows up in emails to the vendor but I would also like to see it when creating purchase orders. Thank you 😊
Kryptronic:
That would require modding the include {private}/apps/ecom/ECOM/includes/purchordmancreate.php. Make a copy of that file and put it in {private}/custom/apps/ecom/ECOM/includes (you'll need to create that directory). Modify the file, and where you see:
$itemnum = $item['prodnum'];
Change to:
$itemnum = $item['vendoritemid'];
Evan:
Kryptronic, is it possible to have both numbers show?
Kryptronic:
Sure. If you're modifying code, you can do anything you want. Show both numbers.
Offline