2
0
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:
Oliver
2026-03-11 19:26:56 +11:00
committed by GitHub
parent bcde2706c7
commit 27809d712a
8 changed files with 102 additions and 10 deletions

View File

@@ -292,7 +292,8 @@ export function usePurchaseOrderFields({
value: duplicateOrderId
},
copy_lines: {},
copy_extra_lines: {}
copy_extra_lines: {},
copy_parameters: {}
}
};
}

View File

@@ -91,7 +91,8 @@ export function useReturnOrderFields({
value: false,
hidden: true
},
copy_extra_lines: {}
copy_extra_lines: {},
copy_parameters: {}
}
};
}

View File

@@ -90,7 +90,8 @@ export function useSalesOrderFields({
value: duplicateOrderId
},
copy_lines: {},
copy_extra_lines: {}
copy_extra_lines: {},
copy_parameters: {}
}
};
}