refactor(FE): Add depletion product handling in inventory adjustment

forms
This commit is contained in:
rstubryan
2026-03-06 10:52:59 +07:00
parent 667eb41eb2
commit 37bc7a85e5
3 changed files with 126 additions and 37 deletions
@@ -282,6 +282,9 @@ const InventoryAdjustmentTable = () => {
if (recordingOption) {
return recordingOption.label;
}
if (subtypeValue === 'RECORDING_DEPLETION_OUT') {
return 'Recording Depletion';
}
return subtypeValue || '-';
};