Page 1 of 1

Problem with adding more fields for product

Posted: 24 Jan 2018, 20:14
by cecosd
Laravel package, Laravel version 5.5, Aimeos version 2017.10, PHP 7.0

I have a problem of finding out how to add fields in products component.
For example I want to add input "test":

I adpted the manager for insert and update product with the new field, but there is an error saying that the bind for products doesn't correspond with the predefined.

What am i missing?
Thanks

Re: Problem with adding more fields for product

Posted: 24 Jan 2018, 22:09
by aimeos
cecosd wrote: I adpted the manager for insert and update product with the new field, but there is an error saying that the bind for products doesn't correspond with the predefined.
In that case, you forgot to overwrite the SQL statement in your own extension config to match your new parameter binding in saveItem()

Re: Problem with adding more fields for product

Posted: 29 Jan 2018, 19:10
by cecosd
aimeos wrote:
cecosd wrote: I adpted the manager for insert and update product with the new field, but there is an error saying that the bind for products doesn't correspond with the predefined.
In that case, you forgot to overwrite the SQL statement in your own extension config to match your new parameter binding in saveItem()
Thank you aimeos!
Starting to go deeper into DDD