mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-23 06:45:46 +00:00
refactor(FE-239-238): Refactor UI & API Integration For Form Chickin & Chickin Details
This commit is contained in:
@@ -11,6 +11,7 @@ export type BaseProjectFlockKandang = {
|
||||
kandang: Kandang;
|
||||
project_flock: ProjectFlock;
|
||||
available_qtys?: AvailableQty[];
|
||||
chickins?: Chickin[];
|
||||
approval: BaseApproval;
|
||||
};
|
||||
|
||||
@@ -21,6 +22,17 @@ export type AvailableQty = {
|
||||
note?: string;
|
||||
};
|
||||
|
||||
export type Chickin = {
|
||||
id: number;
|
||||
project_flock_kandang_id: number;
|
||||
chick_in_date: string;
|
||||
product_warehouse_id: number;
|
||||
product_warehouse: ProductWarehouse;
|
||||
usage_qty: number;
|
||||
pending_usage_qty: number;
|
||||
note: string;
|
||||
};
|
||||
|
||||
export type ProjectFlockKandang = BaseProjectFlockKandang;
|
||||
|
||||
export type LookupProjectFlockKandangPayload = {
|
||||
|
||||
Reference in New Issue
Block a user