mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-24 23:35:45 +00:00
fix(FE-179): prevent qty input greater than sales order qty
This commit is contained in:
@@ -71,9 +71,8 @@ const InventoryAdjustmentForm = ({
|
||||
Partial<InventoryAdjustmentFormValues>
|
||||
>(() => {
|
||||
return {
|
||||
product_category_id: initialValues?.product_category?.id ?? 0,
|
||||
product_id: initialValues?.product?.id ?? 0,
|
||||
warehouse_id: initialValues?.warehouse?.id ?? 0,
|
||||
product_id: initialValues?.product_warehouse?.product_id ?? 0,
|
||||
warehouse_id: initialValues?.product_warehouse?.warehouse_id ?? 0,
|
||||
product_category: undefined,
|
||||
product: undefined,
|
||||
warehouse: undefined,
|
||||
|
||||
Reference in New Issue
Block a user