MB
Asked
Hello,
I m trying to import a list of products exported by my sma system .these products are service type without quantities. Then I can't use POS screen to sell it.
How can I import service products correctly?
regards
I m trying to import a list of products exported by my sma system .these products are service type without quantities. Then I can't use POS screen to sell it.
How can I import service products correctly?
regards
- MSAnsweredHello,
SMA can only import standard type products. There is no option to import service type products.
If all the products are service type, you can update the type directly in database after import.
Thank you - MBAnswered"you can update the type directly in database after import."
How? - MSAnsweredThe query below will change all the products to service.
```
UPDATE `sma_products` SET `type` = 'service';
``` - MBAnsweredthank you ,
I did but I got an issue when I used scan products in Pos screen.I have to set unit also.it should be changed from 1 to null - MSAnsweredYou can update the any column as you need. Thank you
- Login to Reply