Search found 108 matches

by mohal_04
11 Apr 2018, 08:01
Forum: Help
Topic: How to add additional fields to a customer
Replies: 66
Views: 33742

Re: How to add additional fields to a customer

Your new value isn't set in the item there: https://github.com/aimeos/ai-admin-jqadm/blob/2017.10/admin/jqadm/src/Admin/JQAdm/Product/Price/Standard.php#L357 Hi, One more thing... Is the official documentation applicable on latest Aimeos version? Because on the documentation page it says "2016...
by mohal_04
11 Apr 2018, 07:56
Forum: Help
Topic: How to add additional fields to a customer
Replies: 66
Views: 33742

Re: How to add additional fields to a customer

Your new value isn't set in the item there: https://github.com/aimeos/ai-admin-jqadm/blob/2017.10/admin/jqadm/src/Admin/JQAdm/Product/Price/Standard.php#L357 Hi, Thanks for your guidance! I thought all changes must be in my extension. Anyhow, I have moved to Aimeos 2018.04 and now I am facing a dif...
by mohal_04
10 Apr 2018, 09:14
Forum: Help
Topic: How to add additional fields to a customer
Replies: 66
Views: 33742

Re: How to add additional fields to a customer

If saving doensn't work, please check: - Is the new valule available in saveItem() of the manager - Is the new value set in fromArray() of the item - Is the new value available in fromArray() of the admin client - Is the new value passed correctly in the template Hi, - Is the new valule available i...
by mohal_04
09 Apr 2018, 12:43
Forum: Help
Topic: How to add additional fields to a customer
Replies: 66
Views: 33742

Re: How to add additional fields to a customer

Also looks OK. Now you have to debug the files mentioned, especially the Factory.php. Tried to reconfigure the price manager myself and it worked like expected. Laravel: 5.6 Aimeos: 2017.10 Hello, Thanks for being available and replying to my questions. The so far progress is this that value of new...
by mohal_04
09 Apr 2018, 09:56
Forum: Help
Topic: How to add additional fields to a customer
Replies: 66
Views: 33742

Re: How to add additional fields to a customer

Also looks OK. Now you have to debug the files mentioned, especially the Factory.php. Tried to reconfigure the price manager myself and it worked like expected. Hi, Thanks for the tips! Debugging inside Factory.php and PHPArray.php, I am able to see that my Manager is being loaded, which is a good ...
by mohal_04
09 Apr 2018, 08:05
Forum: Help
Topic: How to add additional fields to a customer
Replies: 66
Views: 33742

Re: How to add additional fields to a customer

Everything seems to be correct. You can add a debug output in the factory to see if the configuration is missing: https://github.com/aimeos/aimeos-core/blob/master/lib/mshoplib/src/MShop/Price/Manager/Factory.php#L70 You can also check what happens in the config class during lookup: https://github....
by mohal_04
09 Apr 2018, 07:26
Forum: Help
Topic: How to add additional fields to a customer
Replies: 66
Views: 33742

Re: How to add additional fields to a customer

Seems that you've used a 2018.x extension for your 2017.10 project. The configuration for 2018.x should be in ./config/ of your extension because this is configured in the "config" section of the manifest.php. In 2017.x extensions it's in ./lib/custom/config/ and if you place your config ...
by mohal_04
09 Apr 2018, 06:27
Forum: Help
Topic: How to add additional fields to a customer
Replies: 66
Views: 33742

Re: How to add additional fields to a customer

In this case, you should only have to add two new input fields to the template (regular and prototype block). There's one minor issue in the search SQL: In the GROUP BY you should also add the new field. Hi, I have added new field in GROUP BY but I think GROUP BY would not be affecting data save an...
by mohal_04
09 Apr 2018, 06:07
Forum: Help
Topic: How to add additional fields to a customer
Replies: 66
Views: 33742

Re: How to add additional fields to a customer

In this case, you should only have to add two new input fields to the template (regular and prototype block). There's one minor issue in the search SQL: In the GROUP BY you should also add the new field. If you are unsure if your manager is used, add a error_log( __METHOD__ ) to the code that is ex...
by mohal_04
06 Apr 2018, 11:06
Forum: Help
Topic: How to add additional fields to a customer
Replies: 66
Views: 33742

Re: How to add additional fields to a customer

You can find documentation about Vue.JS there: https://vuejs.org/ You don't need that much knowledge about Vue.JS. There are only three important things: 1.) Add the new key in your new template there: https://github.com/aimeos/ai-admin-jqadm/blob/master/admin/jqadm/templates/product/item-price-sta...