Search found 3 matches
- 20 May 2024, 10:54
- Forum: Laravel package
- Topic: Custom order creation
- Replies: 4
- Views: 27135
Re: Custom order creation
$basketController = Frontend::create($context, 'basket');
$basketController->clear();
$basket = $basketController->addProduct($productItem, 1, [], []);
$addressManager = MShop::create($context, 'customer/address');
$addressItem = $addressManager->create();
$basket->addAddress('payment ...
$basketController->clear();
$basket = $basketController->addProduct($productItem, 1, [], []);
$addressManager = MShop::create($context, 'customer/address');
$addressItem = $addressManager->create();
$basket->addAddress('payment ...
- 20 May 2024, 05:17
- Forum: Laravel package
- Topic: Custom order creation
- Replies: 4
- Views: 27135
Re: Custom order creation
I'm using 2023 version
- 17 May 2024, 11:37
- Forum: Laravel package
- Topic: Custom order creation
- Replies: 4
- Views: 27135
Custom order creation
Good afternoon.
To begin with, I would like to thank you for your work.
I took Aimeos as the basis for my project. And I ran into a problem at one point. The fact is that I plan to sell not only physical but also digital goods. Their sale is carried out through a third-party service and does not ...
To begin with, I would like to thank you for your work.
I took Aimeos as the basis for my project. And I ran into a problem at one point. The fact is that I plan to sell not only physical but also digital goods. Their sale is carried out through a third-party service and does not ...