mirror of
https://github.com/inventree/InvenTree.git
synced 2026-04-04 10:31:03 +00:00
Copy order params (#11479)
* Copy parameters when duplicating an order * Add unit test for order parameter duplication * Bunmp API version * Fix test reliability * Disable image fetching for SampleSupplierPlugin - Allow turning on manually - Prevent CI issues due to rate limiting * Revery pypdf.. ???
This commit is contained in:
@@ -292,7 +292,8 @@ export function usePurchaseOrderFields({
|
||||
value: duplicateOrderId
|
||||
},
|
||||
copy_lines: {},
|
||||
copy_extra_lines: {}
|
||||
copy_extra_lines: {},
|
||||
copy_parameters: {}
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
@@ -91,7 +91,8 @@ export function useReturnOrderFields({
|
||||
value: false,
|
||||
hidden: true
|
||||
},
|
||||
copy_extra_lines: {}
|
||||
copy_extra_lines: {},
|
||||
copy_parameters: {}
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
@@ -90,7 +90,8 @@ export function useSalesOrderFields({
|
||||
value: duplicateOrderId
|
||||
},
|
||||
copy_lines: {},
|
||||
copy_extra_lines: {}
|
||||
copy_extra_lines: {},
|
||||
copy_parameters: {}
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user