cs-cart Development

HI there Cs-cart Development is busy for next 4-6 weeks… is there any 3rd party coder out there who would like to take our project please advice thank you

It maybe you said something about what you were looking for, someone might be able to help you out.

[quote name=‘tbirnseth’]It maybe you said something about what you were looking for, someone might be able to help you out.[/QUOTE]



I need little modification on few thing


  1. some of my product missing mfg name so I need the list which one is missing so i can fix it
  2. I need option on export remove the condition change and put option to export product by date of creating

You can ask www.cscartrocks.com too, but i have no expierences with them. I have read only here in the forum about this company.

[quote name=‘Triplex’]You can ask www.cscartrocks.com too, but i have no expierences with them. I have read only here in the forum about this company.[/QUOTE]



They’re good! See [url]http://forum.cs-cart.com/showthread.php?t=23418[/url]

[quote name=‘rahail’]I need little modification on few thing


  1. some of my product missing mfg name so I need the list which one is missing so i can fix it
  2. I need option on export remove the condition change and put option to export product by date of creating[/quote]



    First off, what version of cs-cart are you running?



    Secondly, on #1, if you are referring to “Suppliers” or “Companies” (latest versions of CS-Cart), this would be pretty easy to get a list from your database of products with no company/supplier set for them, such as:



SELECT product_code FROM cscart_products WHERE company_id=0




This would effectively print out a list of all product code’s that have no supplier (company) assigned to them.



Hope this helps. You may contact me for your other needs (#1). I do a ton of custom cs-cart programming and development!

[quote name=‘owenad’]First off, what version of cs-cart are you running?



Secondly, on #1, if you are referring to “Suppliers” or “Companies” (latest versions of CS-Cart), this would be pretty easy to get a list from your database of products with no company/supplier set for them, such as:



SELECT product_code FROM cscart_products WHERE company_id=0




This would effectively print out a list of all product code’s that have no supplier (company) assigned to them.



Hope this helps. You may contact me for your other needs (#1). I do a ton of custom cs-cart programming and development![/QUOTE]



Thank you every one for your suggestion… let me try and I will update you all soon

[quote]

condition change

[/quote]

What do you mean by that?



Regarding Manufacturers, the provided solution has nothing to do with the Product Feature - Manufacturers. You can still do it with a sql statement, it’s just a bit more complex. A simple PHP script can do it easier and give you either the product_id or product_code for those products that do not have a Manufacturer Feature assigned.

[quote name=‘tbirnseth’]What do you mean by that?



Regarding Manufacturers, the provided solution has nothing to do with the Product Feature - Manufacturers. You can still do it with a sql statement, it’s just a bit more complex. A simple PHP script can do it easier and give you either the product_id or product_code for those products that do not have a Manufacturer Feature assigned.[/quote]



Yeah, I think I misread/misunderstood, that he had used manufacturer as a feature, versus the suppliers system, whoops! but yes, still an SQL query.