mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-24 07:15:44 +00:00
refactor(FE): Add Kandang and Location to Recording type
This commit is contained in:
+4
@@ -1,6 +1,8 @@
|
|||||||
import { BaseApproval, BaseMetadata, User } from '@/types/api/api-general';
|
import { BaseApproval, BaseMetadata, User } from '@/types/api/api-general';
|
||||||
import { ProductWarehouse } from '@/types/api/inventory/product-warehouse';
|
import { ProductWarehouse } from '@/types/api/inventory/product-warehouse';
|
||||||
import { Warehouse } from '@/types/api/master-data/warehouse';
|
import { Warehouse } from '@/types/api/master-data/warehouse';
|
||||||
|
import { Kandang } from '@/types/api/master-data/kandang';
|
||||||
|
import { Location } from '@/types/api/master-data/location';
|
||||||
|
|
||||||
export type ProductionStandard = {
|
export type ProductionStandard = {
|
||||||
id: number;
|
id: number;
|
||||||
@@ -87,6 +89,8 @@ export type Recording = BaseMetadata &
|
|||||||
approval?: BaseApproval;
|
approval?: BaseApproval;
|
||||||
created_user: User;
|
created_user: User;
|
||||||
warehouse?: Warehouse;
|
warehouse?: Warehouse;
|
||||||
|
kandang?: Kandang;
|
||||||
|
location?: Location;
|
||||||
product_category?: 'GROWING' | 'LAYING';
|
product_category?: 'GROWING' | 'LAYING';
|
||||||
depletions?: RecordingDepletion[];
|
depletions?: RecordingDepletion[];
|
||||||
stocks?: RecordingStock[];
|
stocks?: RecordingStock[];
|
||||||
|
|||||||
Reference in New Issue
Block a user