File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
app/code/Magento/Sales/Api/Data Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change 9
9
* Shipment interface.
10
10
*
11
11
* A shipment is a delivery package that contains products. A shipment document accompanies the shipment. This
12
- * document lists the products and their quantities in the delivery package.
12
+ * document lists the products and their quantities in the delivery package. This interface creates shipment
13
+ * record without items quantity (total_qty) validation. To validate total shipped quantity for each item
14
+ * in the order you must use newer `POST /V1/order/:orderId/ship` endpoint.
13
15
* @api
14
16
* @since 100.0.2
15
17
*/
@@ -31,7 +33,7 @@ interface ShipmentInterface extends \Magento\Framework\Api\ExtensibleDataInterfa
31
33
*/
32
34
const TOTAL_WEIGHT = 'total_weight ' ;
33
35
/*
34
- * Total quantity.
36
+ * Total quantity. Can be greater than ordered (not validated).
35
37
*/
36
38
const TOTAL_QTY = 'total_qty ' ;
37
39
/*
You can’t perform that action at this time.
0 commit comments