Hello community!
I am building a new store using the same product codes we use in our current store and in Quickbooks..
We use Synchro to pull down orders from Miva into Quickbooks.
In the old store we use form data passed to merchant like this:
So when the order is placed, it is placed for the product code of the actual product that was sold.
So if we sell a black hammock, the code for the black hammock (DH091) gets passed to Quickbooks.
They are all the same type of hammock, but all colors have unique product codes..
In the new store, we are using inventory variants and image machine..
So all of the product codes you see above are already in the store (DH091, DH092, ect..)
I created a master product with a product code of "DOUBLENEST" and added all of my color attributes, then associated the colors with the correct product code for the correct color.. (black color is actually the black hammock DH091)
Now, when I place an order in the store, the code that Miva shows is of the master product, it never mentions the product code of the item that was actually sold.
So if I sell a black hammock (DH091), Miva tells me I sold a "DOUBLENEST".
The problem is that we use Synchro and when we pull down the orders, it will input orders for "DOUBLENEST", not "DH091".
This will not work because it will not alter the inventory of "DH091" in Quickbooks..
It will simply tell me that I sold another "DOUBLENEST" with a color attribute of black.
I need the DH091 product code to be passed to Quickbooks so it will alter inventory and register a sale for the correct item.
Any info anyone has on this will be greatly helpful, if I cant get it to work the way I need to, I cant put up the site..
Thank you in advance..
Aaron
I am building a new store using the same product codes we use in our current store and in Quickbooks..
We use Synchro to pull down orders from Miva into Quickbooks.
In the old store we use form data passed to merchant like this:
Code:
<select name="Code[1]" class="prod-forms" id="Product_Code"> <option value="DH002" selected>Navy and Royal</option> <option value="DH009">Khaki and Olive</option> <option value="DH001">Navy and Olive</option> <option value="DH010">Khaki and Black</option> <option value="DH006">Orange and Grey</option> <option value="DH004">Red and Charcoal</option> <option value="DH007">Purple and Forest Green</option> <option value="DH003">Navy and Yellow</option> <option value="DH021">Khaki and Rose</option> <option value="DH030">Forest and Grey</option> <option value="DH025">Tomato and Khaki</option> <option value="DH029">Teal and Khaki</option> <option value="DH008">Purple and Teal</option> <option value="DH090">Khaki</option> <option value="DH091">Black</option> <option value="DH092">Olive</option> </select>
So if we sell a black hammock, the code for the black hammock (DH091) gets passed to Quickbooks.
They are all the same type of hammock, but all colors have unique product codes..
In the new store, we are using inventory variants and image machine..
So all of the product codes you see above are already in the store (DH091, DH092, ect..)
I created a master product with a product code of "DOUBLENEST" and added all of my color attributes, then associated the colors with the correct product code for the correct color.. (black color is actually the black hammock DH091)
Now, when I place an order in the store, the code that Miva shows is of the master product, it never mentions the product code of the item that was actually sold.
So if I sell a black hammock (DH091), Miva tells me I sold a "DOUBLENEST".
The problem is that we use Synchro and when we pull down the orders, it will input orders for "DOUBLENEST", not "DH091".
This will not work because it will not alter the inventory of "DH091" in Quickbooks..
It will simply tell me that I sold another "DOUBLENEST" with a color attribute of black.
I need the DH091 product code to be passed to Quickbooks so it will alter inventory and register a sale for the correct item.
Any info anyone has on this will be greatly helpful, if I cant get it to work the way I need to, I cant put up the site..
Thank you in advance..
Aaron
Comment