Search found 108 matches

by mohal_04
03 Apr 2018, 09:36
Forum: Help
Topic: How to add additional fields to a customer
Replies: 66
Views: 34208

Re: How to add additional fields to a customer

You have to implement the saveItem() and createItemBase() methods by copying them from the Standard class and modify them accordingly for your new value. Also adapt the SQL statements for fetch and store the new value. Hi, I have rewritten my code 3 times and now the situation is this... I am able ...
by mohal_04
03 Apr 2018, 09:31
Forum: TYPO3 extension
Topic: Extend Stock (Solved)
Replies: 21
Views: 55287

Re: Extend Stock to Save a new Value

was in hollidays and not here sorry. ya, its working now. where do u have problems I have rewritten my code 3 times and now the situation is this... I am able to display value in my extra field but it is not saving in the DB and there are no errors :(. Please, look at my code and guide me! ./ext/my...
by mohal_04
02 Apr 2018, 10:50
Forum: Laravel package
Topic: Aimeos - Unit Test - BUILD FAILED Task exited with code 255
Replies: 0
Views: 9787

Aimeos - Unit Test - BUILD FAILED Task exited with code 255

Laravel: 5.6 Aimeos: 2017.x PHP: 7.x Environment: Linux Hello, I have created an extension. This extension gives an extra field on Product form. I have spent 2 days to figure out the customization that are required to save this extra field in DB. So, after writing all code I am still unable to save ...
by mohal_04
02 Apr 2018, 06:01
Forum: Help
Topic: How to add additional fields to a customer
Replies: 66
Views: 34208

Re: How to add additional fields to a customer

Hi, Is it possible and if so how do I add a new property to a customer? Thanks Hi, Were you able to extend customer class? I am stuck at extending product class but having difficulties. Can you look at my code and help me? Item/Myproject.php: namespace Aimeos\MAdmin\Product\Item; class Myproject ex...
by mohal_04
02 Apr 2018, 05:38
Forum: Laravel package
Topic: Aimeos Laravel Package - Add more fields in Product form
Replies: 12
Views: 7162

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

What if I only want to add a new field in Product form in Admin Panel? I have followed all steps mentioned in following link: https://aimeos.org/docs/Developers/Library/Extend_managers_items Yes, you have to follows the steps in that article and create an extended item and manager. But new field va...
by mohal_04
30 Mar 2018, 12:51
Forum: TYPO3 extension
Topic: Extend Stock (Solved)
Replies: 21
Views: 55287

Re: Extend Stock to Save a new Value

Hello Guys, i would like to extend the stock of products with a optional field order time. the order time is a string, and describes how long it takes for us to reorder if the product is selled out - 1 weeks/ 1 month / a few days... ------------------------------------------------------------------...
by mohal_04
30 Mar 2018, 11:56
Forum: Laravel package
Topic: Aimeos Laravel Package - Add more fields in Product form
Replies: 12
Views: 7162

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

If you create a new subpanel for the admin interface, it has to be in the same directory structure as in the ./ext/ai-admin-jqadm/admin/jqadm/src/ folder of your own Aimeos extension. Manufacturers (called suppliers in Aimeos) have their own panel in the admin interface. There you can also associat...
by mohal_04
30 Mar 2018, 06:59
Forum: Laravel package
Topic: Aimeos Laravel Package - How to execute Setup tasks
Replies: 2
Views: 1322

Re: Aimeos Laravel Package - How to execute Setup tasks

No, you don't need the "PriceAddProductionCost.php" file because it's only necessary if you need data migration. Schema changes are made depending on your price.php schema file by the TablesCreateMShop setup task. You have to run "php artisan aimeos:setup" to update your databas...
by mohal_04
29 Mar 2018, 10:43
Forum: Laravel package
Topic: Aimeos Laravel Package - How to execute Setup tasks
Replies: 2
Views: 1322

Aimeos Laravel Package - How to execute Setup tasks

Laravel: 5.6 Aimeos: 2017.x PHP: 7.x Environment: Linux Hi, I need to add additional field in "mshop_price" table. The field name is "productioncost." So, I studied following link: https://aimeos.org/docs/Developers/Library/Setup_tasks and did what is asked. I created "price...
by mohal_04
29 Mar 2018, 05:40
Forum: Laravel package
Topic: How to change Homepage URL?
Replies: 5
Views: 4958

Re: How to change Homepage URL?

Check out Laracasts.com and look at how routing works. Here is the Aimeos routes documentation: https://aimeos.org/docs/Laravel/Custom_routes Add your routes to your routes/web . Also take a look at Laravel documentation for which routing methods to use. view() and redirect() are good options. Than...