Search the Community
Showing results for tags 'manual order'.
-
I was using 1.6.0.9 until recently, when I updated to 1.6.0.11, and now to 1.6.0.12, but this did not fix my problem. Sometimes we do manual orders, and send the link to our customers for them to finish the payment. This is because the product in question has various configuration options, and sometimes we do it via telephone. The problem is that since this upgrade, we cannot see the text customization field, which is mandatory, so we cannot add the item to the cart, as it says that a mandatory field is not filled, but we cannot see it. Anybody knows how to fix this?
- 8 replies
-
- custom text
- add cart
-
(and 1 more)
Tagged with:
-
Having problems getting an additional field added to the database in BO manual order. I have added this code to /adminxxxxxxx/themes/default/template/controllers/orders/form.tpl <div class="form-group"> <label class="control-label col-lg-3" for="handbook_number">{l s='Handbook Number' d='Admin.Orderscustomers.Feature'}</label> <div class="col-lg-9"> <input class="form-control" type="text" name="handbook_number" id="handbook_number" /> </div> </div> And I have something similar working in order edit which works fine, but I can't get the database to update/add the handbook_number when entered in the manual order section of the back office. I suspect it is to do with the javascript contained within the form.tpl, but I am seriously struggling with this one. The handbook_number field is contained within the ps_order_detail table and, as I say it works fine in BO edit order. The PrestaShop version is 1.6.1.17. Any help please.
-
That's the weirdest hing I've seen. When I create a manual order in BO, 2-3 other orders with other products are created simultaneously. At the end, for ONE id_order, i have many customers linked and many products. I see that with a sql query like: SELECT ps_orders.id_order, ps_order_detail.product_id FROM `ps_orders` , `ps_order_detail` WHERE ps_orders.current_state=2 AND ps_orders.id_order=ps_order_detail.id_order What is even more weird, it's that I cannot find where are made these wrong assosiations. I mean, ps_orders and ps_order_detail look normal when seen separately. Recently, I installed a delete_order module, I enabled my shop to euro currency and ran cron jobs scanning ps_order for new orders. Could it be the prob? Has anybody heard of something like that before? I'm really lost.
-
Hello, Im having a small issue when I'm trying to add a manual order to a customer from the back end. When I press the button to place the order to the user I'm getting this error message Fatal error: Call to a member function getProducts() on a non-object in /public_html/classes/CartRule.php on line 634 I have 1.6.0.8 I found this link but i dont have the follow up module install How i can solve it? Thank you
- 5 replies
-
- getProducts()
- CartRule
-
(and 1 more)
Tagged with:
-
When I had version 1.4.X i had a module that allowed me to enter products in the back office. Now, Prestashop 1.5.X has the ability built in but there are some features missing. Specifically, I need to be able to manually enter a shipping fee to an order. My thinking was to create a carrier that only is triggered if the order is being entered by an admin that, instead of showing the value, shows a form field that the administrator fills out. In my mind, this could work either within the actual shipping module as described above, or it can actually be a separate field much like the "handling fee" field is in the back office order creation screen where you can simply add an arbitrary fee to any order you are entering. Any thoughts on this? Does something like this already exist?