Search found 108 matches

by mohal_04
06 Apr 2018, 09:13
Forum: Help
Topic: How to add additional fields to a customer
Replies: 66
Views: 33824

Re: How to add additional fields to a customer

The problem is most probably that the price panel is using Vue.JS to render the data and you have to extend the JS code too to get it working: https://github.com/aimeos/ai-admin-jqadm/blob/master/admin/jqadm/themes/admin-aux.js#L264 Hi, Thanks for the reply! Ooops... I have no experience of Vue.js....
by mohal_04
06 Apr 2018, 03:05
Forum: Help
Topic: How to add additional fields to a customer
Replies: 66
Views: 33824

Re: How to add additional fields to a customer

The __construct() method of your product item is wrong because it doesn't accept the list items, ref items and property items you pass in createItemBase() of your manager. These data also have to be passed to the parent constructor in your product item class (parent::__construct( $values, $listItem...
by mohal_04
05 Apr 2018, 06:26
Forum: Laravel package
Topic: Laravel Aimeos Extension Stopped Existing Functionality
Replies: 3
Views: 1948

Re: Laravel Aimeos Extension Stopped Existing Functionality

Thanks to great @aimeos support.

I have solved my issue with the help from @aimeos ...

post5955.html#p5955
by mohal_04
05 Apr 2018, 06:23
Forum: Help
Topic: How to add additional fields to a customer
Replies: 66
Views: 33824

Re: How to add additional fields to a customer

The __construct() method of your product item is wrong because it doesn't accept the list items, ref items and property items you pass in createItemBase() of your manager. These data also have to be passed to the parent constructor in your product item class (parent::__construct( $values, $listItem...
by mohal_04
04 Apr 2018, 08:01
Forum: Laravel package
Topic: Laravel Aimeos Extension Stopped Existing Functionality
Replies: 3
Views: 1948

Re: Laravel Aimeos Extension Stopped Existing Functionality

Hi, I have been trying to add a new field in Product form. For which I have been asking help on this post: https://aimeos.org/help/post5892.html#p5892 But the funny thing happened is that now existing fields are not saving data in sub-part. The field I added is "oldcode." I have added it ...
by mohal_04
04 Apr 2018, 06:53
Forum: Laravel package
Topic: Laravel Aimeos Extension Stopped Existing Functionality
Replies: 3
Views: 1948

Laravel Aimeos Extension Stopped Existing Functionality

Hi, I have been trying to add a new field in Product form. For which I have been asking help on this post: https://aimeos.org/help/post5892.html#p5892 But the funny thing happened is that now existing fields are not saving data in sub-part. The field I added is "oldcode." I have added it i...
by mohal_04
04 Apr 2018, 06:25
Forum: TYPO3 extension
Topic: Extend Stock (Solved)
Replies: 21
Views: 54202

Re: Extend Stock to Save a new Value

tenkraD wrote:Nice
Yes, it was nice for moments until I see that it has somehow stopped saving some other data for product. For example, it is not saving Product images. I wonder what is the connection? I guess I have to extend those classes also, which is too dumb.

Can you guide me with this?

Thanks!
by mohal_04
03 Apr 2018, 11:54
Forum: TYPO3 extension
Topic: Extend Stock (Solved)
Replies: 21
Views: 54202

Re: Extend Stock to Save a new Value

Thanks to Almighty Allah, I have solved my issue. Complete solution can be found on following link: post5939.html#p5939

Thanks!
by mohal_04
03 Apr 2018, 11:54
Forum: Laravel package
Topic: Aimeos Laravel Package - Add more fields in Product form
Replies: 12
Views: 7130

Re: Aimeos Laravel Package - Add more fields in Product form

Thanks to Almighty Allah, I have solved my issue. Complete solution can be found on following link: post5939.html#p5939

Thanks!
by mohal_04
03 Apr 2018, 11:49
Forum: Help
Topic: How to add additional fields to a customer
Replies: 66
Views: 33824

Re: How to add additional fields to a customer

Finally, I have done it! Thanks to Almighty Allah! Writing my full code here for others like me. ./ext/myextension/lib/custom/setup/default/schema/product.php return array( 'table' => array( 'mshop_product' => function ( \Doctrine\DBAL\Schema\Schema $schema ) { // $table = $schema->createTable( 'msh...