opencart shared order, one cart - multiple customers - opencart

I'm looking for a solution to share an order on opencart. Basically what I need is if I'm in an office and I add to cart a product, to have an url, which I share with my colleagues.
My colleagues will be able to add in the same cart the products they want, While on my screen i see what they added.
Once I see everybody added to the cart, I'll continue placing the order as 1 customer.
Is this possible? Is there any extension for this on opencart (2.3.x)
Thanks.

This looks like something you might want
https://www.opencart.com/index.php?route=marketplace/extension/info&extension_id=21677

Related

Add category while adding product in OpenCart2.x

I'm working on a webshop using OpenCart2.x. I would like to add category while I'm adding product and assign product to that category.
Just to clarify... Let's say I want to add "HTC One" to category "Android". I would like to go to Catalog > Product > Add Product, enter "HTC One" details and
if category "Android" dosen't exist OC should offer to create new category.
It is possible in wordpress/woocommerce so I hope it is possible in OC2.
Sorry if the question is not for this site.
Thank you!
No, this is unfortunately not possible in vanilla OpenCart. However, I did find somewhat of a trick to make this process a tad bit more convenient.
If you open your OpenCart admin panel in 2 different browser instances that use different sets of cookies (different browser or incognito/no cookie mode) you can make your categories in one instance and then the category auto complete list in your product creation page will instantly update. Not exactly the desired functionality but definitely better than having to switch back and forth.

How to add link to orders page with filter inside link?

I want to add direct link with filter_date_added=(DATE(NOW()) in Dashboard in Opencart's Administration to orders page.
I'm not a programmer and if somebody can help me with this I'll be very grateful.
If you a not a programmer may I suggest you searching the modules on OpenCart modules forum. Alternatively you can edit the order_sales.tpl in view/templates and simply add a column inside that and pull the variable from the PHP module.
The archiecture is found in
admin\controller\sale\order.php
admin\model\sale\order.php
admin\view\template\sale\order_list.tpl
admin\language\english\sale\order.php
http://www.opencart.com/index.php?route=extension/extension/info&extension_id=14230
There is a module out there that allow you to do this for country, viewing sales by country. Maybe you can download and play around with it and try to experiment. It will only help you to become a better programmer.

XCart unable to add items to cart

Hey guys I'm taking over another web developers installation of XCart and am unable to
add items to a cart, it seems like they disabled this functionality somehow, and am wondering
if there are thoughts on how this has been done. You can play with an actual item here
Item Test
To see what it actually does. It seems like the item completely skips the cart somehow, I'm
wondering if this is a product irregularity? All products were imported, none were created.
I fear I can't test that. You don't have any "add-to-cart" buttons enabled on that web-site pages.
If this is what you faced to - make sure
1) you have "add-to-cart" code in product.tpl template file
2) you have non-zero in-stock qty for products
3) at least one of payment methods enabled

Displaying options and add to cart on category page - opencart

I am using Opencart v1.5.1.3.1
I want to be able to create a template which certain categories use. Cat1 would use the normal category.tpl file where cat2 would use category-cart.tpl
The category-cart.tpl would have extra functionality of displaying price options and an add to cart button which would normally only work on the products.tpl page.
I know that in order to make this happen I have to modify the category.php controller for category.tpl file.
The question is what do I change in the category.php controller to make this happen?
Add product with options to cart from category page http://www.opencart.com/index.php?route=extension/extension/info&extension_id=8649
You will need to make more changes than can be listed here, so you will need to familiarize yourself with the opencart framework to do what you want. As a starter if you look at the bottom of the category controller you will see what template is loaded. Do a search for template. You could put a if statement here that loads templates based on the value of the selected category.
You will then need to add more code to the controller which loads variables for price options and add to cart.
http://opencart-help.com/modifications/39-add-product-options-to-category-listing-in-opencart.html
Check the above link and you will find out how to show the options
It should then look like this
http://i38.tinypic.com/j7b60k.jpg

Satchmo: list all active products

I'd like to list all active products (from all or a specific category) in a template. I've looked almost everywhere and I simply cannot find a way to do this.
I want to display them in the footer of the shop (10 products from 1 category). That means show them without selecting product category.
Is this even possible? Products are only listed in the category template...
I'm using Satchmo 0.9.2
EDIT: Somehow I've missed this:
http://www.satchmoproject.com/docs/dev/customization.html
So it's solved...
Thank you!
this is a more general answer since there isnt any answer yet, so dont beat me. You also have to know that I never used satchmo, I never had a look at it.
But despite this, if I had to deal with your situation, I would have a look at the source code.
You might find answers there to develop something custom for your situation. This can be a tricky task but at least its worth a try.
There have to be models which store the data for your product and categories. Have a look at them and the views that retrieve the products from the database to render them. Also a look into the database cant hurt (think of phpmyAdmin to have a nice webbased interface).
It can be helpful to fire up your ./manage.py shell, import your/satchmos product and category models and play around with them.
A possible solution then could be to write a custom context_processor which retrieves the needed products/categories and passes these products from a category to your footer on a more global basis. Have a look here https://docs.djangoproject.com/en/1.3/ref/templates/api/#writing-your-own-context-processors. Maybe a custom middleware could also be a possibility. https://docs.djangoproject.com/en/dev/topics/http/middleware/#writing-your-own-middleware
I hope this helps. At least worth a try :)