feat: deal card, deal status, deal new dates, indicator, hide navbar

This commit is contained in:
2024-09-30 22:53:31 +03:00
parent 100af0aa06
commit f202e9b9fa
4 changed files with 52 additions and 44 deletions

View File

@@ -8,5 +8,7 @@ export type DealGeneralInfoSchema = {
isCompleted: boolean;
comment: string;
shippingWarehouse?: (string | null);
deliveryDate?: (string | null);
receivingSlotDate?: (string | null);
};

View File

@@ -3,6 +3,7 @@
/* tslint:disable */
/* eslint-disable */
import type { BaseMarketplaceSchema } from './BaseMarketplaceSchema';
import type { DealBillRequestSchema } from './DealBillRequestSchema';
export type DealSummary = {
id: number;
name: string;
@@ -19,5 +20,6 @@ export type DealSummary = {
shipmentWarehouseName: (string | null);
deliveryDate?: (string | null);
receivingSlotDate?: (string | null);
billRequest?: (DealBillRequestSchema | null);
};