Search found 58 matches

by IvanIgniter
11 Jul 2022, 10:43
Forum: Laravel package
Topic: Using ext unit test
Replies: 11
Views: 1922

Re: Using ext unit test

I have clone the aimeos core in a separate project for testing and I have successfully executed vendor/bin/phing setup from the instruction in the documentation but I am having trouble to test the ext folder unit test files. I can even test the buit-in unit test of the core with this command. vendor...
by IvanIgniter
07 Jul 2022, 10:46
Forum: Laravel package
Topic: Using ext unit test
Replies: 11
Views: 1922

Using ext unit test

I am using laravel 6.x, PHP 7.4, Docker desktop/Ubuntu and the Aimeos 2021 (aimeos-laravel: 2021.10.4 / aimeos-core: 2021.10.13) I would like to ask how to use the unit test in the ext. We have successfully used the ext modified code and now with our modifications we would like to use the unit test ...
by IvanIgniter
28 Jun 2022, 05:34
Forum: Laravel package
Topic: How to extend a mshop_order_base table
Replies: 14
Views: 2450

Re: How to extend a mshop_order_base table

Your welcome..

I switch now from aimeos/aimeos-core from 2021.10.19 to 2021.10.x-dev and it work. My added new fields are successfully saved to order_base table. Thank you so much.
by IvanIgniter
27 Jun 2022, 12:18
Forum: Laravel package
Topic: How to extend a mshop_order_base table
Replies: 14
Views: 2450

Re: How to extend a mshop_order_base table

Thank you for that information.. I was able to trace the flow or data up to the last part in the core. I noticed that my added array has no chance to be stored and part of the added fields to be inserted just as what happen in order saving process. I traced in this part fromArray() of order base par...
by IvanIgniter
27 Jun 2022, 05:02
Forum: Laravel package
Topic: How to extend a mshop_order_base table
Replies: 14
Views: 2450

Re: How to extend a mshop_order_base table

Yes.. I have done it many times just the exact new field name as what I did in orders table decorator with no problem inserting new added field. But only in order_base table, any added extra fields in my decorator are the only fields that are not stored after saving?
by IvanIgniter
24 Jun 2022, 05:51
Forum: Laravel package
Topic: How to extend a mshop_order_base table
Replies: 14
Views: 2450

Re: How to extend a mshop_order_base table

Can I have a last one more question using a decorator. I was able to display now what records are stored in the db but storing into that extra fields along with existing fields is not working. Why is the comment field was the only one stored in the db and the new field last_name did not? I was traci...
by IvanIgniter
21 Jun 2022, 11:16
Forum: Laravel package
Topic: How to extend a mshop_order_base table
Replies: 14
Views: 2450

Re: How to extend a mshop_order_base table

Thank you.. 'order' => [ 'manager' => [ 'base' => [ 'decorators' => [ 'local' => [ 'Myproject' ] ] ], 'decorators' => [ 'local' => ['Myproject'] ] ] ] Works for me. The second mistake was the Decorator/Myproject should be mordba.fieldname not mordbase.fieldname
by IvanIgniter
21 Jun 2022, 04:06
Forum: Laravel package
Topic: How to extend a mshop_order_base table
Replies: 14
Views: 2450

Re: How to extend a mshop_order_base table

I have figured it out how to add the new columns to mshop_order_base but I couldn't display those added new fields.
Please advise what is the correct configuration to show it in aimeos admin order list page.
3a.jpg
3a.jpg (115.3 KiB) Viewed 1564 times
by IvanIgniter
21 Jun 2022, 03:02
Forum: Laravel package
Topic: How to extend a mshop_order_base table
Replies: 14
Views: 2450

Re: How to extend a mshop_order_base table

Could anybody help or suggest what to do if they encounter the same issue?
by IvanIgniter
17 Jun 2022, 05:21
Forum: Laravel package
Topic: How to extend a mshop_order_base table
Replies: 14
Views: 2450

Re: How to extend a mshop_order_base table

Waiting for a respond.. Please help what is the solution?