fix(FE): pull development

This commit is contained in:
randy-ar
2025-12-10 23:19:43 +07:00
parent 814e8db1ba
commit 4f4fd3e6b7
6 changed files with 214 additions and 91 deletions
@@ -61,13 +61,13 @@ export class ProjectFlockKandangService extends BaseApiService<
// status: 'success',
// message: 'Cek persyaratan closing kandang',
// data: {
// unfinished_expenses: 2,
// unfinished_expenses: id % 2 === 1 ? 2 : 0,
// stock_remaining: [
// {
// id: 1,
// product_id: 1,
// warehouse_id: 1,
// quantity: 0,
// quantity: id % 2 === 1 ? 100 : 0,
// product: {
// id: 1,
// name: 'Pakan Starter',
@@ -146,9 +146,9 @@ export class ProjectFlockKandangService extends BaseApiService<
// po_number: 'PO-BOP-LTI-00001',
// category: 'NON-BOP',
// total: 110000,
// status: 'SELESAI',
// step_name: 'Approval Finance',
// step: 5,
// status: id % 2 === 1 ? 'PENGAJUAN' : 'SELESAI',
// step_name: id % 2 === 1 ? 'Approval Finance' : 'Selesai',
// step: id % 2 === 1 ? 1 : 5,
// reference_number: 'BOP-LTI-00001',
// },
// {
@@ -156,9 +156,9 @@ export class ProjectFlockKandangService extends BaseApiService<
// po_number: 'PO-BOP-LTI-00003',
// category: 'BOP',
// total: 110000,
// status: 'SELESAI',
// step_name: 'Approval Finance',
// step: 5,
// status: id % 2 === 1 ? 'PENGAJUAN' : 'SELESAI',
// step_name: id % 2 === 1 ? 'Approval Finance' : 'Selesai',
// step: id % 2 === 1 ? 1 : 5,
// reference_number: 'BOP-LTI-00003',
// },
// ],