Questions tagged [orders]
Mark questions related to Magento orders
2,265 questions
0
votes
0
answers
63
views
Magento 2: After magento version uprgade Order Items not getting added to cart in Admin
I have upgraded my Magento website from version 2.3.6 to 2.4.7-p2.
After the upgrade, I am unable to place orders from the Admin panel. Specifically, Magento does not allow me to add products to the ...
0
votes
0
answers
62
views
Trying to split cart items Magento 2.4.7
I am having a module which gives the ability to cart with checkbox to select which items you want to proceed to checkout.
Although I have an issue with Observer event and always in order I get all ...
1
vote
0
answers
34
views
Restricted Products
How can I allow restricted items to flow from magento to our P21 database and let our database to the work? Magento fails the whole order not allowing any items to flow through
1
vote
2
answers
290
views
Magento 2 - how to create order programmatically with custom price AND tax amount for each line item (not percent)
I created a module that creates an order programmatically and I can also set the custom price. This is part of my code:
foreach($orderData['products'] as $product)
{
try
...
1
vote
1
answer
212
views
Issue Enabling Asynchronous Orders in Magento 2.4.7
I'm trying to enable asynchronous orders in Magento 2.4.7 Community Edition using the command mentioned in the documentation:
bin/magento setup:config:set --checkout-async 1
However, I get the ...
0
votes
1
answer
94
views
Magento REST API - Order Search with Date Filters Returns Signature Invalid
I'm trying to filter orders by date using the Magento REST API (/rest/V1/orders). I want to get orders from a given date range.
The API works perfectly fine with basic search criteria (without filters)...
0
votes
1
answer
85
views
How to Retrieve Sales Channel Details (Origin, Referrer, Landing Page) for Orders via Magento API?
I am importing orders from a client's Adobe Commerce (Magento) store using the API. I need to retrieve sales channel details for orders, specifically the following information:
The origin of the ...
1
vote
1
answer
111
views
How to Cancel Multiple Orders in Magento 2 Using a Single API Call
I'm looking for a way to cancel multiple orders at once via Magento 2 REST API. The standard approach I know is: POST /V1/orders/{order_id}/cancel
However, this endpoint processes orders one at a time,...
0
votes
1
answer
70
views
Adding Groped Products items to the cart using the Api
I am using this endpoint :
http://mage.local/rest/V1/carts/3747/items
and this is the body:
{
"cartItem": {
"sku": "8717752030514",
"qty": 1,
&...
0
votes
1
answer
100
views
How to get "Select All" orders ids in js while clicking on custom created mass action
I have created custom mass action, where I am trying to get all the orders ids which I have selected by using select all, but it gives only visible page ids. So I just wanted to get all selected ids.
0
votes
2
answers
151
views
How to create an order with Configurable Product with Multiple options(same parent with different option)
I'am trying to create an order with Rest API in magento2 , Here i have a configurable product with id 100 and have some child product with different attribute value, here is the payload what i have ...
0
votes
2
answers
264
views
Get customer address attribute value in order data using REST
I have a Adobe commerce cloud platform and created one customer address attribute from the admin that is default feature of the Commerce cloud.
Now it works fine. It works well on the customer account ...
0
votes
1
answer
78
views
multi shipping order place using rest api in magento 2.4
I would like to know which APIs we need to use and the parameters required to place multiple orders as a guest customer.
Thank you in advance for your assistance.
0
votes
1
answer
178
views
Magento2 | Change subject email of new order if condition is true
I created an observer that changes the email subject when I place a new order:
This is the ChangeOrderEmailSubject.php file:
<?php
namespace Sales\OrderCust\Observer;
use Magento\Framework\Event\...
0
votes
1
answer
65
views
Magento 2 : Change 'Shipping & Handling' label while print the order
I want to change the Label from 'Shipping & Handling' to 'Shipping Charges' while printing the pdf after order success.
Can anyone help
Thanks