Search found 108 matches

by mohal_04
09 Oct 2018, 17:43
Forum: Laravel package
Topic: Item Save Error (Product, Service, Attribute, etc)
Replies: 4
Views: 2649

Item Save Error (Product, Service, Attribute, etc)

Laravel: 5.6 Aimeos: 2018.07 PHP: 7.1.18 Hi again, So, we are facing a weird error when we try to save any item, e.g. Product, Service, or Attribute. Error: No value for key "item" found, E:\xampp_php7_1_18\htdocs\interloper-laravel\vendor\aimeos\aimeos-core\lib\mwlib\src\MW\View\Standard....
by mohal_04
09 Oct 2018, 17:27
Forum: Laravel package
Topic: User Address - Checkout Process
Replies: 3
Views: 1807

Re: User Address - Checkout Process

Hi there; I'm working in a some feature in the checkout process I saw this code in the address-delivery-body-standard.php <?php foreach ($this->get('addressDeliveryItems', []) as $id => $addr) : ?> ..... <?php endoreach; ?> I supposed that that block code load the addresses stored in the users_addr...
by mohal_04
09 Oct 2018, 17:19
Forum: Laravel package
Topic: Aimeos Orders - Manual Order Entry
Replies: 8
Views: 3912

Re: Aimeos Orders - Manual Order Entry

Creating new orders in the Aimeos backend is currently not implemented and you should use the frontend instead. OK! So, I was searching Packagist for any Aimeos extension related to Manual Order Entry. And I found 3-4 extensions... you can check them at the following link: https://packagist.org/pac...
by mohal_04
08 Oct 2018, 13:47
Forum: Laravel package
Topic: Aimeos Orders - Manual Order Entry
Replies: 8
Views: 3912

Re: Aimeos Orders - Manual Order Entry

Creating new orders in the Aimeos backend is currently not implemented and you should use the frontend instead. OK! So, I was searching Packagist for any Aimeos extension related to Manual Order Entry. And I found 3-4 extensions... you can check them at the following link: https://packagist.org/pac...
by mohal_04
05 Oct 2018, 12:40
Forum: Laravel package
Topic: Aimeos Orders - Manual Order Entry
Replies: 8
Views: 3912

Aimeos Orders - Manual Order Entry

Laravel: 5.6 Aimeos: 2018.07 PHP: 7.1.18 Hi, So, I have been trying to figure out how I can enter an order manually? I can see a complete list of orders in the administration panel but I don't see any button there to add an order manually. So, does Aimeos facilitates this kind of functionality? Plea...
by mohal_04
01 Oct 2018, 14:01
Forum: Laravel package
Topic: Aimeos - Reports Section
Replies: 3
Views: 1708

Re: Aimeos - Reports Section

aimeos wrote:What kind of reports do you mean?
Hi,

Similar kind of reports and graphs that I see on dashboard. For example, last 30 days payments, total orders from the beginning, total deductions, etc.

Thanks!
by mohal_04
28 Sep 2018, 12:36
Forum: Laravel package
Topic: Aimeos - Reports Section
Replies: 3
Views: 1708

Aimeos - Reports Section

Laravel: 5.6
Aimeos: 2018.04
PHP: 7.1.18

Hi,

I don't see a Reports section in Aimeos. I can see different kind of graphs on Dashboard but I don't see a separate Reports Section in Administration panel.

Where I can see all reports?

Thanks!
by mohal_04
26 Sep 2018, 09:29
Forum: Laravel package
Topic: Aimeos Database - "mshop_order_base_product_attr" Table
Replies: 4
Views: 1934

Re: Aimeos Database - "mshop_order_base_product_attr" Table

aimeos wrote:You should then use the mshop_order_base_product_attr table where you can store arbitrary information for each product
OK thanks! :)
by mohal_04
25 Sep 2018, 12:11
Forum: Laravel package
Topic: Aimeos Database - "mshop_order_base_product_attr" Table
Replies: 4
Views: 1934

Re: Aimeos Database - "mshop_order_base_product_attr" Table

What kind of notes do you want to add? There's a comment field in the mshop_order_base table but that's usually for customer comments. In the mshop_order_base_product_attr and mshop_order_base_service_attr tables you can store arbitrary information (code, type, value) and for products it's used to ...
by mohal_04
23 Sep 2018, 18:57
Forum: Laravel package
Topic: Aimeos Database - "mshop_order_base_product_attr" Table
Replies: 4
Views: 1934

Aimeos Database - "mshop_order_base_product_attr" Table

Laravel: 5.6 Aimeos: 2018.04 PHP: 7.1.18 Hi, So, I need to modify each order in administration panel. I want to give administrator the flexibility to add additional notes with each order and I was going through Aimeos database to understand, which table would be best for this type of thing and I cam...