order create

This commit is contained in:
Samandar Turgunboyev
2026-01-23 19:42:12 +05:00
parent 27388e5132
commit b60336f90d

View File

@@ -259,13 +259,21 @@ const OrderPage = () => {
return; return;
} }
const order_products = cartItems.map((item) => ({ const order_products = cartItems
.filter(
(item) =>
item.product.prices &&
item.product.prices.length > 0 &&
item.product.prices[0].price_type?.code &&
item.product.prices[0].price,
)
.map((item) => ({
inventory_kind: 'G', inventory_kind: 'G',
product_code: item.product.code, product_code: item.product.code,
on_balance: 'Y', on_balance: 'Y',
order_quant: item.quantity, order_quant: item.quantity,
price_type_code: item.product.prices?.[0]?.price_type?.code, price_type_code: item.product.prices![0].price_type.code,
product_price: item.product.prices?.[0]?.price, product_price: item.product.prices![0].price,
warehouse_code: 'wh1', warehouse_code: 'wh1',
})); }));
@@ -283,6 +291,7 @@ const OrderPage = () => {
currency_code: '860', currency_code: '860',
owner_person_code: '1234567', owner_person_code: '1234567',
note: value.comment, note: value.comment,
order_products: order_products, order_products: order_products,
}, },
], ],