Search the Community
Showing results for tags 'movement'.
-
I need to (automatically) create some sort of a transfer slip (just like a delivery slip) that has a transfer number (eg. Transfer #TR000008) upon the transfer of stock from one warehouse to another (Stock > Stock Management --> Actions > Transfer Stock). And I would like to show the transfer number (eg. #TR000008) in the Stock Movement column. And, if possible, I would like to change the LABEL from "Transfer to another warehouse" to "Transfer to [NAME OF WAREHOUSE HERE]". Any way I could hack PrestaShop to do the above? Help is really appreciated. NOTE: I'm using Prestashop 1.5.2.0 PS: I initially posted this topic in StackExchange for those interested... http://stackoverflow.com/q/20664755/851045
- 1 reply
-
- management
- movement
- (and 5 more)
-
Hi, i need help for adding product "reference" field into "Stock Movement" (PS v1.4.4.1) Like this: ID | Reference | Name | Quantity | Reason | Employee this is original code: $this->_select = 'CONCAT(pl.name, \' \', GROUP_CONCAT(IFNULL(al.name, \'\'), \'\')) product_name, CONCAT(e.lastname, \' \', e.firstname) employee, mrl.name reason'; $this->_join = 'LEFT JOIN `'._DB_PREFIX_.'product_lang` pl ON (a.id_product = pl.id_product AND pl.id_lang = '.(int)$cookie->id_lang.') LEFT JOIN `'._DB_PREFIX_.'stock_mvt_reason_lang` mrl ON (a.id_stock_mvt_reason = mrl.id_stock_mvt_reason AND mrl.id_lang = '.(int)$cookie->id_lang.') LEFT JOIN `'._DB_PREFIX_.'employee` e ON (e.id_employee = a.id_employee) LEFT JOIN `'._DB_PREFIX_.'product_attribute_combination` pac ON (pac.id_product_attribute = a.id_product_attribute) LEFT JOIN `'._DB_PREFIX_.'attribute_lang` al ON (al.id_attribute = pac.id_attribute AND al.id_lang = '.(int)$cookie->id_lang.')'; $this->_group = 'GROUP BY a.id_stock_mvt'; parent::__construct(); Also good feature would be to export this data to CSV Thnx for any response or help. Bestregards Gasper
-
I would like to keep track of all my products quantities and combinations but when I go into any of the "Stock" tabs other than "Stock Management" I get a message saying "No Items Found." I have enables stock management as well as advanced stock management in the products section of preferences. I also have checked off advanced stock management in each products but still no data. I have even set up a warehouse and placed the products in there even though I don't have a warehouse and still no luck. Can someone please suggest a way to fix this, I really need these reports in order to keep track of my products and know when to reorder them. Thank you
-
Hi, I just met a small bug with mail alerts module. So here's the steps I took : 1. have a product X with qty 1 2. buy product X and confirm order / finish checkout 3. check stock movement : "product X , -1 , Order" 4. product X's qty is 0 and sold out in front end 5. click notify me when available on product detail (as customer) 6. go to order details in BO, and tick the checkbox to cancel products, and press "cancel products" 7. product X's qty is now 1 8. NO EMAIL NOTIFICATION (as a customer) 9. in my accounts > my alerts > there's still product X on that myalerts.php page … So I think, I've just found about the problem caused this : 10. check stock movement : "product X , 1 , ---ORDER---" (I think "Order" is for decreasing value because it's set to -1 in database, and after that, I tried once again step 1 to 5, and change the next steps : 1 - 5. (like above) 6. set order to canceled (without check box and press cancel products) 7. set product X's stock movement to "Increase , 1" 8. GET EMAIL NOTIFICATION (as a customer) 9. in my accounts > my alerts > no more products to be notified. My conclusion is, maybe it's because when canceling products on order detail page, the status should be changed to "Increase" not "Order".. I've tried to look inside classes/AdminOrders.php but didn't get any clue to change the stock movement reason after canceling products. [ JUST TRIED ] to change config/defines.inc.php > define('_STOCK_MOVEMENT_ORDER_REASON_', 1); > I set the reason to 1 (Increase), and tried again like step 1-9 in the first try above, then stock movement changed to "Increase" not "Order" anymore, but the email notification was still not sent and there's still product X on my account > my alerts page. Any help and fast reply would be much appreciated. Thank you.
- 2 replies
-
- mailalerts
- orders
-
(and 5 more)
Tagged with: