Merge branch 'development' into fix/transfer-to-laying

This commit is contained in:
ValdiANS
2026-01-23 23:07:51 +07:00
17 changed files with 401 additions and 153 deletions
+1
View File
@@ -17,6 +17,7 @@ export type BaseSales = {
id: number;
realization_date: string;
age: number;
week: number;
do_number: string;
product: Product;
customer: Customer;
+7 -1
View File
@@ -26,7 +26,13 @@ type DrawerUISlice = {
setIsNextStep: (v: boolean) => void;
};
export type UIStore = MainUiSlice & DrawerUISlice;
type TableUISlice = {
searchValue: string;
setSearchValue: (value: string) => void;
resetSearchValue: () => void;
};
export type UIStore = MainUiSlice & DrawerUISlice & TableUISlice;
type ProductionStandardFormSlice = {
formData: {