How to do Back order in drupal commerce - drupal-7

I am going to develop commerce drupal site.so i am also going to maintain stock.I have got commerce stock module for Stock management.But I do not know how to update quantity(Back Order) .Is there any module?Please help me

After installing the Commerce Stock module you need to do following to setup the initial stock for each products:
Visit admin/commerce/config/stock to enable stock tracking on your product type(s).
Set the starting value of stock on each product.
After setting the initial stock module will automatically do the following
Maintain stock levels
Implement validation of stock to prevent users from ordering out of stock items
For enhancing the module functionality you can create you custom rules using the Drupal Rules module.

Related

Additional fields in Drupal Commerce Kickstart2

I Would like to have a register form like that one
http://www.blackfire.eu/account.php?act=register
so I thought I go with this tutorial
https://www.youtube.com/watch?v=XSJYDjhkZJ0
but he doesn't show how to add fields or how to change some. So is some able to help me?
You can add customer specific fields by adding fields to the Billing or Shipping Customer profiles.
Via the Admin menu:
Store -> Customer profiles -> Profile Types -> Billing/Shipping Information -> Manage Fields.
URL: yoursite.com/admin/commerce/customer-profiles/types/billing/fields
If you need to customise the checkout form further, there are a number of ways, including the following:
1) Use an existing Commerce module that provides extra fields or checkout "panes".
Commerce Agree Terms - Adds a Terms and Conditions checkbox
Commerce Extra Panes - Lets you load nodes within the checkout form
2) Create a custom module and add your own checkout pane. In this pane you can add any required fields. This tutorial provides further details on how this is implemented. http://atendesigngroup.com/blog/custom-commerce-checkout-panes
3) Use the standard Drupal hook_form_alter() to modify the existing checkout form. There is an example here https://drupal.stackexchange.com/questions/107310/how-to-alter-commerce-checkout-form-in-a-custom-module

Drupal Commerce Kickstart - allow anonymous users to see disabled products

I have a very simple implementation of Drupal Commerce Kickstart on http://casacinepoa.com.br/loja. I do not use the stock modules and I am not planning in use those, as the stock is handled by the customer's ERP (they also sell their products in their real store, using the existing stock management).
What I want to do, however, is to change the "add to cart" button to "product not available" when the product is disabled and still show the product on display and searches, so people will know they exist. I noticed this works the way as expected if I access the product page directly: http://www.casacinepoa.com.br/loja/pt-br/productdisplay/decamer%C3%A3o-com%C3%A9dia-do-sexo - there you will see the Product not Available. However, the product will not show under its category (http://www.casacinepoa.com.br/loja/pt-br/product_category/5) or in the search results if I search for its name.
Anonymous users already have the permission to see all products.
I have been searching all over and I could not find a way to do this.
All help is welcome.
You will have to create a new view that has disable and enabled products in its filters with products as its relationship.

Drupal commerce how to create product bundle

I am working on commerce site in drupal7, I have installed Drupal commerce module and required module.
I have created two product type e.g. Product A and Product B.
Created two product under both type e.g.
P1, Price 5$
P2, Price 10$
Now I need to create a bundle product
For product P2 :
If user purchase both product so bundle price will be 11$
I have installed commerce product bundle module but I am not able to create bundle of the product. Please help me out.
https://www.drupal.org/project/commerce_product_bundle - says
Install the module as usual.
Setup some normal products.
Setup a product type with at least two product reference fields. Each reference represents a product in the bundle. Read more about product types, products and product displays at the drupal commerce userguide.
Go to the administer display tab, on the product type configuration screen and set the display formatter of all the product references you want to have in a bundle to the 'product bundle: add to cart form'.
Create a product from the newly created product type and reference the normal products as usual.
Link the newly created product to a product display.
I am trying to customize and unable to do the way I wanted...

Is it possible to use Drupal Commerce along with Ubercart in the same project?

I am developing an e-commerce site for a Travel agency. There are 4-5 features like hotel,tour etc. I have already finished my development for its tour section. The tour pricing is developed using Ubercart module. But due to some restricted features of Ubercart, i want to use Drupal commerce for hotel pricing. Now I want to know if it is possible to use Ubercart for Tour Section and Drupal commerce for Hotel Section in this project?
Not a good idea to use Drupal commerce and Ubercart together. Finalize one and extend it as per requirement.
Also check this out : https://drupalcommerce.org/
Cheers!!!

How to import commerce products along with inline entities by using drupal commerce feeds?

I need to import set of drupal commerce products with CSV file and this particular product type contain inline entity form. So I need to upload and create list of products along with their corresponding nodes (inline entity reference). Please help me to do this.
Thanks in advance
See the "Documentation" section at the bottom of Commerce feeds module page.
Please watch this amazing screencast and step by step by rfay about
how to set up and use commerce feeds:
Importing Products using Feeds

Resources