feat: processing of modules in card, renaming

This commit is contained in:
2025-02-20 20:21:08 +04:00
parent dc9455966e
commit 8083bdf3d0
29 changed files with 240 additions and 768 deletions

View File

@@ -5,11 +5,11 @@
import type { BaseMarketplaceSchema } from './BaseMarketplaceSchema';
export type CardQuickCreateRequest = {
name: string;
clientName: string;
clientName: (string | null);
comment: string;
acceptanceDate: string;
shippingWarehouse: string;
baseMarketplace: BaseMarketplaceSchema;
shippingWarehouse: (string | null);
baseMarketplace: (BaseMarketplaceSchema | null);
statusId: number;
};