mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-24 15:25:46 +00:00
feat: create dummyClosingProductionData
This commit is contained in:
@@ -83,6 +83,7 @@ import {
|
|||||||
ClosingIncomingSapronak,
|
ClosingIncomingSapronak,
|
||||||
ClosingOutgoingSapronak,
|
ClosingOutgoingSapronak,
|
||||||
ClosingOverhead,
|
ClosingOverhead,
|
||||||
|
ClosingProductionData,
|
||||||
ClosingSapronakCalculation,
|
ClosingSapronakCalculation,
|
||||||
} from '@/types/api/closing';
|
} from '@/types/api/closing';
|
||||||
import { CreatedUser, BaseApiResponse } from '@/types/api/api-general';
|
import { CreatedUser, BaseApiResponse } from '@/types/api/api-general';
|
||||||
@@ -1134,3 +1135,41 @@ export const dummyGetOverhead = async (
|
|||||||
data: dummyOverhead,
|
data: dummyOverhead,
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export const dummyClosingProductionData: ClosingProductionData = {
|
||||||
|
purchase: {
|
||||||
|
initial_population: 12000,
|
||||||
|
claim_culling: 150,
|
||||||
|
final_population: 11850,
|
||||||
|
feed_in: 24000,
|
||||||
|
feed_used: 22500,
|
||||||
|
feed_used_per_head: 1.9,
|
||||||
|
},
|
||||||
|
|
||||||
|
sales: {
|
||||||
|
chicken: {
|
||||||
|
sales_population: 10500,
|
||||||
|
sales_weight: 21000,
|
||||||
|
average_weight: 2.0,
|
||||||
|
chicken_average_selling_price: 28500,
|
||||||
|
},
|
||||||
|
egg: {
|
||||||
|
egg_pieces: 185000,
|
||||||
|
egg_mass_kg: 9250,
|
||||||
|
average_egg_weight_kg: 0.05,
|
||||||
|
egg_average_selling_price: 1800,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
|
performance: {
|
||||||
|
depletion: 150,
|
||||||
|
age_day: 35,
|
||||||
|
mortality_std: 3.5,
|
||||||
|
mortality_act: 4.2,
|
||||||
|
deff_mortality: 0.7,
|
||||||
|
fcr_std: 1.6,
|
||||||
|
fcr_act: 1.72,
|
||||||
|
deff_fcr: 0.12,
|
||||||
|
awg: 60,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user