ValdiANS
55737bb96f
chore: resolve merge conflict with development in ReportDepreciationTab
...
Development had added a forceRecompute/Refresh mechanism on top of V1 API.
Kept our V2 implementation which supersedes it — V2 uses a different
endpoint and response shape that doesn't support force_recompute.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-06-05 16:39:48 +07:00
ValdiANS
1ab1c9b027
Merge branch 'development' into feat/depreciation-report-v2
2026-06-05 16:27:49 +07:00
ValdiANS
ab6ad7d7b1
feat: migrate depreciation report to V2 API with daily breakdown view
...
- Add V2 types (ReportDepreciationV2Item, DepreciationV2Meta, DepreciationV2Response) for the new per-day response shape
- Add DepreciationReportV2Api service pointing to /reports/expense/v2/depreciation
- Require projectFlock in filter (was optional); auto-open filter modal on first load when none is selected
- Replace multi-card farm loop with a single project flock card showing farm_name and period only in the header
- Replace kandang sub-table with daily depreciation rows: date, day_n, chickin_date, depreciation_value, pullet_cost_day_n_total, multiplication_percentage, total_value_pullet_after_depreciation
- Add Total Hari (limit) NumberInput field (default 10) to filter modal; remove pagination
- Switch storeName to report-depreciation-v2-table to avoid loading stale localStorage state
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-06-05 16:14:57 +07:00
Giovanni Gabriel Septriadi
3641d517ed
Merge branch 'rc/00' into 'production'
...
Rc/00
See merge request mbugroup/lti-web-client!508
2026-06-05 02:44:29 +00:00
Giovanni Gabriel Septriadi
fce4d52214
Merge branch 'fix/laying-transition-logic-removal' into 'rc/00'
...
Fix/laying transition logic removal
See merge request mbugroup/lti-web-client!507
2026-06-05 02:41:10 +00:00
Giovanni Gabriel Septriadi
68cadc42fc
Merge branch 'rc/00' into 'production'
...
feat: add date range, filter by, and warehouse filter to marketing table
See merge request mbugroup/lti-web-client!506
2026-06-04 17:33:52 +00:00
Giovanni Gabriel Septriadi
e2354b5ea7
Merge branch 'feat/enable-edit-chick-in-date' into 'rc/00'
...
feat: add inline edit for chick-in date in chickin logs
See merge request mbugroup/lti-web-client!503
2026-06-04 16:53:13 +00:00
Giovanni Gabriel Septriadi
8f88677191
Merge branch 'feat/marketing-filter-range-date' into 'rc/00'
...
feat: add date range, filter by, and warehouse filter to marketing table
See merge request mbugroup/lti-web-client!504
2026-06-04 16:52:49 +00:00
Rivaldi A N S
16c5c6c887
Merge branch 'feat/hpp-per-farm' into 'development'
...
[FEAT/FE] HPP Per Farm
See merge request mbugroup/lti-web-client!505
2026-06-04 08:00:40 +00:00
ValdiANS
97ff90996a
feat: add Refresh button with force_recompute to ReportDepreciationTab
...
Adds a Refresh button to the tab actions bar (left of ButtonFilter) that
re-fetches depreciation data with force_recompute=true in the query param,
triggering a server-side recomputation. The arrow-path icon spins while
the request is in flight. Button is styled to match ButtonFilter. The
force_recompute flag resets to false when filters are changed.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-06-04 14:58:51 +07:00
ValdiANS
7fb86e9759
feat: add HPP Per Farm report tab with expandable flock rows
...
- Add HppPerFarmReport types (HppPerFarmRow, HppPerFarmFlock, HppPerFarmSummary)
- Add HppPerFarmTab component with useTableFilter persist, date range filter
(max 30 days, end >= start), location multi-select, and expandable rows
showing per-flock cost breakdown
- Register new tab in MarketingTabs
- Increase http client default timeout to 300s for long-running report queries
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-06-04 13:32:50 +07:00
Rivaldi A N S
9b19e306bf
Merge branch 'feat/enable-edit-chick-in-date' into 'development'
...
[FEAT/FE] Enable Edit Chick-In Date
See merge request mbugroup/lti-web-client!502
2026-06-03 07:26:17 +00:00
ValdiANS
4151829cb8
fix: disabled deliver item button if is submitting and set the is loading prop
2026-06-03 14:24:39 +07:00
ValdiANS
f167916a21
fix: replace throw error with axios error handling in SalesOrderService and MarketingExportService
...
All catch blocks in singleApproval, bulkApprovals (both classes), and
delivery now return error.response?.data for axios errors and undefined
otherwise, consistent with the BaseApiService pattern.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-06-03 14:20:43 +07:00
ValdiANS
97acc17ca5
feat: add inline edit for chick-in date in chickin logs
...
- Add updateChickinDate method to ChickinService (PATCH /production/chickins/chick-in-date)
- Add pencil icon button next to each chickin date in ChickLogsView
- Clicking the icon toggles an inline DateInput with Simpan/Batal buttons
- Save button is disabled and shows loading state while request is in flight
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-06-03 14:05:06 +07:00
Rivaldi A N S
5348d47e3c
Merge branch 'feat/marketing-filter-range-date' into 'development'
...
[FEAT/FE] Marketing Filter Range Date
See merge request mbugroup/lti-web-client!501
2026-06-02 06:28:04 +00:00
ValdiANS
e73af7e252
feat: add date range, filter by, and warehouse filter to marketing table
...
- Add start_date and end_date range inputs to the marketing filter modal
with validation that prevents end date from being earlier than start date
- Add 'Filter Berdasarkan' single-select radio (so_date / created_at)
to let users choose which date field the range applies to
- Add single-select Gudang (warehouse) filter backed by WarehouseApi,
serialized as warehouse_id query param
- Wire all three new filters into useTableFilter (paramMap, persist,
excludeKeysFromUrl for label-only fields) and propagate through
filterSubmitHandler, filterResetHandler, and marketingFilterInitialValues
so filter state survives page refreshes
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-06-02 13:22:01 +07:00
Rivaldi A N S
80f8b190fd
Merge branch 'fix/laying-transition-logic-removal' into 'development'
...
[FIX/FE] Laying Transition Logic Removal
See merge request mbugroup/lti-web-client!500
2026-06-02 02:47:02 +00:00
ValdiANS
7b4bd7605b
fix: remove transition restriction for recording
2026-06-02 09:45:19 +07:00
Rivaldi A N S
9bd646294b
Merge branch 'fix/laying-transition-logic-removal' into 'development'
...
[FIX/FE] Laying Transition Restrict Logic Removal
See merge request mbugroup/lti-web-client!499
2026-05-30 02:19:24 +00:00
ValdiANS
366260608f
fix: remove transition restrict logic
2026-05-30 09:13:56 +07:00
Giovanni Gabriel Septriadi
a1cb401a1c
Merge branch 'development' into 'production'
...
Development
See merge request mbugroup/lti-web-client!498
2026-05-29 16:32:00 +00:00
Rivaldi A N S
3f1c1b62e2
Merge branch 'feat/purchase-po-pr-copy-paste' into 'development'
...
[FEAT/FE] Purchase PO & PR Number Copy Button
See merge request mbugroup/lti-web-client!497
2026-05-29 10:13:13 +00:00
ValdiANS
5c9fa12347
feat: add copy button for PR and PO number
2026-05-29 17:11:42 +07:00
Giovanni Gabriel Septriadi
2ea6e1a5a5
Merge branch 'development' into 'production'
...
feat: add server-side Excel export to PurchasesPerSupplierTab
See merge request mbugroup/lti-web-client!496
2026-05-25 08:16:37 +00:00
Rivaldi A N S
aa935b8851
Merge branch 'feat/export-balance-monitoring' into 'development'
...
[FEAT/FE] Export Balance Monitoring
See merge request mbugroup/lti-web-client!495
2026-05-25 07:25:07 +00:00
ValdiANS
b8419a3f69
feat: add Excel export to BalanceMonitoringTab
...
Add exportBalanceMonitoringToExcel to FinanceApiService (server-side
blob download hitting reports/balance-monitoring?export=excel). Wire it
into BalanceMonitoringTab via a Dropdown export button in the tab
actions. Wrap the handler in useCallback to prevent an infinite
setTabActions loop caused by a new function reference on every render.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-05-25 14:14:40 +07:00
Rivaldi A N S
eaf70ead70
Merge branch 'feat/export-report-purchases-per-supplier' into 'development'
...
[FEAT/FE] Export Report Purchases Per Supplier
See merge request mbugroup/lti-web-client!494
2026-05-25 04:33:09 +00:00
ValdiANS
7e6f250864
feat: add server-side Excel export to PurchasesPerSupplierTab
...
Add exportToExcelSupplierPerSheet and exportToExcelGeneral methods to
LogisticApiService, hitting the existing purchase-supplier endpoint with
export=excel / export=excel-all query params and downloading the server
blob response. Replace the client-side Excel generation in
PurchasesPerSupplierTab with calls to these two service methods, and
split the single Export to Excel button into Export to Excel - Supplier
Per Sheet and Export to Excel - General.
2026-05-25 11:28:41 +07:00
Giovanni Gabriel Septriadi
d7a98a77ea
Merge branch 'development' into 'production'
...
refactor: optimize BalanceMonitoringTab with useTableFilter persistence pattern
See merge request mbugroup/lti-web-client!493
2026-05-25 04:04:15 +00:00
Rivaldi A N S
13eb0594a8
Merge branch 'hotfix/transfer-to-laying' into 'development'
...
[HOTFIX/FE] Transfer to Laying
See merge request mbugroup/lti-web-client!492
2026-05-25 03:39:13 +00:00
ValdiANS
22b3350e4a
fix: set flock source and destination raw data accordingly
2026-05-25 10:37:41 +07:00
Rivaldi A N S
55424b272f
Merge branch 'fix/depreciation-report' into 'development'
...
[FIX/FE] Depreciation Report
See merge request mbugroup/lti-web-client!491
2026-05-22 04:17:04 +00:00
ValdiANS
05138dbb6f
feat: implement table filter state persist
2026-05-22 11:14:16 +07:00
ValdiANS
b5a0614218
feat: implement url query param tab navigation
2026-05-22 11:13:52 +07:00
Rivaldi A N S
7ec46ffa8c
Merge branch 'fix/transfer-stock' into 'development'
...
[FIX/FE] Transfer Stock
See merge request mbugroup/lti-web-client!490
2026-05-22 03:19:56 +00:00
ValdiANS
07dd2d26be
fix: cache product stock
2026-05-22 10:17:04 +07:00
Rivaldi A N S
9a56bf732a
Merge branch 'fix/purchase-filter' into 'development'
...
[FIX/FE] Purchase Filter
See merge request mbugroup/lti-web-client!489
2026-05-21 07:46:44 +00:00
ValdiANS
585918cc28
fix: update purchase type
2026-05-21 14:44:28 +07:00
ValdiANS
80e0bd5a8e
fix: update table columns
2026-05-21 14:44:20 +07:00
ValdiANS
a4e5116bef
feat: add start_date, end_date, and filter_by input
2026-05-21 14:44:07 +07:00
ValdiANS
027668a1bf
feat: add export to excel feature
2026-05-21 14:43:08 +07:00
Rivaldi A N S
7e1fab9a69
Merge branch 'feat/balance-monitoring-report' into 'development'
...
[FEAT/FE] Balance Monitoring Report
See merge request mbugroup/lti-web-client!488
2026-05-20 09:41:51 +00:00
ValdiANS
ef56f87e45
feat: create report finance layout file
2026-05-20 16:35:43 +07:00
ValdiANS
c4827bb810
feat: implement Query Param Tab Navigation
2026-05-20 16:35:26 +07:00
ValdiANS
9abb8b0b58
feat: add hide field in TabItem type
2026-05-20 16:34:53 +07:00
ValdiANS
8d014a8fea
fix: adjust BalanceMonitoringRow type
2026-05-20 16:14:37 +07:00
ValdiANS
3d37fb2ecb
fix: remove dummy data
2026-05-20 16:10:36 +07:00
ValdiANS
d60877d391
refactor: optimize DebtSupplierTab with useTableFilter persistence pattern
...
Replace filterParams/currentPage/pageSize state with useTableFilter (persist:true),
switch SWR to httpClientFetcher with explicit type, store OptionType[] directly for
suppliers/filterBy, add formikResetHandler using resetFilter(), remove TabActions
component anti-pattern and handleFilterModalOpenRef, pass filterModal.openModal directly.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-05-20 16:10:19 +07:00
ValdiANS
b3b60018bb
refactor: optimize CustomerPaymentTab with useTableFilter persistence pattern
...
Replace filterParams/currentPage/pageSize state with useTableFilter (persist:true),
switch SWR to httpClientFetcher with explicit type, store OptionType[] directly for
customers/filterBy, add formikResetHandler using resetFilter(), remove enableReinitialize
and handleFilterModalOpenRef, pass filterModal.openModal directly.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-05-20 16:10:10 +07:00
ValdiANS
c98a51326f
refactor: optimize BalanceMonitoringTab with useTableFilter persistence pattern
...
Replace single-select customerFilter/salesFilter with OptionType[] multi-select
(customers, salesPersons, filterBy), switch SWR to httpClientFetcher with explicit
type, remove PDF export, enableReinitialize, useRef modal hack, useMemo on data/meta,
and useCallback on trivial handlers. Add formikResetHandler using resetFilter().
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com >
2026-05-20 16:10:01 +07:00
ValdiANS
7437e2e584
fix: update pattern context
2026-05-20 16:08:19 +07:00
ValdiANS
ac6f6ecf78
Merge branch 'development' into feat/balance-monitoring-report
2026-05-20 11:21:39 +07:00
Rivaldi A N S
7f961b2f8b
Merge branch 'feat/debt-supplier-general-export' into 'development'
...
[FEAT/FE] Debt Supplier General Export
See merge request mbugroup/lti-web-client!487
2026-05-20 04:14:59 +00:00
ValdiANS
a8c02243a4
feat: implement export general and server-side export
2026-05-20 11:13:50 +07:00
Rivaldi A N S
82dca3b57e
Merge branch 'feat/debt-supplier-general-export' into 'development'
...
[FEAT/FE] Debt Supplier General Export
See merge request mbugroup/lti-web-client!486
2026-05-19 10:33:48 +00:00
ValdiANS
94d623d793
feat: update gitignore
2026-05-19 17:31:18 +07:00
ValdiANS
f76b5b981c
feat: create balance-monitoring type
2026-05-19 17:31:00 +07:00
ValdiANS
8df5af0124
feat: create getBalanceMonitoringReport method
2026-05-19 17:30:38 +07:00
ValdiANS
3c175d4586
feat: create BalanceMonitoringTab component
2026-05-19 17:30:28 +07:00
ValdiANS
9350a6bd3e
fix: add Monitoring Saldo tab
2026-05-19 17:30:13 +07:00
ValdiANS
6668c7b1f9
feat: update .gitignore
2026-05-19 16:07:08 +07:00
ValdiANS
ce4f50c92a
feat: create Export to Excel - General button
2026-05-19 16:06:54 +07:00
ValdiANS
146192a5b3
feat: create exportToExcelGeneral method
2026-05-19 16:06:41 +07:00
Rivaldi A N S
27c24e7c82
Merge branch 'fix/daily-checklist' into 'development'
...
[FIX/FE] Daily Checklist
See merge request mbugroup/lti-web-client!485
2026-05-19 07:47:51 +00:00
ValdiANS
a99a399f09
fix: show kandang label even if its not loaded yet in kandang options
2026-05-19 14:44:12 +07:00
Giovanni Gabriel Septriadi
a314a62f1f
Merge branch 'development' into 'production'
...
Development
See merge request mbugroup/lti-web-client!484
2026-05-19 06:48:45 +00:00
Rivaldi A N S
37d0041a4f
Merge branch 'fix/daily-checklist' into 'development'
...
[FIX/FE] Daily Checklist
See merge request mbugroup/lti-web-client!483
2026-05-19 05:12:37 +00:00
ValdiANS
3647f1a1ea
fix: make empty kandang end date required
2026-05-19 12:11:24 +07:00
ValdiANS
7b5049165a
fix: add hasError props
2026-05-19 12:11:07 +07:00
Rivaldi A N S
3839b46edc
Merge branch 'feat/server-side-sorting' into 'development'
...
[FEAT/FE] Server Side Sorting
See merge request mbugroup/lti-web-client!482
2026-05-19 04:54:47 +00:00
ValdiANS
b7f2bca931
feat: add rtk filters.toml
2026-05-19 11:51:59 +07:00
ValdiANS
802bf77bc5
feat: add rtk instructions
2026-05-19 11:51:27 +07:00
ValdiANS
fd7b49ab93
feat: implement server-side sorting in report expense
2026-05-19 11:51:17 +07:00
Rivaldi A N S
456070491f
Merge branch 'fix/marketing' into 'development'
...
[FIX/FE] Marketing
See merge request mbugroup/lti-web-client!481
2026-05-18 07:43:05 +00:00
ValdiANS
c12beca4d7
fix: recalculate qty if product change
2026-05-18 14:26:52 +07:00
ValdiANS
910981645b
fix: remove unnecessary code
2026-05-18 14:25:19 +07:00
ValdiANS
82b5429d02
fix: update DeliveryOrderSchema validation, make all delivery_order should valid instead of some
2026-05-18 14:24:59 +07:00
ValdiANS
6c6f739fc0
fix: remove onAfterSubmit callback in useFormikErrorList
2026-05-18 14:20:30 +07:00
ValdiANS
001dafecb7
fix: adjust copywriting for approve button based on approval step number
2026-05-18 14:18:35 +07:00
Rivaldi A N S
4bb3ada779
Merge branch 'feat/server-side-sorting' into 'development'
...
[FEAT/FE] Server-Side Sorting
See merge request mbugroup/lti-web-client!480
2026-05-18 04:38:58 +00:00
ValdiANS
0b63dcb532
feat: implement server-side sorting in FinanceTable
2026-05-18 11:37:40 +07:00
Rivaldi A N S
23dd220b2f
Merge branch 'fix/daily-checklist' into 'development'
...
[FIX/FE] Daily Checklist
See merge request mbugroup/lti-web-client!479
2026-05-18 03:46:22 +00:00
ValdiANS
770c293257
fix: adjust empty_kandang type in BaseDailyChecklist
2026-05-18 10:25:27 +07:00
ValdiANS
3374ab4779
fix: show Tanggal Selesai Kandang Kosong if category is empty kandang
2026-05-18 10:25:10 +07:00
ValdiANS
7a668c0cf9
fix: adjust empty kandang condition check
2026-05-18 10:20:52 +07:00
Rivaldi A N S
14151f6f5a
Merge branch 'feat/add-bank-name-in-supplier-customer' into 'development'
...
[FEAT/FE] Bank Name in Supplier & Customer
See merge request mbugroup/lti-web-client!478
2026-05-13 09:26:25 +00:00
ValdiANS
0275e66eda
feat: add bank_name
2026-05-13 16:25:35 +07:00
ValdiANS
9bc5842493
feat: add bank name input
2026-05-13 16:25:25 +07:00
ValdiANS
4cad8aba64
feat: add bank name column
2026-05-13 16:25:13 +07:00
Rivaldi A N S
7b5af69dd1
Merge branch 'feat/server-side-sorting-purchasing-expense' into 'development'
...
[FEAT/FE] Server-Side Sorting Purchasing & Expense
See merge request mbugroup/lti-web-client!477
2026-05-13 08:49:54 +00:00
ValdiANS
2e179b74ba
fix: add sort for PO number
2026-05-13 15:29:19 +07:00
ValdiANS
fe2a2dfb43
fix: add loading state to approve modal
2026-05-13 15:29:03 +07:00
ValdiANS
910a36857e
fix: pass the rest of secondaryButton props
2026-05-13 15:26:30 +07:00
ValdiANS
58ddd9b991
fix: set sortDescFirst false
2026-05-13 15:26:10 +07:00
Rivaldi A N S
bb9c6ab969
Merge branch 'fix/marketing' into 'development'
...
[FIX/FE] Marketing
See merge request mbugroup/lti-web-client!476
2026-05-13 06:55:55 +00:00
ValdiANS
ddffdd1b27
fix: adjust marketing_type default value
2026-05-13 13:46:59 +07:00
Rivaldi A N S
f097620c4b
Merge branch 'feat/server-side-sorting-purchasing-expense' into 'development'
...
[FEAT/FE] Server-Side Sorting Purchasing & Expense
See merge request mbugroup/lti-web-client!475
2026-05-13 04:18:52 +00:00
ValdiANS
280d790f0c
fix: add created_at column
2026-05-13 10:51:46 +07:00
ValdiANS
3a2e74b559
feat: implement server-side sorting
2026-05-13 10:51:35 +07:00
Giovanni Gabriel Septriadi
2bf5f36a77
Merge branch 'development' into 'production'
...
Development
See merge request mbugroup/lti-web-client!474
2026-05-12 09:31:27 +00:00
Giovanni Gabriel Septriadi
b9ef0fa338
Merge branch 'fix/pay' into 'development'
...
fix bop
See merge request mbugroup/lti-web-client!473
2026-05-12 08:54:42 +00:00
MacBook Air M1
6d8cdeffe9
fix bop
2026-05-12 15:53:16 +07:00
Rivaldi A N S
2e36247a1a
Merge branch 'fix/product-stock-optimization' into 'development'
...
[FIX/FE] Product Stock Optimization
See merge request mbugroup/lti-web-client!472
2026-05-12 07:41:58 +00:00
ValdiANS
37cd990b4f
fix: add empty_kandang to CATEGORY_LABELS
2026-05-12 14:38:50 +07:00
ValdiANS
bdc7ac4d22
feat: only fetch when user scroll to the component
2026-05-12 14:38:19 +07:00
ValdiANS
b6c2f36dd1
feat: implement filter for stock log table
2026-05-12 14:36:31 +07:00
ValdiANS
10cc4bee72
feat: create StockLogFilterModal component
2026-05-12 14:36:13 +07:00
Rivaldi A N S
ff6bcf019b
Merge branch 'fix/transfer-to-laying' into 'development'
...
[FIX/FE] Transfer To Laying
See merge request mbugroup/lti-web-client!471
2026-05-12 05:04:56 +00:00
ValdiANS
bb0508d456
fix: adjust BaseTransferToLaying.sources.product_warehouse type
2026-05-12 12:03:19 +07:00
ValdiANS
d6dd5e6709
fix: adjust remaining chicken UI layout
2026-05-12 12:02:51 +07:00
Rivaldi A N S
3c75a7631a
Merge branch 'feat/expense-enhancement' into 'development'
...
[FEAT] Expense Enhancement
See merge request mbugroup/lti-web-client!470
2026-05-12 04:12:45 +00:00
ValdiANS
e3d3e744b0
fix: add is_paid to BaseExpense
2026-05-12 11:09:40 +07:00
ValdiANS
5767a078d9
feat: implement paid off expense feature
2026-05-12 11:09:25 +07:00
ValdiANS
67c7e85ba8
fix: adjust swr key to fetch expense detail
2026-05-12 11:09:03 +07:00
ValdiANS
c5a5582147
feat: create setExpensePaidOff method
2026-05-12 10:26:57 +07:00
Rivaldi A N S
46cb8a7d61
Merge branch 'fix/daily-checklist' into 'development'
...
[FIX/FE] Daily Checklist
See merge request mbugroup/lti-web-client!469
2026-05-11 09:54:31 +00:00
ValdiANS
0189733dec
fix: add week and excess_days to BaseRecording type
2026-05-11 16:51:30 +07:00
ValdiANS
d0c3581f57
fix: use checklistId param instead of date, kandang_id, and category when redirecting for edit
2026-05-11 16:51:14 +07:00
ValdiANS
e7569b7448
fix: hit API when user click Simpan Draft/Submit and and empty kandang end date
2026-05-11 16:50:44 +07:00
ValdiANS
69b998a61a
fix: update footer styling
2026-05-11 16:47:47 +07:00
ValdiANS
c50c110005
fix: show excess day
2026-05-11 16:47:33 +07:00
Giovanni Gabriel Septriadi
989e30fbed
Merge branch 'development' into 'production'
...
Development
See merge request mbugroup/lti-web-client!468
2026-05-11 08:32:23 +00:00
Rivaldi A N S
3775bb6093
Merge branch 'feat/marketing-table-order' into 'development'
...
[FEAT/FE] Marketing Table Order
See merge request mbugroup/lti-web-client!467
2026-05-09 03:57:29 +00:00
ValdiANS
3dc64d01db
chore: update server-side sorting pattern context
2026-05-09 10:56:39 +07:00
ValdiANS
2ed8ecbbb7
fix: pass manualSorting to Table
2026-05-09 10:55:57 +07:00
ValdiANS
e5f6ef8a85
fix: show document name and use document path from the API response
2026-05-09 10:55:38 +07:00
Rivaldi A N S
7ff0891ad5
Merge branch 'feat/stock-log-export' into 'development'
...
[FEAT/FE] Stock Log Export
See merge request mbugroup/lti-web-client!466
2026-05-08 11:59:06 +00:00
ValdiANS
a9a5098a21
fix: set default map for pageSize to limit
2026-05-08 18:58:25 +07:00
ValdiANS
7f9bb8e11d
chore: remove unnecessary code
2026-05-08 18:58:13 +07:00
ValdiANS
bef3f365bb
feat: add stock log permission
2026-05-08 18:58:02 +07:00
ValdiANS
a0e8c60082
chore: adjust styling
2026-05-08 18:57:37 +07:00
ValdiANS
e7f378823c
feat: implement export product stock log
2026-05-08 18:57:21 +07:00
Rivaldi A N S
ba3cb98e2c
Merge branch 'feat/marketing-table-order' into 'development'
...
[FEAT/FE] Marketing Table Order
See merge request mbugroup/lti-web-client!465
2026-05-08 09:30:39 +00:00
ValdiANS
7643645643
feat: implement server-side sorting
2026-05-08 16:25:51 +07:00
ValdiANS
3b1e7e3b03
feat: add server-side sorting pattern
2026-05-08 16:16:16 +07:00
Rivaldi A N S
725111dc0c
Merge branch 'fix/recording' into 'development'
...
[FIX/FE] Recording Form
See merge request mbugroup/lti-web-client!464
2026-05-08 08:28:17 +00:00
ValdiANS
073d7eee03
chore: prettier format
2026-05-08 15:25:58 +07:00
ValdiANS
cce5a8df43
fix: set stocks quantity to usage_amount + pending_qty
2026-05-08 15:25:48 +07:00
M1 AIR
978067ac6c
Update env not slash
2026-05-07 15:08:33 +07:00
M1 AIR
6255367366
Update env
2026-05-07 14:15:17 +07:00
Rivaldi A N S
af9cb8ec6b
Merge branch 'fix/inventory-product' into 'development'
...
[FIX/FE] Inventory Product
See merge request mbugroup/lti-web-client!463
2026-05-06 03:53:42 +00:00
ValdiANS
e0a1922ed4
fix: implement table filter
2026-05-06 10:31:00 +07:00
ValdiANS
4b5ad0dcab
fix: show total item data
2026-05-06 10:23:22 +07:00
Rivaldi A N S
ca62b31aa6
Merge branch 'fix/expense' into 'development'
...
[FIX/FE] Expense
See merge request mbugroup/lti-web-client!462
2026-05-06 03:03:10 +00:00
ValdiANS
4ec32c51b2
Merge branch 'fix/expense' of https://gitlab.com/mbugroup/lti-web-client into fix/expense
2026-05-06 10:02:04 +07:00
ValdiANS
cdee616e18
fix: remove realization_date validation
2026-05-06 10:01:35 +07:00
ValdiANS
50378a2ee2
fix: remote realization_date validation
2026-05-06 09:49:13 +07:00
Rivaldi A N S
ab093467c4
Merge branch 'fix/production' into 'development'
...
[FIX/FE] Production
See merge request mbugroup/lti-web-client!461
2026-05-05 09:46:25 +00:00
ValdiANS
79e41d8a6f
fix: implement table persist state in recording filter
2026-05-05 16:10:57 +07:00
ValdiANS
35001ff422
fix: make depletion and egg optional
2026-05-05 16:10:44 +07:00
Adnan Zahir
40139cd636
Merge branch 'development' into 'production'
...
Development
See merge request mbugroup/lti-web-client!456
2026-05-05 14:12:28 +07:00
Rivaldi A N S
7026619249
Merge branch 'fix/production' into 'development'
...
[FIX/FE] Production
See merge request mbugroup/lti-web-client!460
2026-05-04 09:25:33 +00:00
ValdiANS
3945142966
fix: add formikFlockSource to useEffect dependencies to set flock source raw data
2026-05-04 16:24:21 +07:00
ValdiANS
b19099cea2
fix: takeout export button
2026-05-04 16:23:35 +07:00
Rivaldi A N S
f65593de25
Merge branch 'fix/daily-checklist' into 'development'
...
[FIX/FE] Daily Checklist
See merge request mbugroup/lti-web-client!459
2026-05-04 07:20:16 +00:00
ValdiANS
a5f1a6ea75
fix: order select input options in ascending manner
2026-05-04 14:19:14 +07:00
ValdiANS
4e58f20ba3
fix: set timeout to 1 minute
2026-05-04 14:15:57 +07:00
Rivaldi A N S
dc41d6ce73
Merge branch 'fix/system' into 'development'
...
[FIX][FE]: adjust get detail recording
See merge request mbugroup/lti-web-client!458
2026-05-04 05:21:35 +00:00
MacBook Air M1
8869c9df2c
adjust get detail recording
2026-05-04 12:20:20 +07:00
Rivaldi A N S
f2b3f2b584
Merge branch 'fix/purchasing' into 'development'
...
[FIX/FE] Purchasing
See merge request mbugroup/lti-web-client!457
2026-05-04 03:18:07 +00:00
ValdiANS
31cea258a7
fix: adjust delete click handler
2026-05-04 09:48:46 +07:00
Rivaldi A N S
53d7439300
Merge branch 'fix/recording' into 'development'
...
[FIX/FE] Recording
See merge request mbugroup/lti-web-client!455
2026-05-02 10:06:00 +00:00
ValdiANS
28a1852de8
fix: adjust stock, depletion, and egg select input
2026-05-02 17:04:59 +07:00
Adnan Zahir
8c03f10043
Merge branch 'development' into 'production'
...
Development
See merge request mbugroup/lti-web-client!454
2026-05-02 13:43:29 +07:00
Rivaldi A N S
ff92073d19
Merge branch 'fix/persist-filter' into 'development'
...
[FIX/FE] Persist Filter
See merge request mbugroup/lti-web-client!453
2026-04-30 10:02:56 +00:00
ValdiANS
6ffc2c2806
fix: adjust date filter layout
2026-04-30 16:56:47 +07:00
ValdiANS
9e402e373c
fix: adjust filter submit handler
2026-04-30 16:56:12 +07:00
Rivaldi A N S
2e4c19b714
Merge branch 'fix/finance' into 'development'
...
[FIX/FE] Finance
See merge request mbugroup/lti-web-client!452
2026-04-30 08:02:36 +00:00
ValdiANS
039c926e2d
fix: implement table filter persist state
2026-04-30 15:01:21 +07:00
ValdiANS
e52ba7b394
fix: search input value and change handler
2026-04-30 15:01:11 +07:00
Rivaldi A N S
90dc7c80f2
Merge branch 'fix/finance' into 'development'
...
[FIX/FE] Finance
See merge request mbugroup/lti-web-client!451
2026-04-30 04:40:54 +00:00
ValdiANS
15c883ca73
fix: add created at column
2026-04-30 11:40:16 +07:00
Rivaldi A N S
47f74b8842
Merge branch 'fix/daily-checklist' into 'development'
...
[FIX/FE] Daily Checklist
See merge request mbugroup/lti-web-client!450
2026-04-30 04:20:13 +00:00
ValdiANS
ef9009b304
fix: remove empty kandang date
2026-04-30 11:02:09 +07:00
Adnan Zahir
89a6e51b48
Merge branch 'development' into 'production'
...
Revert "fixing devops"
See merge request mbugroup/lti-web-client!449
2026-04-30 09:54:39 +07:00
M1 AIR
ce25758a17
Revert "fixing devops"
...
This reverts commit 371b236e25 .
2026-04-30 00:34:43 +07:00
M1 AIR
371b236e25
fixing devops
2026-04-30 00:21:44 +07:00
Rivaldi A N S
a54dd1fa9e
Merge branch 'fix/daily-marketing-export' into 'development'
...
[FIX/FE] Daily Marketing Export
See merge request mbugroup/lti-web-client!448
2026-04-29 08:56:11 +00:00
ValdiANS
31205a44f9
feat: add new context to CLAUDE.md
2026-04-29 15:55:22 +07:00
ValdiANS
3c9c55e049
fix: implement server-side export
2026-04-29 15:55:03 +07:00
Rivaldi A N S
7a4f93cf0c
Merge branch 'fix/persist-filter' into 'development'
...
[FIX/FE] Persist Filter
See merge request mbugroup/lti-web-client!447
2026-04-29 08:13:19 +00:00
ValdiANS
a738d58c37
feat: add new context to CLAUDE.md
2026-04-29 15:11:03 +07:00
ValdiANS
46daed8fc4
fix: persist table filter state in master data
2026-04-29 15:10:41 +07:00
ValdiANS
29347c24f4
fix: create TableFilterStateValue type
2026-04-29 15:10:25 +07:00
Adnan Zahir
f6727dc4dc
Merge branch 'development' into 'production'
...
Development
See merge request mbugroup/lti-web-client!446
2026-04-29 12:53:07 +07:00
Adnan Zahir
a0f603b707
Merge branch 'feat/toggle-negative-usage' into 'development'
...
fix: missing useRef
See merge request mbugroup/lti-web-client!445
2026-04-29 12:18:21 +07:00
Adnan Zahir
631e3959cd
fix: missing useRef
2026-04-29 12:15:02 +07:00
Adnan Zahir
2a340a26f9
Merge branch 'feat/toggle-negative-usage' into 'development'
...
fix: recording wont accept ovk
See merge request mbugroup/lti-web-client!444
2026-04-29 11:23:14 +07:00
Adnan Zahir
e75246ff8d
fix: recording wont accept ovk
2026-04-29 11:22:07 +07:00
Rivaldi A N S
64aee33452
Merge branch 'fix/project-flock-form' into 'development'
...
[FIX/FE] Project Flock Form
See merge request mbugroup/lti-web-client!443
2026-04-28 07:50:09 +00:00
ValdiANS
1851f0e12f
fix: add periode to project flock form values
2026-04-28 14:34:19 +07:00
Adnan Zahir
8b3f44708d
Merge branch 'feat/toggle-negative-usage' into 'development'
...
fix: show product options from master instead of warehouse of migration mode
See merge request mbugroup/lti-web-client!442
2026-04-28 13:57:04 +07:00
Adnan Zahir
a5fd97a175
fix: show product options from master instead of warehouse of migration mode
2026-04-28 13:55:08 +07:00
Adnan Zahir
1284b22345
Merge branch 'development' into 'production'
...
Development
See merge request mbugroup/lti-web-client!441
2026-04-28 13:43:32 +07:00
Adnan Zahir
2ee5d1f7bd
Merge branch 'feat/toggle-negative-usage' into 'development'
...
feat: konfigurasi sistem toggle pemakaian pakan ovk negatif
See merge request mbugroup/lti-web-client!440
2026-04-28 11:23:28 +07:00
Adnan Zahir
6eb257705f
feat: konfigurasi sistem toggle pemakaian pakan ovk negatif
2026-04-28 10:50:46 +07:00
Rivaldi A N S
9ea1d06972
Merge branch 'fix/project-flock-form' into 'development'
...
[FIX/FE] Project Flock Form
See merge request mbugroup/lti-web-client!439
2026-04-28 02:53:11 +00:00
ValdiANS
ff8833b5b3
fix: adjust period change handler
2026-04-28 09:45:25 +07:00
Rivaldi A N S
2dd98fd7e3
Merge branch 'fix/project-flock-form' into 'development'
...
[FIX/FE] Project Flock Form
See merge request mbugroup/lti-web-client!438
2026-04-27 06:13:19 +00:00
ValdiANS
76fff98d9d
fix: change NumberInput name from 'period' to 'periode'
2026-04-27 13:12:26 +07:00
Rivaldi A N S
18eeabd353
Merge branch 'fix/project-flock-form' into 'development'
...
[FIX/FE] Project Flock Form
See merge request mbugroup/lti-web-client!437
2026-04-27 05:04:26 +00:00
ValdiANS
06b5a97de3
chore: prettier format
2026-04-27 12:03:17 +07:00
ValdiANS
5cccc0b3c6
fix: set background color for shared image
2026-04-27 12:03:09 +07:00
ValdiANS
7ab9518a55
fix: change 'period' to 'periode'
2026-04-27 12:02:43 +07:00
Rivaldi A N S
ac51229398
Merge branch 'fix/project-flock-form' into 'development'
...
[FIX/FE] Project Flock Form
See merge request mbugroup/lti-web-client!436
2026-04-27 04:02:09 +00:00
ValdiANS
5a2532a0fa
Merge branch 'development' into fix/project-flock-form
2026-04-27 10:58:44 +07:00
ValdiANS
f9d2a875e2
chore: prettier format
2026-04-27 10:49:07 +07:00
ValdiANS
6cf8e463c6
feat: create CLAUDE.md
2026-04-27 10:48:56 +07:00
ValdiANS
4206408db1
fix: enable custom period
2026-04-27 10:48:42 +07:00
ValdiANS
ff2ed8757f
fix: set fallback timeout to 30s
2026-04-27 10:43:30 +07:00
Adnan Zahir
f73ea182ae
Merge branch 'development' into 'production'
...
Development
See merge request mbugroup/lti-web-client!435
2026-04-26 00:13:15 +07:00
Adnan Zahir
0c5ee08f90
Merge branch 'codex/filter-improment' into 'development'
...
fix: nested modal
See merge request mbugroup/lti-web-client!434
2026-04-25 23:57:53 +07:00
Adnan Zahir
bbf9581d3a
fix: nested modal
2026-04-25 23:55:26 +07:00
Adnan Zahir
5830ab4c67
Merge branch 'codex/filter-improment' into 'development'
...
Codex/po date
See merge request mbugroup/lti-web-client!433
2026-04-25 22:50:31 +07:00
Adnan Zahir
a1a0b71814
feat: editable po_date
2026-04-25 22:47:59 +07:00
Adnan Zahir
2b3b6b9549
feat: expose received_date in laporan pembelian
2026-04-25 22:24:39 +07:00
Adnan Zahir
047266b6d8
Merge branch 'development' into 'production'
...
Development
See merge request mbugroup/lti-web-client!432
2026-04-25 14:46:53 +07:00
Adnan Zahir
be3034a94e
Merge branch 'codex/filter-improment' into 'development'
...
fix: pagination positioning
See merge request mbugroup/lti-web-client!431
2026-04-25 13:07:25 +07:00
Adnan Zahir
a11d05e720
fix: pagination positioning
2026-04-25 13:06:44 +07:00
Rivaldi A N S
cb454e7eb7
Merge branch 'feat/share-daily-checklist-to-wa' into 'development'
...
[FEAT/FE] Adjust Share Daily Checklist to Whatsapp
See merge request mbugroup/lti-web-client!429
2026-04-25 05:34:44 +00:00
Adnan Zahir
a6d6c53069
Merge branch 'codex/filter-improment' into 'development'
...
feat: add more filters
See merge request mbugroup/lti-web-client!430
2026-04-25 12:27:49 +07:00
Adnan Zahir
c875ebd951
feat: add more filters
2026-04-25 12:15:42 +07:00
ValdiANS
a369386922
feat: add share to whatsapp after submitting daily checklist
2026-04-24 17:22:20 +07:00
ValdiANS
b3198a44e9
uncomment pre-commit
2026-04-24 17:10:38 +07:00
ValdiANS
b2dfb8fec6
fix: adjust share to whatsapp message
2026-04-24 17:10:11 +07:00
ValdiANS
d4d77bb13a
fix: add excluded fields in ButtonFilter
2026-04-24 16:22:46 +07:00
ValdiANS
7dfa5233f3
fix: adjust MarketingFilter type
2026-04-24 16:22:23 +07:00
ValdiANS
3d910f78db
fix: set initial value to MarketingFilter
2026-04-24 16:22:15 +07:00
Rivaldi A N S
2dfac0be72
Merge branch 'feat/share-daily-checklist-to-wa' into 'development'
...
[FEAT/FE] Share Daily Checklist
See merge request mbugroup/lti-web-client!428
2026-04-24 05:35:32 +00:00
ValdiANS
afe0d2161d
feat: implement share daily checklist
2026-04-24 12:00:06 +07:00
ValdiANS
68c13c48c7
fix: adjust PurchaseFilter type
2026-04-23 16:38:31 +07:00
ValdiANS
b9a1e94a29
fix: set timeout to 30s
2026-04-23 16:38:16 +07:00
ValdiANS
d8c6a90c55
feat: add excludeKeysFromUrl to useTableFilter parameters
2026-04-23 16:38:02 +07:00
ValdiANS
4d01ad7d1d
fix: hide phase selection, abk assignment, and activity checklist form when kandang is empty
2026-04-23 16:22:05 +07:00
ValdiANS
c487e7f53e
fix: persist purchase table and set initial value to PurchaseFilterModal
2026-04-23 16:21:45 +07:00
ValdiANS
a316120a78
fix: add total selected items text to reject/approve button
2026-04-23 16:08:39 +07:00
ValdiANS
9af0537587
fix: change vendor column label to "Uraian"
2026-04-23 16:07:21 +07:00
ValdiANS
f668bcecb8
fix: change "Kembali" button behavior from link to button
2026-04-23 16:06:48 +07:00
Adnan Zahir
6b95edfb72
Merge branch 'development' into 'production'
...
Development
See merge request mbugroup/lti-web-client!427
2026-04-23 12:38:36 +07:00
Rivaldi A N S
a12b09eb5f
Merge branch 'feat/expense-export' into 'development'
...
[FEAT/FE] Expense Export
See merge request mbugroup/lti-web-client!426
2026-04-23 03:06:07 +00:00
ValdiANS
cfb96c45c9
fix: uncomment pre-commit
2026-04-23 09:55:00 +07:00
ValdiANS
747b0f9c2c
feat: implement export all in expense and report expense
2026-04-23 09:54:20 +07:00
Adnan Zahir
ee2f530d81
Merge branch 'codex/filter-improment' into 'development'
...
feat: filter improvement
See merge request mbugroup/lti-web-client!425
2026-04-23 00:19:16 +07:00
Adnan Zahir
617124efe4
feat: filter improvement
2026-04-23 00:18:10 +07:00
Rivaldi A N S
c0337f4d67
Merge branch 'fix/marketing-export' into 'development'
...
[FIX/FE] Marketing Export
See merge request mbugroup/lti-web-client!424
2026-04-22 16:34:37 +00:00
ValdiANS
e5dcca3408
fix: adjust MarketingApi.exportToExcel method
2026-04-22 23:32:58 +07:00
Rivaldi A N S
f2b05856bb
Merge branch 'feat/purchase-export' into 'development'
...
[FEAT/FE] Purchase Export
See merge request mbugroup/lti-web-client!423
2026-04-22 16:21:33 +00:00
ValdiANS
5d6aaace86
feat: implement purchase export to excel
2026-04-22 23:20:31 +07:00
Rivaldi A N S
9dcb3d7269
Merge branch 'fix/daily-checklist-empty-kandang-flag' into 'development'
...
[FIX/FE] Daily Checklist Empty Kandang Flag
See merge request mbugroup/lti-web-client!422
2026-04-22 15:58:01 +00:00
ValdiANS
e96bb46cfd
fix: add empty_kandang value in CATEGORY_LABELS
2026-04-22 22:50:38 +07:00
ValdiANS
37edc957d2
fix: implement empty kandang in daily checklist
2026-04-22 16:04:39 +07:00
Rivaldi A N S
60df577cc6
Merge branch 'fix/purchase-form' into 'development'
...
[FIX/FE] Purchase Form & Expense Filter
See merge request mbugroup/lti-web-client!421
2026-04-22 07:01:46 +00:00
ValdiANS
e0e2b0c406
fix: load more location and vendors and adjust reset handler
2026-04-22 13:58:25 +07:00
ValdiANS
244be32b59
fix: adjust ExpensesFilterSchema for location and vendor select input
2026-04-22 13:56:59 +07:00
ValdiANS
1080a26f93
fix: search in location select input
2026-04-22 13:55:29 +07:00
Adnan Zahir
4b62b02a13
Merge branch 'development' into 'production'
...
Development
See merge request mbugroup/lti-web-client!420
2026-04-22 13:12:50 +07:00
Adnan Zahir
c12bf92723
Merge branch 'schema/bulk-approve-marketings-expenses' into 'development'
...
Schema/bulk approve marketings expenses
See merge request mbugroup/lti-web-client!419
2026-04-22 11:49:45 +07:00
Adnan Zahir
5c5b49d0a9
fix: styling
2026-04-22 11:41:41 +07:00
Adnan Zahir
b7f886b51e
fix: mismatch dto marketings
2026-04-22 11:41:09 +07:00
Rivaldi A N S
587266e23d
Merge branch 'feat/progress-input-export' into 'development'
...
[FEAT/FE] Progress Input Exporet
See merge request mbugroup/lti-web-client!418
2026-04-22 04:09:21 +00:00
ValdiANS
9293b6321f
feat: implement purchase export progress input
2026-04-22 11:06:34 +07:00
ValdiANS
ddfd1206a7
feat: implement recording export progress input
2026-04-22 11:06:15 +07:00
ValdiANS
75910960c5
feat: implement marketing export progress input
2026-04-22 11:06:03 +07:00
ValdiANS
aae633edee
feat: implement expense export progress input
2026-04-22 11:05:54 +07:00
Adnan Zahir
f129329d52
Merge branch 'schema/bulk-approve-marketings-expenses' into 'development'
...
Schema/bulk approve marketings expenses
See merge request mbugroup/lti-web-client!417
2026-04-22 10:36:38 +07:00
Adnan Zahir
2afcc5d1c9
fix: styling
2026-04-22 10:36:03 +07:00
Adnan Zahir
7f578c5d03
fix: bulkApprovals method
2026-04-22 10:34:59 +07:00
Adnan Zahir
180b129550
Merge branch 'schema/bulk-approve-marketings-expenses' into 'development'
...
fix: schema update for bulk approve
See merge request mbugroup/lti-web-client!416
2026-04-22 10:14:25 +07:00
Adnan Zahir
8b2277c8c3
Merge branch 'development' into 'schema/bulk-approve-marketings-expenses'
...
# Conflicts:
# src/services/api/expense.ts
2026-04-22 10:14:17 +07:00
Adnan Zahir
68f4562395
fix: schema update for bulk approve
2026-04-22 10:10:10 +07:00
Rivaldi A N S
c374a4a4e9
Merge branch 'fix/daily-checklist' into 'development'
...
[FIX/FE] Daily Checklist
See merge request mbugroup/lti-web-client!415
2026-04-22 02:41:14 +00:00
ValdiANS
bda66381b8
fix: remove conditional rendering for delete button
2026-04-22 09:38:56 +07:00
Rivaldi A N S
28adeee7bd
Merge branch 'feat/bulk-approve-expense' into 'development'
...
[FEAT/FE] Bulk Approve Expense
See merge request mbugroup/lti-web-client!414
2026-04-21 18:16:08 +00:00
ValdiANS
727ac8ccdb
feat: implement bulk approval in expense
2026-04-22 01:14:16 +07:00
Rivaldi A N S
b77a8ef56f
Merge branch 'feat/bulk-approve-sales-order' into 'development'
...
[FEAT/FE] Bulk Approve Sales Order
See merge request mbugroup/lti-web-client!413
2026-04-21 17:12:12 +00:00
ValdiANS
50e0ccd9e4
feat: implement bulk approval for SO DO
2026-04-22 00:10:22 +07:00
Rivaldi A N S
e43a25307f
Merge branch 'fix/project-flock' into 'development'
...
[FIX/FE] Project Flock
See merge request mbugroup/lti-web-client!412
2026-04-21 09:01:14 +00:00
ValdiANS
db4750217e
feat: create TableFilterStore type
2026-04-21 15:57:35 +07:00
ValdiANS
19793cdcd4
feat: create useTableFilterStore
2026-04-21 15:57:26 +07:00
ValdiANS
15bddc43e2
fix: implement persist to storage in useTableFilter
2026-04-21 15:57:15 +07:00
ValdiANS
3b7c7bb13f
fix: persist table filter
2026-04-21 15:52:36 +07:00
ValdiANS
633cece581
fix: use session storage for useUiStore
2026-04-21 13:30:51 +07:00
ValdiANS
e455d203cc
fix: set searchKey to 'search' in useSelect
2026-04-21 13:30:34 +07:00
ValdiANS
d2a5229282
fix: set fallback value for searchKey in url search params
2026-04-21 13:20:49 +07:00
Rivaldi A N S
2391d6ceeb
Merge branch 'feat/daily-checklist-bulk-actions' into 'development'
...
[FEAT/FE] Daily Checklist Bulk Actions
See merge request mbugroup/lti-web-client!411
2026-04-20 09:22:17 +00:00
ValdiANS
4bb57ed0a0
feat: create bulkApprove and bulkReject method
2026-04-20 16:21:28 +07:00
ValdiANS
5bf3d32636
feat: implement bulk approve & reject
2026-04-20 16:21:17 +07:00
Adnan Zahir
12a50c6100
Merge branch 'development' into 'production'
...
Development
See merge request mbugroup/lti-web-client!410
2026-04-20 08:24:51 +07:00
Rivaldi A N S
c5a0cfe118
Merge branch 'fix/marketing-report' into 'development'
...
[FIX/FE] Marketing Report
See merge request mbugroup/lti-web-client!409
2026-04-19 18:15:30 +00:00
ValdiANS
898bbd57ec
fix: pass page and pageSize to Table component
2026-04-20 01:14:10 +07:00
ValdiANS
5b5113de6e
fix: add page and pageSize
2026-04-20 01:13:51 +07:00
ValdiANS
267a6f37cc
chore: remove unnecessary code
2026-04-20 01:13:32 +07:00
Rivaldi A N S
7d4898c266
Merge branch 'feat/depreciation-report' into 'development'
...
[FEAT/FE] Depreciation Report
See merge request mbugroup/lti-web-client!408
2026-04-19 17:31:02 +00:00
ValdiANS
f49822d03d
fix: adjust ReportDepreciation type
2026-04-20 00:30:07 +07:00
ValdiANS
aa4da686c6
fix: move and rename report to expense-report.ts
2026-04-20 00:29:55 +07:00
ValdiANS
5a668c469f
chore: update ReportExpenseApi import path
2026-04-20 00:29:34 +07:00
ValdiANS
2ca733de97
fix: adjust ReportDepreciationTab content
2026-04-20 00:29:15 +07:00
ValdiANS
8afc1a6381
feat: create ReportDepreciationFilterModal component
2026-04-20 00:28:41 +07:00
ValdiANS
d47142153e
Merge branch 'development' into feat/depreciation-report
2026-04-19 21:57:46 +07:00
Adnan Zahir
09537d84d0
Merge branch 'development' into 'production'
...
Development
See merge request mbugroup/lti-web-client!407
2026-04-18 09:41:09 +07:00
Rivaldi A N S
188385b638
Merge branch 'fix/recording-export' into 'development'
...
[FIX/FE] Recording Export
See merge request mbugroup/lti-web-client!406
2026-04-17 07:34:52 +00:00
ValdiANS
08aa79a06b
fix: adjust limit to get all recording data in exportToExcel method
2026-04-17 14:07:52 +07:00
ValdiANS
16741aaa46
feat: create ReportDepreciation and ReportDepreciationSearchParams type
2026-04-17 13:27:21 +07:00
ValdiANS
93083c7d2a
fix: create ReportDepreciationTab component
2026-04-17 13:27:05 +07:00
ValdiANS
8333b5138a
fix: adjust ReportExpenseSkeleton and ReportSkeletonColumn type
2026-04-17 13:25:18 +07:00
ValdiANS
c0ee2013f3
feat: add Laporan Depresiasi tab
2026-04-17 13:24:26 +07:00
Rivaldi A N S
022656cd80
Merge branch 'fix/daily-checklist-kandang' into 'development'
...
[FIX/FE] Daily Checklist Master Data Kandang
See merge request mbugroup/lti-web-client!405
2026-04-16 06:44:51 +00:00
ValdiANS
9d3c22fcf3
chore: remove unnecessary code
2026-04-16 13:42:52 +07:00
Rivaldi A N S
11353809f0
Merge branch 'feat/expense-enhancement' into 'development'
...
[FEAT/FE] Expense Enhancement
See merge request mbugroup/lti-web-client!404
2026-04-15 09:43:06 +00:00
ValdiANS
6463b7a572
fix: set resetPage to false as default value in updateFilter function
2026-04-15 16:39:22 +07:00
ValdiANS
7a5ee2aca1
feat: implement return to url query param
2026-04-15 16:38:56 +07:00
ValdiANS
5e907d7e53
feat: create expense navigation helper function
2026-04-15 16:35:35 +07:00
Adnan Zahir
71edc9c68a
Merge branch 'fix/recording' into 'development'
...
[FIX][FE]: adjust value query param get product warehouses
See merge request mbugroup/lti-web-client!403
2026-04-14 15:15:35 +07:00
MacBook Air M1
2a33fdbbbe
adjust value query param get product warehouses
2026-04-14 15:05:08 +07:00
Adnan Zahir
178c659b58
Merge branch 'codex/uniformity-week-calculation' into 'development'
...
codex/fix: uniformity week calculation
See merge request mbugroup/lti-web-client!402
2026-04-14 14:33:04 +07:00
Rivaldi A N S
c1d6436583
Merge branch 'fix/adjustment-issue-14-apr-26' into 'development'
...
[FIX/FE] Fix Unnecessary Error Label (OptionType) on Purchase Approval Form (Purchase)
See merge request mbugroup/lti-web-client!401
2026-04-14 06:59:11 +00:00
rstubryan
8dc62453bd
fix(FE-form-object-missmatch): Refactor purchase item handling in
...
approval forms and schemas
2026-04-14 13:31:40 +07:00
Adnan Zahir
1aa2ca9b31
Merge branch 'development' into 'production'
...
refactor(FE-add-param): Update MarketingFilter to refine API calls and
See merge request mbugroup/lti-web-client!400
2026-04-14 13:20:27 +07:00
Adnan Zahir
244d800874
codex/fix: uniformity week calculation
2026-04-14 13:10:53 +07:00
Rivaldi A N S
52dd1613bb
Merge branch 'fix/expense-report-filter' into 'development'
...
[FIX/FE] Expense Report Filter
See merge request mbugroup/lti-web-client!399
2026-04-13 09:32:29 +00:00
ValdiANS
57ea81fdf2
fix: change kandang_id to project_flock_kandang_id in report expense params
2026-04-13 16:30:57 +07:00
Rivaldi A N S
90742604cb
Merge branch 'fix/expense-realization-detail' into 'development'
...
[FIX/FE] Expense Realization Detail
See merge request mbugroup/lti-web-client!398
2026-04-13 08:41:42 +00:00
ValdiANS
4b8853b766
fix: implement lazy loading in nontstock select input
2026-04-13 15:31:04 +07:00
ValdiANS
7168270527
fix: use isNaN to check valid kandang ID
2026-04-13 15:28:25 +07:00
Rivaldi A N S
47b186e195
Merge branch 'fix/adjustment-issue-13-apr-26' into 'development'
...
[FIX/FE] Adjustment Endpoint Kandang on Dashboard Filter (Project Flock Kandang) and Add Param has_marketing on Marketing Filter
See merge request mbugroup/lti-web-client!397
2026-04-13 07:58:19 +00:00
rstubryan
ff39514b78
refactor(FE-endpoint-path): Fix customer API integration in
...
MarketingFilter
2026-04-13 14:55:00 +07:00
rstubryan
f97b6fc218
Merge branch 'development' of gitlab.com:mbugroup/lti-web-client into fix/adjustment-issue-13-apr-26
2026-04-13 14:38:54 +07:00
rstubryan
62dc8235d4
refactor(FE-change-api): Refactor Kandang input handling in
...
DashboardProduction
2026-04-13 14:37:23 +07:00
rstubryan
73d05d6b4b
refactor(FE-add-param): Update MarketingFilter to refine API calls and
...
options handling
2026-04-13 14:23:21 +07:00
Adnan Zahir
c87107b4ee
Merge branch 'development' into 'production'
...
refactor(FE-load-more-option): Add infinite scroll to location and
See merge request mbugroup/lti-web-client!396
2026-04-13 14:08:57 +07:00
Rivaldi A N S
3c44906a20
Merge branch 'fix/production-result-report-filter' into 'development'
...
[FIX/FE] Production Result Report
See merge request mbugroup/lti-web-client!395
2026-04-13 05:24:07 +00:00
ValdiANS
e4b1deecdc
fix: render one project flock kandang if kandang is selected
2026-04-13 12:19:38 +07:00
ValdiANS
12afa88f2c
fix: make kandang_id optional
2026-04-13 12:19:08 +07:00
Adnan Zahir
0527155bb9
Merge branch 'fix/adjustment-issue-13-apr-26' into 'development'
...
[FIX/FE] Adjustment Load More Data (useSelect Biaya), Marketing Customer Issue and Remove Fetch Kandang at Dashboard
See merge request mbugroup/lti-web-client!394
2026-04-13 12:13:11 +07:00
rstubryan
34a45d084b
refactor(FE-modal-close-when-reset): Close filter modal when resetting
...
dashboard filters
2026-04-13 11:57:31 +07:00
rstubryan
9de897dfbd
Merge branch 'development' of gitlab.com:mbugroup/lti-web-client into dev/restu
2026-04-13 11:51:01 +07:00
rstubryan
907f6664e1
refactor(FE-remove-kandang-fetch): Refactor Kandang select logic to use
...
derived options
2026-04-13 11:48:32 +07:00
rstubryan
3ad04e5bac
refactor(FE-remove-filter): Make select inputs clearable in
...
DashboardProduction and remove filter from kandang
2026-04-13 11:33:40 +07:00
ValdiANS
4649dfde89
Merge branch 'development' into fix/expense-report-filter
2026-04-13 11:21:03 +07:00
Adnan Zahir
55b13988bf
Merge branch 'development' into 'production'
...
Development
See merge request mbugroup/lti-web-client!393
2026-04-13 11:17:24 +07:00
rstubryan
b580a01bdc
refactor(FE-formik-usage): Refactor MarketingFilter form values and
...
handlers
2026-04-13 11:13:39 +07:00
Rivaldi A N S
15ec6c3b9c
Merge branch 'fix/report-default-filter-value' into 'development'
...
[FIX/FE] Report Default Filter Value
See merge request mbugroup/lti-web-client!392
2026-04-13 04:02:06 +00:00
ValdiANS
8b970aeb64
fix: open filter modal when component is mounted
2026-04-13 11:01:00 +07:00
ValdiANS
de6fd2367e
fix: set filter default value
2026-04-13 11:00:02 +07:00
ValdiANS
3fedbc7ffb
fix: adjust showEditButton condition
2026-04-13 10:58:33 +07:00
ValdiANS
9e297cc0a4
chore: remove unnecessary code
2026-04-13 10:58:23 +07:00
rstubryan
6ff3a715e0
refactor(FE-load-more-option): Add infinite scroll to location and
...
supplier dropdowns
2026-04-13 10:46:51 +07:00
ValdiANS
cd4cef883e
fix: change kandang filter to project flock kandang with period
2026-04-13 10:08:09 +07:00
Rivaldi A N S
d853781c17
Merge branch 'fix/laporan-rekapitulasi-pembelian-per-supplier' into 'development'
...
[FIX/FE] Laporan Rekapitulasi Pembelian Per Supplier
See merge request mbugroup/lti-web-client!391
2026-04-13 02:48:37 +00:00
ValdiANS
8faed2e561
fix: implement lazy loading in select input in filter modal
2026-04-13 09:44:38 +07:00
Rivaldi A N S
8aeef46ee3
Merge branch 'fix/closing-kandang-button' into 'development'
...
[FIX/FE] Closing Kandang Button
See merge request mbugroup/lti-web-client!390
2026-04-13 02:36:14 +00:00
ValdiANS
c9000c1e2c
fix: disable button if kandang is selected
2026-04-13 09:33:41 +07:00
ValdiANS
bb3541090a
fix: pass kandang ID ClosingKandangList component
2026-04-13 09:33:23 +07:00
ValdiANS
ad0e617ed0
fix: render button if href is provided and is disabled
2026-04-13 09:33:01 +07:00
Rivaldi A N S
73ef1c2ece
Merge branch 'fix/daily-sales-report' into 'development'
...
[FIX/FE] Daily Sales Report
See merge request mbugroup/lti-web-client!389
2026-04-12 14:37:55 +00:00
ValdiANS
9cf0d15c33
fix: implement lazy loading for select input
2026-04-12 21:36:40 +07:00
Adnan Zahir
19033278b3
Merge branch 'development' into 'production'
...
Development
See merge request mbugroup/lti-web-client!388
2026-04-11 14:13:02 +07:00
Rivaldi A N S
c66f7b1cbf
Merge branch 'fix/hpp-report' into 'development'
...
[FIX/FE] HPP Report
See merge request mbugroup/lti-web-client!387
2026-04-10 10:08:27 +00:00
ValdiANS
17ebc31f00
fix: implement infinite scroll in select input
2026-04-10 17:07:07 +07:00
Rivaldi A N S
ce0b4d744c
Merge branch 'fix/marketing-delivery-order' into 'development'
...
[FIX/FE] Marketing Delivery Order
See merge request mbugroup/lti-web-client!386
2026-04-10 09:15:15 +00:00
ValdiANS
f6f3290743
fix: add weight_per_convertion to BaseDelivery
2026-04-10 16:13:02 +07:00
ValdiANS
31a4dec8a3
fix: get weight_per_convertion from delivery order first
2026-04-10 16:12:47 +07:00
ValdiANS
fbb6f87368
fix: add weight_per_convertion to payload when creating/updating delivery order
2026-04-10 16:12:35 +07:00
Rivaldi A N S
d88d71fb16
Merge branch 'fix/marketing-delivery-order' into 'development'
...
[FIX/FE] Marketing Delivery Order
See merge request mbugroup/lti-web-client!385
2026-04-10 08:13:27 +00:00
ValdiANS
570024c2e6
chore: prettier format
2026-04-10 15:08:13 +07:00
ValdiANS
70556d04ba
fix: calculate unit price by weight
2026-04-10 15:07:39 +07:00
ValdiANS
00434002a7
fix: add harga satuan per peti
2026-04-10 15:06:57 +07:00
ValdiANS
bcb1e0b5b6
fix: add (Kg) label to Total Harga Satuan
2026-04-10 15:06:38 +07:00
ValdiANS
03a6aabf1f
fix: adjust initialPricePerConvertion value
2026-04-10 15:06:06 +07:00
ValdiANS
47adaa4f92
fix: return total_peti, weight_per_convertion, and price_per_convertion in DeliveryProductToFieldValues function
2026-04-10 15:02:48 +07:00
Rivaldi A N S
f2cdbd497a
Merge branch 'fix/marketing-delivery-order' into 'development'
...
[FIX/FE] Marketing Delivery Order
See merge request mbugroup/lti-web-client!384
2026-04-09 09:38:58 +00:00
ValdiANS
4ffea739a9
fix: comment edit button in renderSalesOrderContent
2026-04-09 16:37:35 +07:00
ValdiANS
bf5591d61d
fix: prioritize DO data if delivery orders exist
2026-04-09 16:36:59 +07:00
Rivaldi A N S
a725ae4891
Merge branch 'fix/uniformity-form' into 'development'
...
[FIX/FE] Uniformity Form
See merge request mbugroup/lti-web-client!383
2026-04-09 08:45:55 +00:00
Adnan Zahir
4a6ac8a57d
Merge branch 'development' into 'production'
...
Development
See merge request mbugroup/lti-web-client!382
2026-04-09 15:36:40 +07:00
ValdiANS
f5d3fb3b9d
uncomment pre-commit
2026-04-09 15:14:07 +07:00
ValdiANS
4a6c443003
fix: disable uniformity form uploading uniformity file
2026-04-09 15:13:16 +07:00
Rivaldi A N S
09f4af3ece
Merge branch 'feat/recording-export' into 'development'
...
[FEAT/FE] Recording
See merge request mbugroup/lti-web-client!381
2026-04-09 07:24:57 +00:00
ValdiANS
62d250109b
feat: add responseType to axios config
2026-04-09 14:15:29 +07:00
ValdiANS
e50f4dbddb
feat: add exportToExcel method to RecordingService
2026-04-09 14:15:12 +07:00
ValdiANS
c898154b48
feat: add export button
2026-04-09 14:14:50 +07:00
Rivaldi A N S
acb02c9bdc
Merge branch 'fix/marketing-delivery-order' into 'development'
...
[FIX/FE] Marketing Delivery Order
See merge request mbugroup/lti-web-client!380
2026-04-09 04:26:47 +00:00
ValdiANS
986f429ea9
fix: add edit button to delivery item
2026-04-09 11:21:20 +07:00
ValdiANS
1dafb0d365
fix: adjust DeliveryProductToFieldValues and mergeSOwithDO return values
2026-04-09 11:09:04 +07:00
ValdiANS
095b1c5850
fix: adjust selected delivery product priority order
2026-04-09 11:04:57 +07:00
Rivaldi A N S
4297502c55
Merge branch 'fix/purchase-product-receive-confirmation' into 'development'
...
[FIX/FE] Purchase Product Receive Confirmation
See merge request mbugroup/lti-web-client!379
2026-04-08 08:37:44 +00:00
ValdiANS
726065da51
fix: make vehicle_number and transport_per_item required if expedition_vendor exist
2026-04-08 15:32:01 +07:00
ValdiANS
6c03e42006
fix: remove transport_per_item and vehicle_number value and disable them if expedition vendor is empty
2026-04-08 15:31:31 +07:00
ValdiANS
5c39e900f3
chore: remove unnecessary code
2026-04-08 15:30:37 +07:00
ValdiANS
68c1655824
fix: adjust unit_price and price_per_qty value to match the SalesOrderProductForm
2026-04-08 13:57:09 +07:00
Adnan Zahir
2b9847e1a9
Merge branch 'development' into 'production'
...
Development
See merge request mbugroup/lti-web-client!378
2026-04-08 13:39:17 +07:00
Rivaldi A N S
0ef8c06e41
Merge branch 'fix/adjustment-issue-8-apr-26' into 'development'
...
[FIX/FE] Adjustment Filter Default Value Set Range to This Month
See merge request mbugroup/lti-web-client!377
2026-04-08 04:32:46 +00:00
rstubryan
68b25332b1
refactor(FE-set-to-end): Fix date range to include the end of the month
2026-04-08 11:29:51 +07:00
rstubryan
b402a06706
feat(FE-moment-default-range): Set default date range to current month
...
in Dashboard component
2026-04-08 10:15:33 +07:00
Rivaldi A N S
7df2fad959
Merge branch 'fix/adjustment-dashboard-modal' into 'development'
...
[FIX/FE] Adjustment Dashboard Modal (Open Filter Issue)
See merge request mbugroup/lti-web-client!376
2026-04-08 02:59:37 +00:00
rstubryan
0b52fff5f5
refactor(FE-dashboard-modal): Refactor dashboard production data
...
fetching logic
2026-04-08 09:54:40 +07:00
Adnan Zahir
167769a711
Merge branch 'development' into 'production'
...
Development
See merge request mbugroup/lti-web-client!375
2026-04-07 22:56:27 +07:00
Rivaldi A N S
e251ab9eb4
Merge branch 'fix/marketing' into 'development'
...
[FIX/FE] Marketing - Sales Order Form
See merge request mbugroup/lti-web-client!374
2026-04-07 10:44:49 +00:00
ValdiANS
9f0fbcf041
fix: make price_per_qty calculation to price per kg and make unit_price calculation to price per egg (if category is TELUR and convertion unit QTY)
2026-04-07 17:24:19 +07:00
ValdiANS
05fbae680f
fix: reorder input for price_per_qty and unit_price
2026-04-07 17:23:23 +07:00
ValdiANS
444c475cb4
fix: remove formattedUnitPrice
2026-04-07 17:22:46 +07:00
ValdiANS
ef1ce2c78c
fix: remove roundPrice, update unit price calculation in calculateTelurPeti
2026-04-07 16:59:35 +07:00
ValdiANS
429ff58bfd
chore: remove unnecessary code
2026-04-07 16:57:01 +07:00
ValdiANS
8961004000
fix: set initialPricePerConvertion to unit_price
2026-04-07 16:55:39 +07:00
ValdiANS
2dc3bcf9f0
fix: make convertion unit support QTY when hitting update/create API
2026-04-07 16:55:23 +07:00
Adnan Zahir
417dbba458
Merge branch 'development' into 'production'
...
Development
See merge request mbugroup/lti-web-client!373
2026-04-07 16:53:36 +07:00
Rivaldi A N S
9c31705865
Merge branch 'fix/adjustment-recording-form' into 'development'
...
[FIX/FE] Adjustment Zero Restriction on Jumlah Pakai (>0. value) and Add Refetch (Invalidate) at Recording Detail Page
See merge request mbugroup/lti-web-client!372
2026-04-07 09:13:40 +00:00
rstubryan
b89730ab68
feat(FE-invalidate-mutation): Refactor SWR keys for recording detail
...
pages and add cache invalidation
2026-04-07 16:06:46 +07:00
rstubryan
6e34eede4b
refactor(FE-jumlah-pakai-zero-restriction): Update validation message
...
for qty in StockObjectSchema
2026-04-07 16:01:59 +07:00
Rivaldi A N S
ffd5e70947
Merge branch 'fix/adjustment-recording-form' into 'development'
...
[FIX/FE] Adjustment Comma's value for Jumlah Pakai Field and Commented Out Param at (location_id) Egg Product (Product Warehouse) Endpoint
See merge request mbugroup/lti-web-client!371
2026-04-07 08:32:54 +00:00
rstubryan
2f89c6f216
refactor(FE-unused-param): Comment out unused eggProductsLocationId
...
state and references
2026-04-07 15:26:25 +07:00
rstubryan
ebf966228b
refactor(FE-decimal-jumlah-pakai): Increase decimal scale for stock
...
quantity input to 3
2026-04-07 15:23:31 +07:00
Rivaldi A N S
ebe1d77c72
Merge branch 'fix/marketing' into 'development'
...
[FIX/FE] Marketing
See merge request mbugroup/lti-web-client!370
2026-04-07 06:12:03 +00:00
ValdiANS
922a93414f
fix: adjust unit price placeholder
2026-04-07 13:11:14 +07:00
Rivaldi A N S
854a1e7c4c
Merge branch 'fix/recording' into 'development'
...
[FIX/FE] Recording
See merge request mbugroup/lti-web-client!369
2026-04-07 04:55:57 +00:00
ValdiANS
129a3fda44
fix: memoized formattedSuccessRawData and formattedErrorRawData
2026-04-07 11:54:00 +07:00
ValdiANS
981b48acc0
fix: check deep equality
2026-04-07 11:53:34 +07:00
Adnan Zahir
dd5bbf0ac6
Merge branch 'codex/sales-at-farm-level' into 'development'
...
codex/fix: invisible depletion and egg <= 0
See merge request mbugroup/lti-web-client!368
2026-04-06 22:32:46 +07:00
Adnan Zahir
8872b283ac
codex/fix: invisible depletion and egg <= 0
2026-04-06 22:28:39 +07:00
Adnan Zahir
860c9dec22
Merge branch 'codex/sales-at-farm-level' into 'development'
...
Codex/sales at farm level
See merge request mbugroup/lti-web-client!367
2026-04-04 10:08:36 +07:00
Adnan Zahir
0cd6c9bd2f
Merge branch 'production' into development
2026-04-04 09:59:36 +07:00
Adnan Zahir
107d412c10
formatting
2026-04-04 09:57:01 +07:00
Adnan Zahir
c6d8533190
codex/fix: inconsistent stock options and availability
2026-04-04 09:53:10 +07:00
Adnan Zahir
ae90d55f81
Merge branch 'hotfix/bug-reported-by-user' into 'production'
...
[HOTFIX/FE] Adjustment
See merge request mbugroup/lti-web-client!365
2026-04-02 14:37:14 +07:00
ValdiANS
c155717459
fix: use correct address and logo
2026-04-02 11:44:08 +07:00
ValdiANS
d74de4b2d9
fix: use correct address
2026-04-02 11:44:00 +07:00
ValdiANS
529ba21f47
feat: create PurchaseFilter type
2026-04-02 11:41:02 +07:00
ValdiANS
449c2030fe
feat: add filter modal
2026-04-02 11:40:53 +07:00
ValdiANS
679740972f
feat: create PurchaseFilterModal component
2026-04-02 11:40:43 +07:00
ValdiANS
57b8326fdf
fix: change from parseInt to parseFloat
2026-04-02 11:32:09 +07:00
ValdiANS
e26b5127c5
fix: parse to float numberFormatValues.value
2026-04-02 11:28:10 +07:00
Rivaldi A N S
1a4a1e8e56
Merge branch 'fix/purchase-pdf-logo' into 'development'
...
[FIX/FE] Purchase PDF Logo
See merge request mbugroup/lti-web-client!364
2026-04-02 04:01:59 +00:00
ValdiANS
10d1f05aa5
fix: use correct address and logo
2026-04-02 11:00:17 +07:00
ValdiANS
e4b6238771
fix: use correct address
2026-04-02 11:00:08 +07:00
Rivaldi A N S
fc89922ed1
Merge branch 'fix/purchasing-filter' into 'development'
...
[FIX/FE] Purchase Filter
See merge request mbugroup/lti-web-client!363
2026-04-02 03:00:15 +00:00
ValdiANS
25b5165249
feat: create PurchaseFilter type
2026-04-02 09:57:48 +07:00
ValdiANS
cae19d905b
feat: add filter modal
2026-04-02 09:57:40 +07:00
ValdiANS
c040c0e9bb
feat: create PurchaseFilterModal component
2026-04-02 09:51:22 +07:00
Rivaldi A N S
b3bd7563fa
Merge branch 'fix/master-data-product' into 'development'
...
[FIX/FE] Master Data Product
See merge request mbugroup/lti-web-client!362
2026-04-01 09:13:34 +00:00
ValdiANS
edf21fbfc4
fix: change from parseInt to parseFloat
2026-04-01 16:13:13 +07:00
ValdiANS
65f31f8340
fix: parse to float numberFormatValues.value
2026-04-01 16:13:01 +07:00
Adnan Zahir
772087bacd
Merge branch 'codex/sales-at-farm-level' into 'development'
...
codex/fix: show farm stock usage on closing page
See merge request mbugroup/lti-web-client!361
2026-04-01 12:33:55 +07:00
Adnan Zahir
f302bcdb4b
codex/fix: show farm stock usage on closing page
2026-04-01 12:31:16 +07:00
Adnan Zahir
b68bcc77f5
Merge branch 'codex/sales-at-farm-level' into 'development'
...
codex/fix: purchase receivement error and recording doesn't show depletion/egg
See merge request mbugroup/lti-web-client!360
2026-04-01 11:10:29 +07:00
Adnan Zahir
3d7a2073b0
formatting
2026-04-01 11:07:05 +07:00
Adnan Zahir
8b1546a305
codex/fix: purchase receivement error and recording doesn't show depletion/egg
2026-04-01 11:03:56 +07:00
Adnan Zahir
fa3d0a1179
Merge branch 'codex/sales-at-farm-level' into 'development'
...
codex: initiated changes (farm-level warehouse stock manipulation on recording and sales)
See merge request mbugroup/lti-web-client!359
2026-04-01 10:27:42 +07:00
Adnan Zahir
ffcf422cb5
Merge branch 'development' into 'production'
...
Development
See merge request mbugroup/lti-web-client!358
2026-04-01 10:15:20 +07:00
Adnan Zahir
8d92da75cf
codex: initiated changes
2026-04-01 10:14:05 +07:00
Rivaldi A N S
6b29406307
Merge branch 'fix/purchase-received-product-default-value' into 'development'
...
[FIX/FE] Purchase
See merge request mbugroup/lti-web-client!357
2026-03-30 07:42:32 +00:00
ValdiANS
4f3e304b2b
fix: set received_qty default value to sub_qty
2026-03-30 14:40:26 +07:00
Adnan Zahir
18aff48dc2
Merge branch 'development' into 'production'
...
Development
See merge request mbugroup/lti-web-client!356
2026-03-27 15:39:56 +07:00
Rivaldi A N S
7bee13124d
Merge branch 'fix/list-daily-checklist' into 'development'
...
[FIX/FE] List Daily Checklist
See merge request mbugroup/lti-web-client!355
2026-03-27 07:42:04 +00:00
ValdiANS
f5d9dcbdf6
fix: set DailyChecklist.kandang optional
2026-03-27 11:12:58 +07:00
Rivaldi A N S
04d22e55db
Merge branch 'fix/redirect-to-sso' into 'development'
...
[FIX/FE]: Redirect to SSO
See merge request mbugroup/lti-web-client!354
2026-03-26 09:21:09 +00:00
ValdiANS
8bf5a88edb
fix: do not redirect to SSO when the error response status is 401 and API url is refresh API
2026-03-26 16:19:55 +07:00
Rivaldi A N S
ee0c47b0a1
Merge branch 'fix/recording' into 'development'
...
[FIX/FE] Recording Form
See merge request mbugroup/lti-web-client!353
2026-03-17 17:14:28 +00:00
ValdiANS
93d4ff9339
fix: search stock product issue correctly
2026-03-18 00:13:18 +07:00
Adnan Zahir
aa52211b0a
Merge branch 'development' into 'production'
...
refactor(FE): Refactor to use `is_laying` instead of
See merge request mbugroup/lti-web-client!352
2026-03-17 13:38:35 +07:00
Rivaldi A N S
39cb38a23f
Merge branch 'hotfix/adjustment-recording-fifo-stock' into 'development'
...
[HOTFIX/FE] Adjustment FIFO Stock V2 (Stock Related Usage)
See merge request mbugroup/lti-web-client!351
2026-03-17 04:38:42 +00:00
rstubryan
c1087b37fb
chore(FE-prettier): Format code for better readability in inventory
...
tables
2026-03-16 11:02:25 +07:00
rstubryan
c4e27edd56
feat(FE): Add delete functionality to Inventory and Movement tables
2026-03-16 11:01:29 +07:00
rstubryan
b020f2b187
refactor(FE): Rename available_qty to transfer_available_qty
2026-03-16 10:51:02 +07:00
rstubryan
375de4c86c
refactor(FE): Remove unused dependency from useEffect in RecordingForm
2026-03-16 10:28:36 +07:00
rstubryan
8f361c4327
Merge branch 'development' of gitlab.com:mbugroup/lti-web-client into hotfix/adjustment-recording-fifo-stock
2026-03-16 10:10:16 +07:00
Rivaldi A N S
710be88794
Merge branch 'fix/inventory-adjustment' into 'development'
...
[FIX/FE] Inventory Adjustment
See merge request mbugroup/lti-web-client!350
2026-03-16 02:43:48 +00:00
ValdiANS
0f7a2bd796
fix: adjust formik schema for warehouse
2026-03-16 09:41:23 +07:00
ValdiANS
0c8a833e00
fix: add generic for OptionType type
2026-03-16 09:41:01 +07:00
Rivaldi A N S
0c42bfd70c
Merge branch 'fix/inventory-adjustment' into 'development'
...
[FIX/FE] Inventory Adjustment
See merge request mbugroup/lti-web-client!349
2026-03-14 08:43:04 +00:00
ValdiANS
85dee607e0
fix: get kandang options from project flock kandang instead of kandang master data
2026-03-14 15:42:01 +07:00
rstubryan
6c7e310e67
feat(FE): Add support for available_qty in MovementForm
2026-03-13 13:33:18 +07:00
ragilap
85f6677c2a
fixing recording filter form
2026-03-11 15:35:37 +07:00
rstubryan
811850857d
refactor(FE): Restrict stock and depletion edits based on permissions
2026-03-11 10:18:19 +07:00
rstubryan
5494cb0ff2
refactor(FE): Remove restriction check for locked rows and add
...
"isGrowingLocked" badge
2026-03-11 10:03:54 +07:00
rstubryan
11eeac3289
refactor(FE): Refactor payload creation to respect recording
...
restrictions
2026-03-11 09:56:14 +07:00
ragilap
1621f2ab7d
fixing disable field detail
2026-03-10 17:34:52 +07:00
ragilap
5540787154
implement transition recording
2026-03-10 17:05:42 +07:00
ragilap
1b499bc967
implement transition recording
2026-03-10 17:04:44 +07:00
rstubryan
44a5c51023
refactor(FE): Refactor recording restriction logic for clarity and
...
accuracy
2026-03-10 14:02:07 +07:00
rstubryan
aa13e989c1
feat(FE): Add week calculation utility and improve state resets
2026-03-10 11:40:10 +07:00
rstubryan
ebe7c367e7
refactor(FE): Refactor isLaying logic for clarity and reuse
2026-03-10 11:34:14 +07:00
rstubryan
2f085c287f
Merge branch 'development' of gitlab.com:mbugroup/lti-web-client into hotfix/adjustment-recording-fifo-stock
2026-03-10 11:13:56 +07:00
rstubryan
058f9f403d
refactor(FE): Improve delete handlers with success and error feedback
2026-03-10 11:13:46 +07:00
Rivaldi A N S
8b8b7be4b7
Merge branch 'feat/daily-checklist-master-data' into 'development'
...
[FIX/FE] Daily Checklist
See merge request mbugroup/lti-web-client!348
2026-03-09 10:15:55 +00:00
ValdiANS
efcecf4f66
fix: implement lazy loading in kandang select input
2026-03-09 17:14:35 +07:00
Rivaldi A N S
a6c63a7dcb
Merge branch 'feat/daily-checklist-master-data' into 'development'
...
[FIX/FE]: Daily Checklist Master Data Kandang
See merge request mbugroup/lti-web-client!347
2026-03-09 08:58:50 +00:00
ValdiANS
0263db9fae
fix: use DailyChecklistKandangApi instead of KandangApi
2026-03-09 15:55:48 +07:00
rstubryan
cc08e3af15
refactor(FE): Fix logical grouping in isLaying and isLayingCategory
...
checks
2026-03-09 15:04:58 +07:00
rstubryan
0929461ec5
refactor(FE): Improve transition and laying state handling in
...
RecordingForm
2026-03-09 15:03:42 +07:00
rstubryan
ace6633f79
Merge branch 'development' of gitlab.com:mbugroup/lti-web-client into hotfix/adjustment-recording-fifo-stock
2026-03-09 14:04:22 +07:00
rstubryan
f1a952ca6b
refactor(FE): Refactor getRecordingRestrictionInfo for better
...
readability
2026-03-09 14:01:29 +07:00
rstubryan
ed34a99117
refactor(FE): Refactor to use is_laying instead of
...
`project_flock_category`
2026-03-09 13:59:24 +07:00
Rivaldi A N S
4beaba1f15
Merge branch 'feat/daily-checklist-master-data' into 'development'
...
[FEAT/FE] Master Data Daily Checklist Kandang
See merge request mbugroup/lti-web-client!346
2026-03-09 06:49:31 +00:00
ValdiANS
8ea029efdd
Merge branch 'development' into feat/daily-checklist-master-data
2026-03-09 13:42:01 +07:00
ValdiANS
02e4dba288
feat(FE): implement lazy loading for kandang select input
2026-03-09 13:41:18 +07:00
ValdiANS
c42fdbf33d
chore(FE): remove unnecessary code
2026-03-09 13:40:58 +07:00
ValdiANS
2cfa8c046b
feat(FE): add onScroll prop to SelectPrimitive.Viewport
2026-03-09 13:40:47 +07:00
ValdiANS
30d5516161
fix: use DailyChecklistKandangApi instead of KandangApi
2026-03-09 12:47:12 +07:00
ValdiANS
f83abc91da
chore(FE): remove unncessary code
2026-03-09 12:30:49 +07:00
ValdiANS
918c51e83b
fix(FE): add kandang_group to BaseKandang and add group_id to CreateKandangPayload
2026-03-09 12:30:16 +07:00
ValdiANS
f1a4d9b648
feat(FE): create daily checklist kandang types
2026-03-09 12:29:52 +07:00
ValdiANS
29e33560f8
feat(FE): create daily checklist kandang API service
2026-03-09 12:29:36 +07:00
ValdiANS
fb9e863862
feat(FE): create MasterKandangContent component
2026-03-09 12:29:20 +07:00
ValdiANS
1b3e5f94f1
feat(FE): add Kandang Group input
2026-03-09 12:29:04 +07:00
ValdiANS
e1856926ea
feat(FE): add group to kandang form schema
2026-03-09 12:28:48 +07:00
ValdiANS
2b096099d3
feat: add kandang group column
2026-03-09 12:28:29 +07:00
rstubryan
ea25417e8d
Merge branch 'development' of gitlab.com:mbugroup/lti-web-client into hotfix/adjustment-recording-fifo-stock
2026-03-09 11:39:16 +07:00
kris
668abeca23
Merge branch 'development' into 'production'
...
ci: switch build images to AWS ECR Public
See merge request mbugroup/lti-web-client!345
2026-03-09 03:16:17 +00:00
M1 AIR
deabb1c3ee
Merge origin/production into development to resolve MR conflicts
2026-03-09 10:15:20 +07:00
M1 AIR
121c44070c
ci: switch build images to AWS ECR Public
2026-03-09 09:45:58 +07:00
ValdiANS
0dbad23cd5
feat(FE): implement options lazy loading by adding onLoadMore and isLoadingMore props
2026-03-09 09:31:05 +07:00
ValdiANS
b9a17f472b
feat: add daily checklist master data kandang permission in ROUTE_PERMISSIONS
2026-03-09 09:30:26 +07:00
ValdiANS
c07b245eeb
feat(FE): add Kandang submenu in Daily Checklist Master Data menu
2026-03-09 09:30:04 +07:00
ValdiANS
d7e32f8f5b
feat(FE): create Daily Checklist Master Data Kandang page
2026-03-09 09:29:22 +07:00
ValdiANS
698fe2e851
feat(FE): add pre-commit script
2026-03-09 09:28:45 +07:00
rstubryan
cdf0442a2b
refactor(FE): Add transition restrictions for recording operations
2026-03-09 09:04:14 +07:00
Adnan Zahir
422c7c9fb0
Merge branch 'development' into 'production'
...
refactor(FE): Refactor RowOptionsMenu to use PopoverButton and
See merge request mbugroup/lti-web-client!344
2026-03-09 06:38:03 +07:00
Adnan Zahir
3042b54577
Merge branch 'fix/product-select-include-all-param' into 'development'
...
fix: add include all param to adjustment stock products select
See merge request mbugroup/lti-web-client!343
2026-03-09 00:51:43 +07:00
Adnan Zahir
e5a686e5ee
Merge branch 'hotfix/adjustment-fifo-stock-ttl' into 'development'
...
[HOTFIX/FE] FIFO Stock Adjustment for TTL, Recording and Project Flock (Chickin)
See merge request mbugroup/lti-web-client!342
2026-03-09 00:50:11 +07:00
Adnan Zahir
37d5a6b675
fix: add include all param to adjustment stock products select
2026-03-09 00:49:39 +07:00
rstubryan
2ff32094ce
chore(FE): Fix inconsistent indentation in ChickLogsView and
...
RecordingForm
2026-03-08 22:13:26 +07:00
rstubryan
7207f1ba75
refactor(FE): Add isRecordingEditable check to detail actions
2026-03-08 22:12:29 +07:00
rstubryan
41d2e8737b
feat(FE): Add chickin delete functionality with modal confirmation
2026-03-08 21:54:55 +07:00
rstubryan
b2016314f5
refactor(FE): Restrict edit and delete actions based on recording status
2026-03-08 16:40:36 +07:00
rstubryan
7366d6490c
refactor(FE): Validate transferToLayingId before fetching data
2026-03-08 16:34:59 +07:00
rstubryan
e5e9b517fd
refactor(FE): Update button visibility logic in TransferToLayingsTable
2026-03-08 16:17:20 +07:00
rstubryan
b6629b0bbb
refactor(FE): Set maxSourceQuantity in edit mode using existing data
2026-03-08 16:12:08 +07:00
rstubryan
bac6766fa2
refactor(FE): Refactor transfer logic to use maxSourceQuantity state
2026-03-08 16:06:13 +07:00
Rivaldi A N S
9389fa0354
Merge branch 'fix/cleanup-warning-and-adjust-form-field' into 'development'
...
[FIX/FE] Cleanup Warning and Refactoring All Form Field (No Warning on Linter)
See merge request mbugroup/lti-web-client!341
2026-03-06 04:47:39 +00:00
rstubryan
37bc7a85e5
refactor(FE): Add depletion product handling in inventory adjustment
...
forms
2026-03-06 10:52:59 +07:00
rstubryan
667eb41eb2
refactor(FE): Refactor toggle logic for clarity in useModal
2026-03-06 10:08:13 +07:00
rstubryan
e64b55e527
refactor(FE): Fix conditional call to onBackdropClick in Drawer
...
component
2026-03-06 10:00:25 +07:00
rstubryan
9710998dc6
refactor(FE): Handle null or undefined values in FinanceDetail component
2026-03-06 09:57:30 +07:00
rstubryan
ca0b216ba0
refactor(FE): Handle null transaction_type and fix useEffect dependency
2026-03-06 09:53:57 +07:00
rstubryan
9ff6f3a35d
refactor(FE): Refactor form components to improve state handling
2026-03-05 15:59:32 +07:00
rstubryan
333dd01f92
refactor(FE): Fix dependency array in useMemo for SalesClosingTable
2026-03-05 15:33:50 +07:00
rstubryan
75f765ee69
chore(FE): Add setTableState to useEffect dependency array
2026-03-05 15:05:17 +07:00
rstubryan
945bdb8b27
refactor(FE): Refactor formik field value setter in WarehousesTable
2026-03-05 15:02:00 +07:00
rstubryan
77eae32a3d
refactor(FE): Refactor Formik field updates to use setFieldValue
2026-03-05 15:00:20 +07:00
rstubryan
a5ebc6d1ae
refactor(FE): Fix dependency arrays and improve error handling in
...
purchase components
2026-03-05 14:17:42 +07:00
rstubryan
15c7452d7b
chore(FE): Fix missing dependency in useEffect hook
2026-03-05 14:15:41 +07:00
rstubryan
5dac900a1a
refactor(FE): Refactor date filter state management in UniformityTable
2026-03-05 14:11:58 +07:00
rstubryan
4b49cd18f5
refactor(FE): Refactor form handlers to use consistent formik utilities
2026-03-05 13:45:01 +07:00
rstubryan
a4cb4e202b
refactor(FE): Fix dependency arrays and refactor setFieldValue usage
2026-03-05 13:36:43 +07:00
rstubryan
4a69eef294
fix(FE): Add handler to open filter modal and trigger form validation
2026-03-05 12:03:54 +07:00
rstubryan
2de6636bbf
refactor(FE): Refactor tab actions to use memoized components
2026-03-05 11:59:27 +07:00
rstubryan
a7951b6c28
refactor(FE): Fix missing dependencies in UniformityTable effect hooks
2026-03-05 11:47:16 +07:00
rstubryan
03baba40a6
refactor(FE): Remove unused params argument from
...
generateReportExpensePDF
2026-03-05 11:41:43 +07:00
rstubryan
96ef6f8496
refactor(FE): Refactor tab actions into a memoized component
2026-03-05 11:40:32 +07:00
rstubryan
94ab48d3f6
refactor(FE): Refactor tab actions to use memoized component
2026-03-05 11:21:56 +07:00
rstubryan
ea88c3ce8e
refactor(FE): Refactor tab actions to use memoized component
2026-03-05 11:10:36 +07:00
rstubryan
267ef9d812
refactor(FE): Refactor CustomerPaymentTab to use filterParams instead of
...
formik values
2026-03-05 11:01:52 +07:00
rstubryan
b5fc1d4310
refactor(FE): Refactor tab actions to use memoized component
2026-03-05 10:57:13 +07:00
rstubryan
c98e7d8cb3
refactor(FE): Fix population check to ensure proper boolean evaluation
2026-03-05 10:24:39 +07:00
rstubryan
1acbc91cfe
refactor(FE): Reset dependent fields when location or project flock
...
changes
2026-03-05 10:19:30 +07:00
rstubryan
807041834b
refactor(FE): Refactor formik field updates to use destructured methods
2026-03-05 09:54:50 +07:00
rstubryan
4de21561b3
refactor(FE): Refactor delivery order value initialization logic
2026-03-05 09:41:25 +07:00
rstubryan
1938f6cbda
refactor(FE): Refactor DeliveryOrderProductTable to support delivery
...
order rendering
2026-03-04 17:13:30 +07:00
rstubryan
f4a522fc0c
refactor(FE): Refactor form field updates to use destructured Formik
...
methods
2026-03-04 16:48:21 +07:00
rstubryan
7ae04b3f3e
refactor(FE): Refactor DashboardProduction callbacks for memoization
2026-03-04 14:12:45 +07:00
rstubryan
b786acf71a
chore(FE): Add setTableState to useEffect dependency arrays
2026-03-04 14:11:17 +07:00
rstubryan
bb28ae8613
Merge branch 'development' of gitlab.com:mbugroup/lti-web-client into dev/restu
2026-03-04 11:59:06 +07:00
rstubryan
080592ff01
chore(FE): Remove unused variables and imports across components
2026-03-04 11:58:35 +07:00
Rivaldi A N S
6d41203a5e
Merge branch 'feat/global-search-store' into 'development'
...
[FEAT/FE] Add Global Search Store and Filter for Each Table Index (All Module)
See merge request mbugroup/lti-web-client!340
2026-03-04 04:44:27 +00:00
rstubryan
89d7d3ef91
refactor(FE): Format imports in PurchaseTable.tsx
2026-03-04 11:07:30 +07:00
rstubryan
18ebf75aa7
feat(FE): Integrate UI store and pathname handling in table components
2026-03-04 11:06:53 +07:00
rstubryan
6e7dfebacc
feat(FE): Integrate UI store for table state and search handling
2026-03-04 10:56:35 +07:00
rstubryan
4b93cb4589
feat(FE): Integrate UI store state with InventoryProductTable
2026-03-04 10:51:51 +07:00
rstubryan
58f1ab82c7
refactor(FE): Refactor long lines for readability in MovementTable
2026-03-04 10:45:15 +07:00
rstubryan
1fb9687142
feat(FE): Add filter functionality to inventory tables
2026-03-04 10:44:22 +07:00
rstubryan
4f6d71f1f4
refactor(FE): Refactor payload creation in
...
PurchaseOrderAcceptApprovalForm
2026-03-04 10:20:50 +07:00
rstubryan
d502ec707c
refactor(FE): Move error message above form actions in
...
InventoryAdjustmentForm
2026-03-04 09:36:37 +07:00
rstubryan
fa86f488e1
refactor(FE): Standardize search input placeholders to "Search"
2026-03-03 14:19:52 +07:00
rstubryan
5e5400f56b
feat(FE): Add advanced filtering capabilities to master data tables
2026-03-03 14:03:29 +07:00
rstubryan
741884ac29
feat(FE): Add filter schemas and types for master data components
2026-03-03 14:02:06 +07:00
rstubryan
4e278c5687
refactor(FE): Integrate UI store and pathname sync in master-data tables
2026-03-03 10:59:26 +07:00
rstubryan
3d2e40518b
refactor(FE): Add table state management with path grouping logic
2026-03-03 10:33:03 +07:00
Rivaldi A N S
cbab7f52f2
Merge branch 'dev/hotfix/restu' into 'development'
...
[HOTFIX/FE] Fix Constant Value of Adjustment Stock (Recording Depletion In)
See merge request mbugroup/lti-web-client!339
2026-03-03 02:50:52 +00:00
rstubryan
ceb316d3da
refactor(FE): Refactor subtype label mapping and fix depletion subtype
...
value
2026-03-03 09:15:57 +07:00
Rivaldi A N S
9ea152aef9
Merge branch 'hotfix/adjustment-stock-api-usage' into 'development'
...
[HOTFIX/FE] Fix Inventory AdjustmentForm using Product API Instead of Product Warehouse API
See merge request mbugroup/lti-web-client!338
2026-03-02 08:58:16 +00:00
rstubryan
910ea85b62
refactor(FE): Refactor InventoryAdjustmentForm to simplify product
...
handling
2026-03-02 15:24:14 +07:00
rstubryan
968243c370
refactor(FE): Refactor tab actions store to use slice pattern
2026-03-02 14:44:20 +07:00
Rivaldi A N S
f1ba577a97
Merge branch 'fix/master-data-product-nonstock' into 'development'
...
[FIX/FE] Adjustment Product and Nonstock Match with FIFO Stock V2
See merge request mbugroup/lti-web-client!337
2026-03-02 07:33:43 +00:00
rstubryan
c6b906a28e
refactor(FE): Fix loading state for flag and sub-flag dropdowns
2026-03-02 14:12:42 +07:00
rstubryan
eafcfd2f28
refactor(FE): Fix null check for product_flag_mapping in ProductForm
2026-03-02 14:06:12 +07:00
rstubryan
0e5d38f75c
refactor(FE): Update field name from 'isExpedition' to 'flags' in
...
handler
2026-03-02 13:57:56 +07:00
rstubryan
f2b59ded3c
feat(FE): Add skeleton components for master data tables
2026-03-02 13:50:25 +07:00
rstubryan
1341b1ff53
refactor(FE): Add skeleton loaders for inventory tables
2026-03-02 13:31:23 +07:00
rstubryan
9c4c750664
refactor(FE): Refactor table skeleton components for consistency
2026-03-02 12:10:06 +07:00
rstubryan
d3501e5f3d
refactor(FE): Add skeleton loaders for ProjectFlock and TransferToLaying
...
tables
2026-03-02 11:56:27 +07:00
rstubryan
d96388e5f4
refactor(FE): Rename and update import for UniformityTableFilter module
2026-03-02 11:42:34 +07:00
rstubryan
749b7d6f1a
refactor(FE): Refactor UniformityTable to improve loading and empty
...
states
2026-03-02 11:34:27 +07:00
rstubryan
aadf10b8b9
refactor(FE): Refactor master-data pages to simplify component rendering
2026-03-02 11:17:54 +07:00
rstubryan
7db6ae4077
refactor(FE): Refactor NonstocksTable to use Popover for row actions
2026-03-02 10:47:17 +07:00
rstubryan
7eaf6b7a3a
refactor(FE): Refactor ProductTable and RowOptionsMenu for improved
...
clarity
2026-03-02 10:42:34 +07:00
rstubryan
8397d76171
refactor(FE): Add fallback for product flag mapping on constants error
2026-03-02 10:15:53 +07:00
rstubryan
56d4b8a5c9
refactor(FE): Update ProductFlagMapping types and related references
2026-03-02 10:15:06 +07:00
rstubryan
ef9d820c0d
refactor(FE): Refactor ProductForm to fetch constants via SWR
2026-03-02 10:06:06 +07:00
rstubryan
4e3c6736ab
refactor(FE): Rename "Sub Flags" header to "Kategori Flags"
2026-03-02 09:58:01 +07:00
rstubryan
aa1ef7a559
feat(FE): Add constants transformation utilities and API service
2026-03-02 09:57:21 +07:00
rstubryan
04b5a7bd4d
refactor(FE): Update label in NonstockForm to 'Flags Ekspedisi'
2026-02-27 15:42:24 +07:00
rstubryan
3aec412599
refactor(FE): Update label text in NonstockForm RadioGroup
2026-02-27 15:38:47 +07:00
rstubryan
80a94c48c3
refactor(FE): Format product prices using formatCurrency helper
2026-02-27 15:38:11 +07:00
rstubryan
9bd4a73a90
refactor(FE): Refactor flags field to boolean and update form handling
2026-02-27 15:36:44 +07:00
rstubryan
d1c6fe8fb4
refactor(FE): Add conditional validation for sub_flags in
...
ProductForm.schema
2026-02-27 15:03:09 +07:00
rstubryan
a4378ebd04
refactor(FE): Refactor product flags to support single flag and
...
sub-flags
2026-02-27 14:57:45 +07:00
rstubryan
16f2f2bc06
feat(FE): Add PRODUCT_FLAG_MAPPING with flags, sub-flags, and mappings
2026-02-27 14:08:17 +07:00
rstubryan
64843a36ab
refactor(FE): Refactor date input components for consistency and layout
2026-02-27 13:34:51 +07:00
rstubryan
396a5ab5ba
refactor(FE): Rename and update FinanceTableFilter schema import path
2026-02-27 13:12:12 +07:00
rstubryan
9f4c041ec8
refactor(FE): Update FinanceTable layout and conditional styling
2026-02-27 11:27:51 +07:00
rstubryan
5e3d2273d1
refactor(FE): Refactor RowOptionsMenu to use PopoverButton and
...
PopoverContent
2026-02-27 11:25:37 +07:00
rstubryan
0b01eefe20
refactor(FE): Update button labels for clarity in FinanceTable
2026-02-27 11:23:06 +07:00
rstubryan
43045b3f8b
Merge branch 'development' of gitlab.com:mbugroup/lti-web-client into dev/restu
2026-02-27 11:21:34 +07:00
rstubryan
d3ce60d3ba
refactor(FE): Refactor FinanceTable and simplify Finance page structure
2026-02-27 11:14:13 +07:00
Rivaldi A N S
8c7577dcc5
Merge branch 'fix/adjustment-stock-and-ui-related' into 'development'
...
[FIX/FE] Refactor Adjustment Stock with Latest FIFO Stock and Adjustment UI (Production, Inventory, Pembelian, Penjualan, Biaya, Closing)
See merge request mbugroup/lti-web-client!336
2026-02-27 04:02:05 +00:00
rstubryan
da3cadc37d
Merge branch 'development' of gitlab.com:mbugroup/lti-web-client into fix/adjustment-stock-and-ui-related
2026-02-27 10:28:35 +07:00
rstubryan
2e6aa1b83a
refactor(FE): Filter out excluded product flags in product options
2026-02-27 10:04:54 +07:00
rstubryan
8811976f53
chore(FE): Remove redundant comments in InventoryAdjustmentForm
2026-02-27 09:30:10 +07:00
rstubryan
9fb65bdacd
feat(FE): Validate quantity against available stock
2026-02-27 09:29:33 +07:00
Adnan Zahir
53e018aece
Merge branch 'staging' into 'production'
...
refactor(FE): Add tab state management and skeleton for
See merge request mbugroup/lti-web-client!335
2026-02-26 16:37:04 +07:00
rstubryan
6f6f54571f
refactor(FE): Reset transaction subtype when product changes for
...
RECORDING
2026-02-26 16:20:00 +07:00
rstubryan
3099588141
refactor(FE): Filter transaction subtypes based on selected product
...
flags
2026-02-26 16:10:19 +07:00
rstubryan
47ee911852
feat(FE): Add stock availability badge to product dropdown
2026-02-26 15:56:31 +07:00
rstubryan
b4d0ed1537
refactor(FE): Refactor product options handling in
...
InventoryAdjustmentForm
2026-02-26 15:39:49 +07:00
rstubryan
36f2368e95
refactor(FE): Refactor product selection to use ProductWarehouse API
2026-02-26 15:31:43 +07:00
rstubryan
a4d5cbb117
refactor(FE): Simplify conditional formatting in InventoryAdjustmentForm
2026-02-26 15:12:19 +07:00
rstubryan
c926a81756
refactor(FE): Update transaction subtype handling and labels
2026-02-26 15:11:39 +07:00
rstubryan
2476b6a4b4
refactor(FE): Format prices and totals as currency in
...
InventoryAdjustmentTable
2026-02-26 14:52:44 +07:00
rstubryan
01c1843fd5
refactor(FE): Refactor MovementTable to use Popover for row actions
2026-02-26 14:37:34 +07:00
rstubryan
f86498e350
refactor(FE): Refactor InventoryProductTable to use Popover for row
...
options
2026-02-26 14:29:27 +07:00
rstubryan
5cd24f2c46
refactor(FE): Fix form error list visibility and field touch handling
2026-02-26 14:12:11 +07:00
rstubryan
da0be9cb52
refactor(FE): Update input components to adjust spacing and text size
2026-02-26 14:11:33 +07:00
rstubryan
da1cdfb59e
refactor(FE): Refactor transaction type handling with useEffect
2026-02-26 13:58:21 +07:00
rstubryan
a991150262
refactor(FE): Refactor InventoryAdjustmentForm layout for better
...
responsiveness
2026-02-26 13:32:52 +07:00
rstubryan
ee49c91fba
refactor(FE): Add type annotation for inventory adjustment payload
2026-02-26 12:08:36 +07:00
rstubryan
75463326e3
refactor(FE): Refactor InventoryAdjustmentForm to remove 'edit' type
...
handling
2026-02-26 12:07:14 +07:00
rstubryan
e98c49ac5a
refactor(FE): Update columns in InventoryAdjustmentTable
2026-02-26 11:48:27 +07:00
rstubryan
aeeb0b721c
refactor(FE): Refactor InventoryAdjustmentTable for improved readability
2026-02-26 11:31:17 +07:00
Rivaldi A N S
b14bc00af4
Merge branch 'fix/fe/return-to-logout' into 'development'
...
[FIX/FE] add return fe cors
See merge request mbugroup/lti-web-client!334
2026-02-26 04:27:56 +00:00
ragilap
e2a4088e77
[FEAT/BE] add return fe cors
2026-02-26 11:19:47 +07:00
rstubryan
ebe80358ee
refactor(FE): Remove unused import isResponseSuccess from
...
InventoryAdjustmentForm
2026-02-26 11:11:51 +07:00
rstubryan
9d4e9f6318
refactor(FE): Refactor InventoryAdjustmentForm to use useSelect for
...
Kandang
2026-02-26 11:09:13 +07:00
rstubryan
e5007a285a
refactor(FE): Refactor InventoryAdjustmentForm to improve state
...
management
2026-02-26 10:38:41 +07:00
rstubryan
da82c704d5
refactor(FE): Fix validation message formatting in
...
InventoryAdjustmentForm
2026-02-26 10:12:48 +07:00
rstubryan
88b9c890e5
refactor(FE): Refactor inventory adjustment form
2026-02-26 10:10:59 +07:00
rstubryan
5a67901722
feat(FE): Add transaction type and subtype options to constants
2026-02-26 09:11:05 +07:00
rstubryan
0031a65f97
refactor(FE): Ensure filter modal closes on reset across components
2026-02-25 16:30:31 +07:00
rstubryan
a89e83af29
refactor(FE): Fix multiline formatting for isError conditions
2026-02-25 15:57:25 +07:00
rstubryan
a75d84556a
refactor(FE): Refactor date validation to use shared state and cleanup
2026-02-25 15:56:12 +07:00
rstubryan
0af7b172a0
refactor(FE): Refactor PurchaseTable to use Popover for row options menu
2026-02-25 12:08:31 +07:00
rstubryan
8be33b230b
refactor(FE): Refactor row options menu to use popover components
2026-02-25 11:59:17 +07:00
rstubryan
4fda2f661a
refactor(FE): Remove unnecessary padding and margin classes in
...
components
2026-02-25 11:49:41 +07:00
rstubryan
22b1102454
refactor(FE): Refactor ExpensesTable to use ExpensesFilterModal
2026-02-25 11:40:42 +07:00
rstubryan
e2e64f093f
refactor(FE): Refactor TransferToLayingFilterModal to use schema
...
validation
2026-02-25 11:02:26 +07:00
rstubryan
90942b41b9
refactor(FE): Fix formatting of disabled condition in RecordingTable
...
button
2026-02-25 10:53:32 +07:00
rstubryan
93a2d99b7f
refactor(FE): Disable filter button if kandang_id is not selected
2026-02-25 10:52:03 +07:00
rstubryan
dae9a24a7c
refactor(FE): Refactor array formatting and improve code readability
2026-02-25 10:41:34 +07:00
rstubryan
f701ab0d91
refactor(FE): Replace active filter count logic with ButtonFilter
...
component
2026-02-25 10:39:14 +07:00
rstubryan
47a2439777
feat(FE): Add support for grouped fields in ButtonFilter active count
...
calculation
2026-02-25 10:07:26 +07:00
rstubryan
cce84a3a6f
refactor(FE): Refactor ButtonFilter to support excluded fields with
...
useMemo
2026-02-25 09:46:19 +07:00
Rivaldi A N S
f92622cc22
Merge branch 'fix/adjustment-production-module' into 'development'
...
[FIX/FE] Adjustment Production Module (Recording & Uniformity)
See merge request mbugroup/lti-web-client!333
2026-02-25 02:32:21 +00:00
rstubryan
f0041ca938
refactor(FE): Filter inactive kandangs in UniformityForm options
2026-02-24 21:05:22 +07:00
rstubryan
6566b881b2
refactor(FE): Use formatTitleCase for category text in StatusBadge
2026-02-24 21:02:56 +07:00
rstubryan
1a2e38568b
refactor(FE): Remove unused page size selector and related logic
2026-02-24 15:46:32 +07:00
rstubryan
ced3970aae
refactor(FE): Add padding to RecordingTableSkeleton container class
2026-02-24 15:38:19 +07:00
rstubryan
9de31c991d
refactor(FE): Refactor approval checks for readability
2026-02-24 15:34:11 +07:00
rstubryan
bdca10e0ac
refactor(FE): Handle rejected recordings in selection logic
2026-02-24 15:31:22 +07:00
rstubryan
9a5e2987d5
refactor(FE): Conditionally load data based on filter modal state
2026-02-24 15:22:06 +07:00
rstubryan
a5b4deaac4
refactor(FE): Refactor RecordingTable layout for improved readability
2026-02-24 15:13:37 +07:00
rstubryan
82953f4c9c
Merge branch 'development' of gitlab.com:mbugroup/lti-web-client into dev/restu
2026-02-24 14:48:34 +07:00
rstubryan
509fc5476d
refactor(FE): Refactor recording table and add filter modal
2026-02-24 14:48:09 +07:00
Rivaldi A N S
6a10849a84
Merge branch 'fix/adjustment-pf-report-penjualan' into 'development'
...
[FIX/FE] Adjustment Project Flock Related, Penjualan Calculation (Both SO/DO) and Report Filter Display Issue
See merge request mbugroup/lti-web-client!332
2026-02-24 03:24:42 +00:00
rstubryan
50424a25fc
refactor(FE): Remove redundant transformations and validations in
...
schemas
2026-02-23 16:05:12 +07:00
rstubryan
35b09b514f
refactor(FE): Refactor form field change handlers for real-time
...
calculations
2026-02-23 15:30:54 +07:00
rstubryan
81e4e1fc6a
refactor(FE): Update validation rules for SalesOrderProduct schema
2026-02-23 14:12:44 +07:00
rstubryan
62c9ab014d
refactor(FE): Add period filter to ProjectFlockTable
2026-02-23 13:51:32 +07:00
rstubryan
ba28d64562
refactor(FE): Format type definition for readability
2026-02-23 13:40:00 +07:00
rstubryan
75ee058818
feat(FE): Add filter functionality to ProjectFlockTable
2026-02-23 13:38:47 +07:00
rstubryan
755bddc74c
refactor(FE): Fix logic for checking active projects in the same kandang
...
from the validation logic.
2026-02-23 12:10:44 +07:00
rstubryan
08aa1900a8
feat(FE): Add validation for disabling close button in
...
ProjectFlockDetail
2026-02-23 11:55:07 +07:00
rstubryan
7e1166b5e8
refactor(FE): Refactor tab actions store to use a unified implementation
2026-02-23 11:05:11 +07:00
rstubryan
75e9b06a83
refactor(FE): Set default value for show_unrecorded to false
2026-02-23 10:27:34 +07:00
Adnan Zahir
ca58e19a48
Merge branch 'development' into 'staging'
...
Development
See merge request mbugroup/lti-web-client!331
2026-02-23 09:32:40 +07:00
Rivaldi A N S
ac2d83a666
Merge branch 'fix/cleanup-code' into 'development'
...
[FIX/FE] Partial Remove Issue Warning on Build (1/2)
See merge request mbugroup/lti-web-client!330
2026-02-23 02:25:50 +00:00
rstubryan
03e0cebe35
refactor(FE): Fix formatting for array dependencies and className
...
conditions
2026-02-20 14:42:46 +07:00
rstubryan
1cc0e16c01
refactor(FE): Replace ButtonFilter with custom Filter button
2026-02-20 14:41:50 +07:00
rstubryan
1f2f3acebb
refactor(FE): Remove unused imports and redundant code
2026-02-20 14:17:26 +07:00
Rivaldi A N S
de0f9ae985
Merge branch 'fix/uniformity-ttl-project-flock-issue' into 'development'
...
[FIX/FE] Fix Isssue on Uniformity (Week Calculation), Project Flock (Modal Position), Transfer To Laying (Copywriting)
See merge request mbugroup/lti-web-client!329
2026-02-20 03:36:15 +00:00
rstubryan
a0e79168b2
refactor(FE): Refactor setClosingLoading to use single-line syntax
2026-02-20 10:25:30 +07:00
rstubryan
797f88fe15
feat(FE): Add project flock closing modal and zustand store
2026-02-20 10:23:47 +07:00
rstubryan
4c3e7c615f
refactor(FE): Refactor conditional text formatting in modal component
2026-02-20 10:12:06 +07:00
rstubryan
b35b6c2ab8
feat(FE): Add submittedActionType state to track modal action type
2026-02-20 10:11:16 +07:00
Adnan Zahir
0971e6ddeb
Merge branch 'development' into 'staging'
...
Development
See merge request mbugroup/lti-web-client!328
2026-02-20 09:53:46 +07:00
rstubryan
bbbd767cf2
refactor(FE): Fix week calculation logic in UniformityForm
2026-02-20 09:21:42 +07:00
Rivaldi A N S
3e30dcb04e
Merge branch 'fix/closing-project-flock-recording-issue' into 'development'
...
[FIX/FE] Adjustment Closing Related (Closing Report, Closing Detail and Closing Table), Project Flock Detail (Form, Chickin), Recording Table
See merge request mbugroup/lti-web-client!327
2026-02-19 09:45:18 +00:00
rstubryan
1a137e7500
refactor(FE): Normalize status keys to uppercase in status utilities
2026-02-19 15:37:46 +07:00
rstubryan
3be6d5bb26
refactor(FE): Update status mappings for "CREATED" to "Pengajuan"
2026-02-19 15:35:08 +07:00
rstubryan
e22f95cc58
refactor(FE): Remove unused variable approval.step_name in
...
RecordingTable
2026-02-19 15:28:27 +07:00
rstubryan
6ac903313c
refactor(FE): Refactor chickin approval modal logic into Zustand store
2026-02-19 15:22:28 +07:00
rstubryan
a4ff92520a
refactor(FE): Update toast message for Project Flock approval/rejection
2026-02-19 14:50:43 +07:00
rstubryan
608cf4cbe7
feat(FE): Add StatusBadge to display project status in ClosingsTable
2026-02-19 14:41:21 +07:00
rstubryan
60e360537e
refactor(FE): Refactor ClosingsTable header for improved styling
2026-02-19 14:37:20 +07:00
rstubryan
e9784bd5ed
refactor(FE): Refactor ClosingsTable component and update styles
2026-02-19 14:33:35 +07:00
rstubryan
4f018eb2b1
feat(FE): Add filter modal and skeleton components for ClosingsTable
2026-02-19 14:18:22 +07:00
rstubryan
40b3d779bc
refactor(FE): Update column header and adjust table margin
2026-02-19 13:52:32 +07:00
rstubryan
1bdf413650
feat(FE): Add badge display for category columns in tables
2026-02-19 13:33:11 +07:00
rstubryan
495b1b2869
refactor(FE):Add HPP Amount column to daily marketing export
2026-02-19 12:18:27 +07:00
rstubryan
a231140bc0
refactor(FE): Refactor ProductionDataClosingTab to use Card component
2026-02-19 12:02:04 +07:00
rstubryan
a0af934002
feat(FE): Add headings and improve layout for financial tables
2026-02-19 11:52:57 +07:00
rstubryan
82975219a8
refactor(FE): Update border styles for ClosingDetailTabs and
...
ClosingKandangList
2026-02-19 11:43:46 +07:00
rstubryan
60ae670f24
refactor(FE): Refactor UI and improve conditional rendering in closing
...
pages
2026-02-19 11:38:34 +07:00
rstubryan
7d79b6b957
refactor(FE): Refactor table and tab styles for consistent spacing and
...
layout
2026-02-19 11:27:24 +07:00
rstubryan
8a1e0f080f
refactor(FE): Refactor table components for consistent styling and
...
cleanup
2026-02-19 11:14:39 +07:00
rstubryan
c3a69bc66a
refactor(FE): Add Icon component and update table styles
2026-02-19 10:55:07 +07:00
rstubryan
4c1f11d859
refactor(FE): Update table column headers from '#' to 'No'
2026-02-19 10:50:52 +07:00
rstubryan
350ff0fbbe
refactor(FE): Simplify headerRowClassName formatting in tables
2026-02-19 10:46:03 +07:00
rstubryan
4c70ec7cab
refactor(FE): Refactor table components to improve styling and structure
2026-02-19 10:43:37 +07:00
rstubryan
944db8dba7
refactor(FE): Refactor Card and SapronakClosingSkeleton components for
...
readability
2026-02-19 10:15:20 +07:00
rstubryan
befc1c1217
refactor(FE): Refactor skeleton components to remove default columns
2026-02-19 10:14:28 +07:00
rstubryan
8fe19feaac
feat(FE): Add skeleton components for closing pages
2026-02-19 10:03:25 +07:00
rstubryan
9c953ca382
refactor(FE): Fix incorrect import and component usage in
...
SapronakClosingTab
2026-02-19 09:37:54 +07:00
rstubryan
c53430fa1f
refactor(FE): Organize Sapronak tables into a dedicated folder
2026-02-19 09:35:42 +07:00
rstubryan
1fe722cb81
refactor(FE): Refactor code formatting for consistency and readability
2026-02-19 09:33:31 +07:00
rstubryan
d9bd73d8c1
refactor(FE): Refactor sales data fetching and component structure
2026-02-19 09:32:33 +07:00
rstubryan
0235494d46
refactor(FE): Refactor HPP Expedition handling in ClosingDetailPage
2026-02-19 09:29:01 +07:00
rstubryan
32354e3c2d
refactor(FE): Adjust padding on tab header wrapper in ClosingDetailTabs
2026-02-18 16:32:26 +07:00
rstubryan
14e1c59a69
refactor(FE): Refactor ClosingDetail component to use tab store
2026-02-18 16:28:56 +07:00
rstubryan
42cc0f2661
refactor(FE): Refactor component and file names for consistency
2026-02-18 16:15:27 +07:00
rstubryan
2f5d518e15
refactor(FE): Move table components to a shared "table" directory
2026-02-18 15:43:52 +07:00
rstubryan
d085b18788
refactor(FE): Refactor folder structure for closing-related components
2026-02-18 15:40:06 +07:00
Rivaldi A N S
d68bedf5ce
Merge branch 'fix/refactor-project-flock-detail' into 'development'
...
[FIX/FE] Refactor Project Flock Detail UI
See merge request mbugroup/lti-web-client!326
2026-02-18 08:21:57 +00:00
rstubryan
2169c0ea62
refactor(FE): Update StatusBadge color and text in ChickinForm
2026-02-18 15:00:26 +07:00
rstubryan
02165df89c
refactor(FE): Update status badge text to use English labels
2026-02-18 14:50:11 +07:00
rstubryan
15289951e6
refactor(FE): Remove unused CSS classes from table components
2026-02-18 14:42:41 +07:00
rstubryan
62674044e7
refactor(FE): Replace Badge with StatusBadge in ProjectFlockDetail
2026-02-18 14:33:28 +07:00
rstubryan
e94967ea4c
refactor(FE): Adjust grid column layout based on selectedKandang status
2026-02-18 14:28:55 +07:00
rstubryan
ed576fc8eb
feat(FE): Improve empty state handling and add "Unclose Flock"
...
functionality
2026-02-18 13:49:02 +07:00
rstubryan
d4c6a05c0c
refactor(FE): Update button behavior based on kandang status
2026-02-18 13:21:29 +07:00
rstubryan
da27f4c581
refactor(FE): Refactor status badge logic in ProjectFlockClosingForm
2026-02-18 13:15:06 +07:00
rstubryan
9d6cc90162
refactor(FE): Update table columns and improve UI for Project Flock
...
pages
2026-02-18 11:52:30 +07:00
rstubryan
512ccddfc7
refactor(FE): Refactor ChickinForm and ProjectFlockClosingForm
...
components
2026-02-18 09:59:50 +07:00
Rivaldi A N S
f5b16b68e9
Merge branch 'dev/hotfix/restu' into 'development'
...
[HOTFIX/FE] Refactor fetching logic useSelect on Depletion (Recording)
See merge request mbugroup/lti-web-client!325
2026-02-15 03:11:31 +00:00
rstubryan
e8e4f7b877
refactor(FE): Simplify product filtering logic in RecordingForm
2026-02-15 08:47:07 +07:00
Rivaldi A N S
b6edd8f10c
Merge branch 'feat/refactor-report-module-ui' into 'development'
...
[FEAT/FE] Refactor UI on Report Module and Additional Adjustment (Project Flock, Product Stock, Marketing)
See merge request mbugroup/lti-web-client!324
2026-02-13 03:59:03 +00:00
rstubryan
ec3a0367dd
refactor(FE): Hide delete button if only one item remains in table
2026-02-13 10:37:12 +07:00
rstubryan
e9da5210ad
refactor(FE): Simplify type definition for ReportExpenseColumn
2026-02-13 10:22:13 +07:00
rstubryan
67f2a80f23
refactor(FE): Refactor expense report page to use tab-based layout
2026-02-13 10:19:09 +07:00
rstubryan
ceb594a4cc
refactor(FE): Rename and update paths for ProductionResult components
2026-02-13 09:55:22 +07:00
rstubryan
d312da4c66
refactor(FE): Refactor dropdown and export button components
2026-02-13 09:53:33 +07:00
rstubryan
3a676723e4
refactor(FE): Refactor table class names in DailyMarketingTab
2026-02-13 09:42:04 +07:00
rstubryan
684f67593f
refactor(FE): Refactor SelectInput styles for improved readability
2026-02-13 09:32:45 +07:00
rstubryan
d5962f94a1
refactor(FE): Refactor production result filter to use OptionType
2026-02-13 09:29:37 +07:00
rstubryan
5c00893ea3
refactor(FE): Refactor production result components and improve UI
2026-02-13 09:24:42 +07:00
rstubryan
211622c7b0
refactor(FE): Format import statements in report-tab.store.ts
2026-02-12 16:19:40 +07:00
rstubryan
dbb523c710
refactor(FE): Refactor tab store to use a unified ReportTabStore
2026-02-12 16:16:40 +07:00
rstubryan
6aae18df54
refactor(FE): Update import paths for finance and marketing tab stores
2026-02-12 15:49:26 +07:00
rstubryan
cb171118ee
refactor(FE): Restrict row selection to specific approval criteria
2026-02-12 15:32:11 +07:00
rstubryan
45ac8348fe
feat(FE): Add "Stock Akhir" column to StockLogTable
2026-02-12 15:23:17 +07:00
rstubryan
5d92e6774e
feat(FE): Add stock field to StockLog type
2026-02-12 15:14:00 +07:00
rstubryan
6595ff7a6e
refactor(FE): Add function to export production results to Excel
2026-02-12 15:03:24 +07:00
rstubryan
dc4e945a35
refactor(FE): Refactor table column definitions to remove unused row
...
parameter
2026-02-12 14:50:19 +07:00
rstubryan
b154b478bc
refactor(FE): Refactor production result components structure
2026-02-12 14:15:56 +07:00
rstubryan
510573e66f
refactor(FE): Add Excel export functionality for daily marketing report
2026-02-12 13:55:31 +07:00
rstubryan
dbcf469123
refactor(FE): Remove DailyMarketingsTable component and refactor related
...
files
2026-02-12 13:44:22 +07:00
rstubryan
325fb373a8
refactor(FE): Rename components for clarity
2026-02-12 13:19:16 +07:00
rstubryan
4b6a8b2773
refactor(FE): Refactor file names for consistency in marketing report
...
components
2026-02-12 11:45:50 +07:00
rstubryan
5e4619fac7
feat(FE): Add DailyMarketingReportFilter and
...
DailyMarketingReportSkeleton components
2026-02-12 11:38:46 +07:00
rstubryan
43d26b4833
refactor(FE): Refactor marketing report components and add HPP filter
2026-02-12 11:16:26 +07:00
rstubryan
6d2855d117
refactor(FE): Add zustand store for marketing tab actions
2026-02-12 11:15:42 +07:00
Adnan Zahir
25fbf95062
Merge branch 'development' into 'staging'
...
Development
See merge request mbugroup/lti-web-client!323
2026-02-12 11:06:11 +07:00
rstubryan
ee53ea61cc
refactor(FE): Fix missing dependency in useCallback hooks
2026-02-12 10:57:22 +07:00
rstubryan
322b519def
refactor(FE): Refactor filter schema and form handling for
...
PurchasesPerSupplier
2026-02-12 10:55:40 +07:00
rstubryan
e23b53d797
refactor(FE): Refactor CustomerPaymentTab to use StatusBadge component
2026-02-12 10:46:06 +07:00
rstubryan
fd78ca6ac1
refactor(FE): Refactor CustomerPaymentTab to use Formik for filter
...
management
2026-02-12 10:28:36 +07:00
rstubryan
28dabcbeb6
refactor(FE): Refactor filter parameter keys to singular form
2026-02-12 09:52:21 +07:00
rstubryan
62dd1de150
refactor(FE): Reset form values on filter modal open and submit
2026-02-12 09:45:18 +07:00
rstubryan
166e95930b
refactor(FE): Remove unused imports and cleanup comments
2026-02-12 09:35:24 +07:00
rstubryan
52d58d0921
refactor(FE): Refactor PurchasesPerSupplierTab to use Formik for filters
2026-02-11 16:44:10 +07:00
rstubryan
14d0dc590f
refactor(FE): Make dropdown filters clearable in PurchasesPerSupplierTab
2026-02-11 16:17:15 +07:00
rstubryan
ed781da372
refactor(FE): Change Tabs variant from 'lifted' to 'boxed'
2026-02-11 16:12:14 +07:00
rstubryan
4e5745d237
refactor(FE): Add tab state management and skeleton for
...
PurchasesPerSupplierTab
2026-02-11 15:53:32 +07:00
Rivaldi A N S
b03ef4923e
Merge branch 'hotfix/purchase-and-project-flock-form' into 'development'
...
[HOTFIX/FE] Refactor Purchase (Staff & Receipt/Receive) and Project Flock Form (Modal)
See merge request mbugroup/lti-web-client!322
2026-02-11 07:29:22 +00:00
Rivaldi A N S
d7486e8b8a
Merge branch 'fix/refactor-native-pdf-renderer' into 'development'
...
[FIX/FE] Refactor Native PDF Renderer to Component Based
See merge request mbugroup/lti-web-client!321
2026-02-11 07:28:43 +00:00
rstubryan
498602a2c9
refactor(FE): Refactor input components to use consistent color
...
variables
2026-02-11 14:19:52 +07:00
rstubryan
1b4d373fea
refactor(FE): Improve disabled and read-only states for input components
2026-02-11 13:54:48 +07:00
rstubryan
4215b0ea7d
feat(FE): Add success modal and state management for ProjectFlock
2026-02-11 13:44:00 +07:00
rstubryan
c3dee6b292
feat(FE): Add Zustand store for ProjectFlock management
2026-02-11 13:42:56 +07:00
rstubryan
3834982fca
feat(FE): Add "has_chickin" property to disable quantity editing
2026-02-11 11:40:29 +07:00
rstubryan
539de03a5b
refactor(FE): Update section width to use full width
2026-02-11 10:41:57 +07:00
rstubryan
0f1d2ce477
refactor(FE): Refactor PDF table components to simplify imports
2026-02-11 10:39:37 +07:00
rstubryan
70b63f7773
refactor(FE): Refactor PdfTable components to support generic data types
2026-02-11 10:38:51 +07:00
rstubryan
02d13efc25
refactor(FE): Refactor table column headers for clarity and consistency
2026-02-11 09:28:24 +07:00
rstubryan
1227b7639f
refactor(FE): Refactor ProductionResultReportPDF to use reusable PDF
...
components
2026-02-10 16:52:52 +07:00
rstubryan
5593463eab
refactor(FE): Refactor marketing report components into a dedicated
...
folder
2026-02-10 16:20:19 +07:00
rstubryan
be7b2a0f93
refactor(FE): Refactor DailyMarketingReportPDF component for cleaner
...
structure
2026-02-10 16:06:11 +07:00
rstubryan
4c6ac6e8e1
refactor(FE): Refactor PdfStatusBadge to use a single style prop
2026-02-10 14:04:44 +07:00
rstubryan
5cc51c52d9
feat(FE): Add PdfPageNumber component for rendering page numbers
2026-02-10 14:02:53 +07:00
rstubryan
59eb781a22
refactor(FE): Refactor PDF components to support custom styles
2026-02-10 14:00:28 +07:00
rstubryan
2af83bed8a
refactor(FE): Refactor getDetailData to remove unused parameters
2026-02-10 13:37:34 +07:00
rstubryan
4775c1e115
refactor(FE): Refactor HppPerKandang PDF generation logic and UI
...
renderer
2026-02-10 12:01:51 +07:00
rstubryan
d0dea834c1
refactor(FE): Refactor HppPerKandang export logic to use ExcelJS
2026-02-10 11:54:15 +07:00
rstubryan
def894e5f4
refactor(FE): Refactor PDF generation for purchases per supplier
2026-02-10 11:43:23 +07:00
rstubryan
4f9401ed34
refactor(FE): Refactor export logic for PurchasesPerSupplier report
2026-02-10 11:36:27 +07:00
rstubryan
80763acc53
refactor(FE): Add utility for PDF badge styles and integrate into
...
reports
2026-02-10 11:27:43 +07:00
Rivaldi A N S
5fb065de3e
Merge branch 'feat/reusable-pdf-component' into 'development'
...
[FEAT/FE] Reusable PDF Component and Hotfix Penjualan
See merge request mbugroup/lti-web-client!320
2026-02-10 02:09:59 +00:00
rstubryan
d6b9161500
Merge branch 'development' of gitlab.com:mbugroup/lti-web-client into feat/reusable-pdf-component
2026-02-10 09:01:15 +07:00
rstubryan
bcc2070ed2
refactor(FE): Refactor DebtSupplierExportPDF to use reusable PDF
...
components
2026-02-09 21:50:35 +07:00
rstubryan
e4e6e563c9
refactor(FE): Remove unused helper function formatTitleCaseGeneral
2026-02-09 17:07:00 +07:00
rstubryan
efec9b6265
feat(FE): Add formatTitleCaseGeneral helper and update usage
2026-02-09 17:05:35 +07:00
rstubryan
4cf2f77265
fix(FE): Fix marketing type value logic in SalesOrderFormModal
2026-02-09 17:01:28 +07:00
rstubryan
c86f0379b5
refactor(FE): Refactor CustomerPaymentExportPDF to use reusable PDF
...
components
2026-02-09 16:01:12 +07:00
rstubryan
606380460e
feat(FE): Add PDF helper components for badges and typography
2026-02-09 15:58:28 +07:00
Rivaldi A N S
a3bcabe5c2
Merge branch 'fix/remove-fcr-related' into 'development'
...
[FIX/FE] Remove FCR Related
See merge request mbugroup/lti-web-client!319
2026-02-09 08:58:26 +00:00
rstubryan
89ffad398f
refactor(FE): Remove FCR-related links and permissions
2026-02-09 14:32:27 +07:00
rstubryan
35986aab56
refactor(FE): Remove FCR-related components and types
2026-02-09 14:28:02 +07:00
Rivaldi A N S
4717330bc8
Merge branch 'fix/adjustment-penjualan' into 'development'
...
[FIX/FE] Adjustment Penjualan UI and Data Fetch (2/2)
See merge request mbugroup/lti-web-client!318
2026-02-09 07:16:56 +00:00
rstubryan
291eee3bce
refactor(FE): Add week field handling for marketing and sales order
...
forms
2026-02-09 14:06:43 +07:00
rstubryan
e6a572ac17
refactor(FE): Add API call for updating delivery order on approval step
...
3
2026-02-09 13:31:03 +07:00
rstubryan
bd5b614bf8
refactor(FE): Fix modal text logic for add_delivery action
2026-02-09 12:01:13 +07:00
rstubryan
ba0753428d
refactor(FE): Fix form reset and selection handling in
...
SalesOrderFormModal
2026-02-09 11:49:08 +07:00
rstubryan
862cf38f92
refactor(FE): Refactor DeliveryOrderProductTable to improve readability
2026-02-09 11:41:08 +07:00
rstubryan
1dc6ffca5c
refactor(FE): Handle modal action to set step and selected delivery
...
product
2026-02-09 11:36:41 +07:00
rstubryan
b7fd5d3569
refactor(FE): Add approval modal and handler for marketing approval
2026-02-09 11:25:19 +07:00
rstubryan
911136981a
refactor(FE): Add clickable "Belum diisi" text for delivery forms
2026-02-09 11:23:49 +07:00
rstubryan
6cbe14b36e
refactor(FE): Refactor SalesOrderProductTable to use renderTableContent
...
helper
2026-02-09 11:00:29 +07:00
rstubryan
80c79cc14b
refactor(FE): Refactor DeliveryOrderProductTable to optimize conditional
...
rendering
2026-02-09 10:46:32 +07:00
rstubryan
cb498b01d9
chore(FE): Refactor tables to remove unused props and imports
2026-02-09 10:26:23 +07:00
Rivaldi A N S
cd95b1f8ff
Merge branch 'fix/adjustment-penjualan' into 'development'
...
[FIX/FE] Adjustment Penjualan UI and Data Fetch
See merge request mbugroup/lti-web-client!317
2026-02-09 03:04:46 +00:00
rstubryan
60ace68dae
refactor(FE): Remove FCR-related fields and functionality
2026-02-09 08:59:51 +07:00
Adnan Zahir
b2f6c6c485
Merge branch 'staging' into 'production'
...
Staging
See merge request mbugroup/lti-web-client!316
2026-02-07 17:11:45 +07:00
rstubryan
a8dce9da46
refactor(FE): Refactor table actions to be part of the "Value" column
2026-02-07 10:04:15 +07:00
rstubryan
b85e47f601
refactor(FE): Add top border to table rows in product tables
2026-02-07 10:00:02 +07:00
rstubryan
fc4a0a58e2
refactor(FE): Refactor tables to use Card component
2026-02-07 09:58:00 +07:00
rstubryan
039dfd529e
refactor(FE): Increase max height of order form modals to 50vh
2026-02-07 09:33:58 +07:00
rstubryan
3b42709577
refactor(FE): Refactor modal action handling in order form modals
2026-02-07 09:32:34 +07:00
rstubryan
3dee5c1828
refactor(FE): Add reference number column to ExpensesTable
2026-02-07 09:29:05 +07:00
rstubryan
5ac958231a
refactor(FE): Remove unused invoice download functionality from
...
PurchaseTable
2026-02-07 09:10:39 +07:00
rstubryan
54a6e7e247
refactor(FE): Refactor RecordingForm to simplify egg product filtering
2026-02-07 09:00:04 +07:00
rstubryan
4e80c1a703
refactor(FE): Fix warehouse name display in DeliveryOrderProductTable
2026-02-06 14:46:13 +07:00
rstubryan
9ee5e95d0b
refactor(FE): Remove unused conditional rendering for step 3
2026-02-06 14:33:13 +07:00
rstubryan
3bacc59dc6
refactor(FE): Add condition to hide buttons when step number is 3
2026-02-06 14:32:30 +07:00
rstubryan
4d23929924
refactor(FE): Update approval logic and conditional rendering in
...
delivery forms
2026-02-06 14:20:52 +07:00
rstubryan
c9a5a91970
refactor(FE): Update order number display logic in
...
DeliveryOrderFormModal
2026-02-06 14:20:10 +07:00
rstubryan
08d1447d11
refactor(FE): Update button label based on approval step number
2026-02-06 13:41:17 +07:00
rstubryan
304be4f432
feat(FE): Add support for displaying DO number in MarketingTable
2026-02-06 13:29:38 +07:00
rstubryan
5e9ce70320
feat(FE): Add "Ditolak" option to statusOptions in MarketingFilter
2026-02-06 13:21:33 +07:00
rstubryan
42088e51a8
refactor(FE): Refactor marketing filter to use unique customer options
2026-02-06 13:13:57 +07:00
rstubryan
9dc8f05534
feat: adjust penjualan calculation and delivery order logic
2026-02-06 10:55:38 +07:00
Adnan Zahir
cc86151631
Merge branch 'development' into 'staging'
...
Development
See merge request mbugroup/lti-web-client!315
2026-02-06 10:39:39 +07:00
Rivaldi A N S
e16fa9a167
Merge branch 'fix/project-flock' into 'development'
...
[FIX/FE] Project Flock
See merge request mbugroup/lti-web-client!314
2026-02-06 02:58:02 +00:00
ValdiANS
869110ad2e
Merge branch 'development' into fix/project-flock
2026-02-06 09:51:20 +07:00
ValdiANS
d415bbba82
feat: add getApprovalLineHistory method
2026-02-06 09:47:11 +07:00
ValdiANS
1ecca83339
feat: add getApprovalLineHistory method
2026-02-06 09:47:05 +07:00
ValdiANS
a6c827bb40
feat: add PROJECT_FLOCK_KANDANGS in APPROVAL_WORKFLOWS
2026-02-06 09:46:51 +07:00
ValdiANS
968d9e1f2a
fix: adjust ProjectFlockForm styling and create ProjectFlockFormConfirmationTable component
2026-02-06 09:46:37 +07:00
ValdiANS
7b9ba48204
fix: adjust ProjectFlockDetail styling and content
2026-02-06 09:46:00 +07:00
ValdiANS
6e2e9da1be
chore: adjust ProjectFlockClosingForm styling
2026-02-06 09:45:38 +07:00
ValdiANS
980a5674e2
feat: create ProjectFlockConfirmationModal component
2026-02-06 09:45:07 +07:00
ValdiANS
f5b9c52e71
chore: set chickin form scrollable
2026-02-06 09:44:56 +07:00
ValdiANS
ade8fefe0d
feat: auto scroll to AlertErrorList if AlertErrorList is showing
2026-02-06 09:44:33 +07:00
ValdiANS
6b54b49443
chore: adjust divider styling
2026-02-06 09:44:06 +07:00
ValdiANS
8fb16903f8
feat: add onClick prop and set text type to react node
2026-02-06 09:43:56 +07:00
ValdiANS
f0637e2ce9
chore: add title prop
2026-02-06 09:43:34 +07:00
ValdiANS
f6cf4a29ad
feat: add ref prop to Alert
2026-02-06 09:43:27 +07:00
ValdiANS
66f017549c
chore: use modal for project flock layout
2026-02-06 09:43:15 +07:00
ValdiANS
db7219e261
chore: add shadow-bg class name
2026-02-06 09:42:45 +07:00
Rivaldi A N S
ac6c77bb92
Merge branch 'dev/hotfix/restu' into 'development'
...
[HOTFIX/FE] Adjustment Param State on Customer Payment Tab
See merge request mbugroup/lti-web-client!313
2026-02-05 08:54:05 +00:00
rstubryan
d5eeadc9a7
refactor(FE): Remove handleBlurField call on week change
2026-02-05 15:47:05 +07:00
rstubryan
70a9fa15ec
refactor(FE): Switch week input to SelectInputRadio
2026-02-05 15:43:03 +07:00
rstubryan
4fd4374e64
refactor(FE): Validate date range and show toast on error
2026-02-05 15:04:12 +07:00
rstubryan
b4353cf834
refactor(FE): Make filter type nullable and use applied filters
2026-02-05 14:55:27 +07:00
rstubryan
eb95afe9a0
refactor(FE): Separate applied and modal filter state
2026-02-05 14:39:33 +07:00
rstubryan
92886fe5e2
refactor(FE): Consolidate date filters into trans_date
2026-02-05 14:28:14 +07:00
rstubryan
fb1b310d1d
refactor(FE): Replace SelectInput with SelectInputRadio
2026-02-05 14:13:13 +07:00
rstubryan
3b221795ba
refactor(FE): Add filter_by option to customer payment reports
2026-02-05 14:08:05 +07:00
rstubryan
d41600d8e2
refactor(FE): Replace week SelectInputRadio with NumberInput
2026-02-05 13:48:07 +07:00
Rivaldi A N S
856674de75
Merge branch 'dev/hotfix/restu' into 'development'
...
[HOTFIX/FE] Fix Meta Page on Penjualan Table Fetching
See merge request mbugroup/lti-web-client!312
2026-02-05 06:00:35 +00:00
rstubryan
1af2b72bea
refactor(FE): Prevent badge text wrapping
2026-02-05 12:06:04 +07:00
rstubryan
e66f30e703
refactor(FE): Use API metadata for table pagination
2026-02-05 12:04:08 +07:00
Rivaldi A N S
ca32af592f
Merge branch 'fix/adjustment-param-state-keuangan' into 'development'
...
[FIX/FE] Adjustment Param State on Fetch Keuangan
See merge request mbugroup/lti-web-client!311
2026-02-05 04:23:21 +00:00
rstubryan
372b439ff0
refactor(FE): Validate date range and show persistent toast
2026-02-05 11:13:53 +07:00
rstubryan
4aa9d54b1e
refactor(FE): Remove unused search params and yup import
2026-02-05 11:02:20 +07:00
rstubryan
b45c7c8ea6
refactor(FE): Use Formik for finance table filters
2026-02-05 10:58:59 +07:00
rstubryan
c164977bb9
refactor(FE): Keep select menus open for multi-selects
2026-02-05 10:50:56 +07:00
rstubryan
3153423f14
refactor(FE): Replace size-full with w-full in FinanceTable
2026-02-05 10:48:26 +07:00
rstubryan
ac3fbedccd
refactor(FE): Rename filter keys to plural forms
2026-02-05 10:46:37 +07:00
Adnan Zahir
755f3fa0bb
Merge branch 'development' into 'staging'
...
Development
See merge request mbugroup/lti-web-client!310
2026-02-05 10:32:18 +07:00
Rivaldi A N S
9004de06fa
Merge branch 'fix/marketing' into 'development'
...
[FIX/FE] Fixing UX Sales Order & Delivery Order
See merge request mbugroup/lti-web-client!309
2026-02-05 03:06:19 +00:00
randy-ar
4d7bd5213e
fix(FE): fixing delivery order ui
2026-02-05 09:58:14 +07:00
randy-ar
2f1c4e3c87
fix(FE): fixing issue form not reset after success submit
2026-02-05 06:05:01 +07:00
randy-ar
43dcbf73ee
feat(FE): adding 4 input scenario marketing type
2026-02-05 05:38:02 +07:00
randy-ar
cb22fd1037
feat(FE): calculation penjualan telur + peti
2026-02-05 04:41:46 +07:00
randy-ar
dfd86a04e0
feat(FE): scenario egg sale with type conversion qty
2026-02-05 02:39:10 +07:00
randy-ar
09cd6395e6
fix(FE): skeleton for input skenario sales order
2026-02-04 15:38:03 +07:00
Rivaldi A N S
a8c9b697e3
Merge branch 'fix/purchase-adjustment-data' into 'development'
...
[FIX/FE] Refactor Purchase Adjustment Data Based on Latest BE API
See merge request mbugroup/lti-web-client!308
2026-02-04 07:24:16 +00:00
rstubryan
25a89b8987
refactor(FE): Update purchase search input UI
2026-02-04 14:16:53 +07:00
rstubryan
760e9ccd89
refactor(FE): Add invoice download and PO table columns
2026-02-04 14:13:59 +07:00
ValdiANS
c019162390
Merge branch 'development' into fix/project-flock
2026-02-04 10:36:25 +07:00
Rivaldi A N S
428d9f33d9
Merge branch 'fix/transfer-to-laying' into 'development'
...
[FIX/FE] Transfer to Laying
See merge request mbugroup/lti-web-client!307
2026-02-04 03:35:57 +00:00
ValdiANS
c3f4c9b1ec
chore: remove keepPreviousData in useSWR config when fetching sapronak
2026-02-04 10:15:35 +07:00
ValdiANS
2918500585
chore: add is_approved query param when fetching project flock
2026-02-04 10:05:03 +07:00
Rivaldi A N S
b48bf06f7d
Merge branch 'fix/production-result-report' into 'development'
...
[FIX/FE] Production Result Report
See merge request mbugroup/lti-web-client!306
2026-02-03 09:50:18 +00:00
ValdiANS
2b343b893e
chore: remove unncessary data and fix pagination for single selected project flock kandang
2026-02-03 16:45:49 +07:00
Rivaldi A N S
0c25751401
Merge branch 'fix/master-data-production-standard' into 'development'
...
[FIX/FE] Adding FCR Master Data Production Standard Growing
See merge request mbugroup/lti-web-client!305
2026-02-03 09:32:21 +00:00
randy-ar
9be5bb35c4
Merge branch 'development' of https://gitlab.com/mbugroup/lti-web-client into fix/master-data-production-standard
2026-02-03 14:40:12 +07:00
randy-ar
c24cf7ed1a
fix(FE): adding standard fcr to growing production standard
2026-02-03 14:39:34 +07:00
Rivaldi A N S
7b398bc2ee
Merge branch 'fix/adjustment-uniformity-ui' into 'development'
...
[FIX/FE] Adjustment Uniformity, Expense, Purchase, and Recording Page UI
See merge request mbugroup/lti-web-client!304
2026-02-03 07:35:29 +00:00
rstubryan
d9ee2bc7be
Merge branch 'development' of gitlab.com:mbugroup/lti-web-client into fix/adjustment-uniformity-ui
2026-02-03 14:22:23 +07:00
rstubryan
f31eb8db59
refactor(FE): Show pending stock usage and depletions in detail
2026-02-03 14:20:32 +07:00
randy-ar
40411b0417
fix(FE): fixing total text color debt supplier
2026-02-03 14:12:08 +07:00
Rivaldi A N S
fbbe5532a0
Merge branch 'fix/dashboard' into 'development'
...
[FIX/FE] Fixing Line Chart in Dashboard Page
See merge request mbugroup/lti-web-client!302
2026-02-03 07:00:11 +00:00
randy-ar
c102a4043c
fix(FE): fixing status badge color
2026-02-03 13:40:46 +07:00
randy-ar
ab694270c4
Merge branch 'development' of https://gitlab.com/mbugroup/lti-web-client into fix/dashboard
2026-02-03 12:41:51 +07:00
randy-ar
0febc9d8f3
fix(FE): fixing line chart dashboard comparison
2026-02-03 12:41:22 +07:00
ValdiANS
1ee92f1064
Merge branch 'development' into fix/project-flock
2026-02-03 12:07:13 +07:00
Rivaldi A N S
15e53d2c2d
Merge branch 'fix/not-found-page-permission' into 'development'
...
[FIX/FE] Not Found Page
See merge request mbugroup/lti-web-client!301
2026-02-03 05:06:11 +00:00
Rivaldi A N S
0093410d5b
Merge branch 'fix/closing-overhead' into 'development'
...
[FIX/FE] Fixing Closing Overhead Per Kandang
See merge request mbugroup/lti-web-client!300
2026-02-03 05:04:43 +00:00
ValdiANS
7f4eb2ad35
chore: remove unnecessary code
2026-02-03 12:04:28 +07:00
ValdiANS
f9e00a3f4f
feat: create NotFoundPage component
2026-02-03 12:03:47 +07:00
ValdiANS
2d13564538
chore: bypass 404 page
2026-02-03 12:03:24 +07:00
ValdiANS
4fef966428
chore: remove unnecessary code
2026-02-03 12:02:43 +07:00
Rivaldi A N S
e29097499a
Merge branch 'fix/marketing' into 'development'
...
[FIX/FE] Refactor UI Sales Order & Delivery Order
See merge request mbugroup/lti-web-client!299
2026-02-03 05:02:22 +00:00
ValdiANS
d4c8f9bbbc
feat: create not-found page in app
2026-02-03 12:00:46 +07:00
rstubryan
43afd35e54
refactor(FE): Update add buttons styling and labels
2026-02-03 11:56:25 +07:00
rstubryan
489e8a31f3
refactor(FE): Make ConfirmationModal body scrollable and sticky
2026-02-03 11:46:45 +07:00
randy-ar
12c7e56604
fix(FE): fixing line chart dashboard
2026-02-03 11:45:33 +07:00
randy-ar
eb6071aaf8
fix(FE): fixing closing overhead
2026-02-03 11:37:28 +07:00
randy-ar
f01765d2f8
fix(FE): fixing closing overhead per kandang
2026-02-03 11:33:58 +07:00
rstubryan
e5d6be446a
refactor(FE): Enable closing modals on backdrop click
2026-02-03 11:23:07 +07:00
rstubryan
bb83acbe81
refactor(FE): Render previews for multiple uniformities
2026-02-03 11:11:28 +07:00
rstubryan
758a0cd9a7
refactor(FE): Update Add button styles and labels
2026-02-03 10:46:58 +07:00
rstubryan
1a938b4218
refactor(FE): Use StatusBadge instead of PillBadge
2026-02-03 10:31:16 +07:00
ValdiANS
dc5bd6b329
chore: adjust ProjectFlockKandangTable styling
2026-02-03 09:40:34 +07:00
ValdiANS
68f3c95b81
chore: adjust ProjectFlockForm styling
2026-02-03 09:40:16 +07:00
ValdiANS
d826746f29
chore: adjust DrawerHeader styling
2026-02-03 09:39:58 +07:00
ValdiANS
39b18f7efc
refactor: use Modal instead of Drawer
2026-02-03 09:17:17 +07:00
randy-ar
e123ca9b13
Merge branch 'development' of https://gitlab.com/mbugroup/lti-web-client into fix/marketing
2026-02-02 22:01:37 +07:00
randy-ar
17589cb2b4
refactor(FE): refactor UI Sales Order and Delivery Order
2026-02-02 22:00:42 +07:00
Rivaldi A N S
0c0ad04c20
Merge branch 'fix/adjustment-confirmation-modal-and-recording-form' into 'development'
...
[HOTFIX/FE] Adjustment Confirmation Modal with Notes Usage and Recording Form
See merge request mbugroup/lti-web-client!298
2026-02-02 08:54:41 +00:00
rstubryan
d327af814f
refactor(FE): Handle missing selectedRecordDate and next-day data
2026-02-02 15:13:59 +07:00
rstubryan
8637d1c2c2
refactor(FE): Handle next-day error toast visibility
2026-02-02 15:05:47 +07:00
rstubryan
68feef77fc
refactpr(FE): Extract approval and rejection handlers
2026-02-02 14:43:18 +07:00
rstubryan
4dec97b57c
refactor(FE): Reset approval notes when opening/closing modals
2026-02-02 14:33:48 +07:00
rstubryan
d776c73a03
refactor(FE): Add onClose handler and improve button behavior
2026-02-02 14:32:40 +07:00
rstubryan
dc26da7404
refactor(FE): Remove next-day duplicate recording check
2026-02-02 12:11:24 +07:00
rstubryan
2425316fea
refactor(FE): Exclude already selected products from options
2026-02-02 11:54:19 +07:00
Rivaldi A N S
ff2e0ed114
Merge branch 'fix/adjustment-status-badge' into 'development'
...
[FIX/FE] Adjustment Usage of Status Badge (Recording, Purchase)
See merge request mbugroup/lti-web-client!297
2026-02-02 04:37:37 +00:00
kris
0efae3089d
Update .gitlab-ci.yml file
2026-02-02 04:35:36 +00:00
rstubryan
1a9f5424a5
Merge branch 'development' of gitlab.com:mbugroup/lti-web-client into dev/restu
2026-02-02 11:18:52 +07:00
ValdiANS
c19a7cba68
chore: lint
2026-02-02 11:15:38 +07:00
ValdiANS
ec7427b948
Merge branch 'development' into fix/project-flock
2026-02-02 11:14:54 +07:00
Rivaldi A N S
e169068e1c
Merge branch 'fix/daily-checklist-permission' into 'development'
...
[FIX/FE] Daily Checklist Permission
See merge request mbugroup/lti-web-client!296
2026-02-02 04:14:06 +00:00
rstubryan
85556c0db0
refactor(FE): Use Color type for badge color typings
2026-02-02 11:10:58 +07:00
ValdiANS
7ac92ff451
chore: implement permission guard for approve/reject button
2026-02-02 10:59:44 +07:00
kris
448cf5ceae
Update .gitlab-ci.yml file
2026-02-02 03:57:20 +00:00
ValdiANS
995d20bdf3
chore: implement permission guard for edit, approve/reject, and delete button
2026-02-02 10:54:34 +07:00
rstubryan
3ca4b324d3
refactor(FE): Unify status badge logic and use StatusBadge
2026-02-02 10:46:20 +07:00
kris
8fa2a444f0
Update .gitlab-ci.yml file
2026-02-02 03:42:31 +00:00
rstubryan
4a1464185b
refactor(FE): Replace approval history modal with status badge
2026-02-02 10:30:34 +07:00
ValdiANS
448fb51c81
Merge branch 'development' into fix/project-flock
2026-02-02 08:50:53 +07:00
randy-ar
a57f65a420
Merge branch 'development' of https://gitlab.com/mbugroup/lti-web-client into fix/marketing
2026-01-31 13:16:37 +07:00
randy-ar
70bb40d4f2
fix(FE): refactor sales order form create
2026-01-31 13:15:47 +07:00
Adnan Zahir
ce1114d724
Merge branch 'staging' into 'production'
...
Staging
See merge request mbugroup/lti-web-client!295
2026-01-31 10:39:33 +07:00
Adnan Zahir
128b765045
Merge branch 'development' into 'staging'
...
Development
See merge request mbugroup/lti-web-client!294
2026-01-30 17:05:12 +07:00
Rivaldi A N S
66c8f67245
Merge branch 'hotfix/permission-guard' into 'development'
...
[HOTFIX/FE] Permission Guard
See merge request mbugroup/lti-web-client!293
2026-01-30 09:57:50 +00:00
ValdiANS
5b167db6c3
chore: add permission for transfer to laying
2026-01-30 16:55:32 +07:00
ValdiANS
c6b9ed4f12
hotfix: add permission guard in transfer to laying page
2026-01-30 16:54:19 +07:00
Rivaldi A N S
9928997dd8
Merge branch 'fix/adjustment-uniformity-ui' into 'development'
...
[FIX/FE] Adjusment Pixel Perfect Uniformity UI
See merge request mbugroup/lti-web-client!289
2026-01-30 09:21:31 +00:00
Adnan Zahir
92c07e7841
Merge branch 'staging' into 'production'
...
Staging
See merge request mbugroup/lti-web-client!292
2026-01-30 16:13:35 +07:00
Adnan Zahir
1aba297920
Merge branch 'development' into 'staging'
...
Development
See merge request mbugroup/lti-web-client!291
2026-01-30 15:54:42 +07:00
randy-ar
d92a63db41
Merge branch 'development' of https://gitlab.com/mbugroup/lti-web-client into fix/marketing
2026-01-30 15:54:25 +07:00
randy-ar
73319bbdfa
fix(FE): fixing pixel perfect marketing table
2026-01-30 15:53:51 +07:00
rstubryan
d12374e5d9
Merge branch 'development' of gitlab.com:mbugroup/lti-web-client into fix/adjustment-uniformity-ui
2026-01-30 15:43:29 +07:00
Rivaldi A N S
507cf710e1
Merge branch 'hotfix/permission-guard' into 'development'
...
[HOTFIX/FE] Permission Guard
See merge request mbugroup/lti-web-client!290
2026-01-30 08:43:00 +00:00
ValdiANS
8ce72b21e1
chore: update permissions for /report/marketing
2026-01-30 15:39:16 +07:00
ValdiANS
92cc082c54
chore: use localized language
2026-01-30 15:39:04 +07:00
ValdiANS
24f2b94bb8
feat: update menu permissions
2026-01-30 15:38:12 +07:00
rstubryan
67cf459216
Merge branch 'development' of gitlab.com:mbugroup/lti-web-client into fix/adjustment-uniformity-ui
2026-01-30 15:04:24 +07:00
rstubryan
e3a2b41342
refactor(FE): Replace Badge with StatusBadge and cleanup utils
2026-01-30 14:55:11 +07:00
Rivaldi A N S
fcea485286
Merge branch 'fix/transfer-context' into 'development'
...
[FIX/FE] Transfer Context
See merge request mbugroup/lti-web-client!288
2026-01-30 07:48:53 +00:00
rstubryan
0b7ff6f3f1
refactor(FE): Use accessorKey/styled headers and remove dead code
2026-01-30 14:44:29 +07:00
ValdiANS
190792affe
chore: format license plate number
2026-01-30 14:44:26 +07:00
rstubryan
0a81790049
Merge branch 'development' of gitlab.com:mbugroup/lti-web-client into fix/adjustment-uniformity-ui
2026-01-30 14:37:05 +07:00
rstubryan
b9b02f285f
refactor(FE): Refine Uniformity table headers and layout
2026-01-30 14:36:36 +07:00
ValdiANS
d3be683b69
chore: add transfer_context query when fetching source project flock
2026-01-30 14:35:21 +07:00
ValdiANS
2c27b2e41d
chore: add transfer_context query when fetching source warehouse
2026-01-30 14:34:48 +07:00
rstubryan
8b0dd6deea
refactor(FE): Set xl min height to 72 for Uniformity chart
2026-01-30 14:16:22 +07:00
rstubryan
a5613980c0
refactor(FE): Update UniformityGaugeChart styles
2026-01-30 14:13:38 +07:00
Rivaldi A N S
12a02cd15d
Merge branch 'fix/daily-checklist' into 'development'
...
[FIX/FE] Daily Checklist
See merge request mbugroup/lti-web-client!287
2026-01-30 07:00:12 +00:00
ValdiANS
aecf470173
chore: add max size and bottom label for file input in daily checklist form
2026-01-30 13:57:17 +07:00
rstubryan
64bd57cad4
refactor(FE): Reduce info icon size to 15
2026-01-30 13:50:21 +07:00
rstubryan
ae0d03ddc0
refactor(FE): Reduce info icon size to 15
2026-01-30 13:49:47 +07:00
rstubryan
2a12bc4ba4
refactor(FE): Tweak spacing and icon size in uniformity form
2026-01-30 13:48:04 +07:00
rstubryan
ace3018539
refactor(FE): Add bottom margin to Informasi Umum heading
2026-01-30 13:40:19 +07:00
rstubryan
fbf7cb2d21
refactor(FE): Wrap table headers in styled span
2026-01-30 13:37:13 +07:00
rstubryan
c0b1da89f1
refactor(FE): Standardize button styles in uniformity forms
2026-01-30 13:32:07 +07:00
Adnan Zahir
2aef6522bb
Merge branch 'development' into 'staging'
...
Development
See merge request mbugroup/lti-web-client!286
2026-01-30 13:32:04 +07:00
rstubryan
4b0397903d
refactor(FE): Adjust file upload label styling
2026-01-30 13:27:11 +07:00
Rivaldi A N S
48a7cd168a
Merge branch 'hotfix/permission-guard' into 'development'
...
[HOTFIX/FE] Permission Guard
See merge request mbugroup/lti-web-client!285
2026-01-30 06:26:19 +00:00
rstubryan
93b2496f55
refactor(FE): Adjust spacing in UniformityForm
2026-01-30 13:25:08 +07:00
ValdiANS
15c167d24d
fix: add permission for Penjualan and Keuangan menu
2026-01-30 13:24:08 +07:00
rstubryan
8947d48a43
refactor(FE): Adjust spacing and border in UniformityForm
2026-01-30 13:20:04 +07:00
rstubryan
3de19d495e
Merge branch 'development' of gitlab.com:mbugroup/lti-web-client into fix/adjustment-uniformity-ui
2026-01-30 13:19:06 +07:00
Rivaldi A N S
8bf0f067bb
Merge branch 'fix/daily-checklist' into 'development'
...
[FIX/FE] Daily Checklist Enhancement
See merge request mbugroup/lti-web-client!284
2026-01-30 04:49:13 +00:00
ValdiANS
970278f684
chore: sort activity and employee name
2026-01-30 11:46:29 +07:00
ValdiANS
99f8e5dcf3
chore: add validation in phase selection and sort activity and employee name
2026-01-30 11:45:50 +07:00
Adnan Zahir
3bab96c325
Merge branch 'development' into 'staging'
...
Development
See merge request mbugroup/lti-web-client!283
2026-01-30 11:40:25 +07:00
Adnan Zahir
d40d352418
Merge branch 'fix/debt-supplier' into 'development'
...
[FIX/FE] Pixel Perfect Report Finance Debt Supplier & Customer Supplier
See merge request mbugroup/lti-web-client!282
2026-01-30 11:26:51 +07:00
ValdiANS
7956ce5b6f
fix: issue when selecting all phase and employee
2026-01-30 11:18:39 +07:00
rstubryan
8babb4e3d7
refactor(FE): Use className props for drawer widths
2026-01-30 11:05:38 +07:00
ValdiANS
de8fda9360
fix: reset input error when dialog is closed
2026-01-30 11:03:17 +07:00
rstubryan
b2670f76bf
Merge branch 'development' of gitlab.com:mbugroup/lti-web-client into fix/adjustment-uniformity-ui
2026-01-30 10:52:54 +07:00
rstubryan
89f711241d
refactor(FE): Remove left chart margin and lower min-height
2026-01-30 10:49:17 +07:00
ValdiANS
4e801bf744
Merge branch 'development' into fix/project-flock
2026-01-30 10:10:01 +07:00
ValdiANS
c5269c4fc5
fix: adjust ProjectFlockTable UI
2026-01-29 16:17:27 +07:00
ValdiANS
4e00ded843
chore: add new step in PROJECT_FLOCKS approval workflows
2026-01-29 15:56:31 +07:00
Adnan Zahir
847772616e
Merge branch 'staging' into 'production'
...
Staging
See merge request mbugroup/lti-web-client!274
2026-01-28 13:34:05 +07:00
Adnan Zahir
344140e973
Merge branch 'development' into 'staging'
...
Development
See merge request mbugroup/lti-web-client!271
2026-01-28 13:26:27 +07:00
Adnan Zahir
3ce1299091
Merge branch 'development' into 'staging'
...
Development
See merge request mbugroup/lti-web-client!268
2026-01-28 10:07:39 +07:00
Adnan Zahir
aea35d4b9f
Merge branch 'staging' into 'production'
...
Staging
See merge request mbugroup/lti-web-client!261
2026-01-27 10:36:16 +07:00
Adnan Zahir
5b134148a5
Merge branch 'development' into 'staging'
...
Development
See merge request mbugroup/lti-web-client!258
2026-01-27 09:13:31 +07:00
Adnan Zahir
32f4cf411f
Merge branch 'staging' into 'production'
...
Staging
See merge request mbugroup/lti-web-client!254
2026-01-24 14:28:37 +07:00
Adnan Zahir
04d01970aa
Merge branch 'development' into 'staging'
...
Development
See merge request mbugroup/lti-web-client!253
2026-01-24 14:19:24 +07:00
Adnan Zahir
84cbbaf238
Merge branch 'staging' into 'production'
...
Staging: Transfer To Laying Rework
See merge request mbugroup/lti-web-client!249
2026-01-24 13:06:33 +07:00
Adnan Zahir
9176373072
Merge branch 'development' into 'staging'
...
Development: Transfer To Laying Rework
See merge request mbugroup/lti-web-client!248
2026-01-24 12:59:23 +07:00
Adnan Zahir
5c50e4a0c1
Merge branch 'staging' into 'production'
...
Staging
See merge request mbugroup/lti-web-client!244
2026-01-24 11:25:29 +07:00
Adnan Zahir
7e64ec0f79
Merge branch 'development' into 'staging'
...
Development
See merge request mbugroup/lti-web-client!243
2026-01-24 11:16:16 +07:00
Adnan Zahir
e2be39af18
Merge branch 'staging' into 'production'
...
refactor(FE): Use local state for record date and disable
See merge request mbugroup/lti-web-client!237
2026-01-22 16:20:17 +07:00
Adnan Zahir
9322d6298c
Merge branch 'development' into 'staging'
...
Development
See merge request mbugroup/lti-web-client!236
2026-01-22 16:14:12 +07:00
Adnan Zahir
e9cd84e89e
Merge branch 'staging' into 'production'
...
Staging
See merge request mbugroup/lti-web-client!229
2026-01-21 15:15:04 +07:00
Adnan Zahir
89cfd31155
Merge branch 'development' into 'staging'
...
fix(FE): change nominal to absolute value, change form state initial balance,...
See merge request mbugroup/lti-web-client!228
2026-01-21 15:08:55 +07:00
Adnan Zahir
ec5962bccc
Merge branch 'staging' into 'production'
...
Staging
See merge request mbugroup/lti-web-client!214
2026-01-20 11:52:20 +07:00
Adnan Zahir
0eb4fa99a7
Merge branch 'development' into 'staging'
...
Development
See merge request mbugroup/lti-web-client!215
2026-01-20 11:46:20 +07:00
Adnan Zahir
2ef8b2dc9f
Merge branch 'development' into 'staging'
...
Merge branch 'dev/hotfix/restu' into 'staging'
See merge request mbugroup/lti-web-client!203
2026-01-17 14:36:51 +07:00
Adnan Zahir
aed1a1ed01
Merge branch 'development' into 'staging'
...
Hotfixes flock
See merge request mbugroup/lti-web-client!201
2026-01-17 11:29:55 +07:00
Adnan Zahir
2c9c2660c0
Merge branch 'development' into 'staging'
...
fix(FE): fix limit fetch data kandang
See merge request mbugroup/lti-web-client!198
2026-01-17 10:41:25 +07:00
Adnan Zahir
b840f42ae0
Merge branch 'development' into 'staging'
...
refactor(FE): Improve vehicle number validation message and set
See merge request mbugroup/lti-web-client!196
2026-01-17 09:05:42 +07:00
Adnan Zahir
6bc86af32f
Merge branch 'development' into 'staging'
...
Development
See merge request mbugroup/lti-web-client!189
2026-01-15 16:21:40 +07:00
kris
1603ae62e0
Merge branch 'development' into 'staging'
...
Development
See merge request mbugroup/lti-web-client!182
2026-01-15 06:55:35 +00:00
kris
8fd442621a
Update .gitlab-ci.yml file
2026-01-14 02:52:03 +00:00
kris
35471fc597
Update .gitlab-ci.yml file
2026-01-14 02:29:31 +00:00
M1 AIR
bd4242c4fd
chore: fix conflict gitlab yml
2026-01-13 15:38:14 +07:00
M1 AIR
56bde974ad
chore: gitlab ci yml 2026 01 13
2026-01-13 15:36:56 +07:00
M1 AIR
38258e4311
Merge remote-tracking branch 'origin/development' into staging
2026-01-13 15:27:31 +07:00
kris
149e525ff4
Update .gitlab-ci.yml file
2026-01-10 02:15:18 +00:00
M1 AIR
8fb761f02c
Merge remote-tracking branch 'origin/development' into staging
2026-01-09 15:53:47 +07:00
M1 AIR
3bc5a5b75e
delete .gitlab
2026-01-09 13:16:42 +07:00
M1 AIR
79112e0da8
Penyesuaian flow repo
2026-01-09 10:52:56 +07:00
M1 AIR
bf9eb91ea2
Merge remote-tracking branch 'origin/development' into staging
2026-01-06 19:03:21 +07:00
kris
e8c8ffadfe
Update .gitlab-ci.yml file
2026-01-03 11:01:19 +00:00
M1 AIR
2ae1c5b382
Merge development into staging (keep staging CI config)
2026-01-03 16:43:49 +07:00
kris
961f81411b
Merge branch 'development' into 'staging'
...
Development
See merge request mbugroup/lti-web-client!38
2025-12-18 10:30:13 +00:00
Mitra Berlian Unggas
de439275e0
Merge branch 'development' into 'staging'
...
refactor(FE-114): streamline cost field validation messages and enhance layout...
See merge request mbugroup/lti-web-client!37
2025-10-28 08:44:08 +00:00