From bdcd37290b2061b1af2a21f01844cb337950c7de Mon Sep 17 00:00:00 2001 From: 5Amogh Date: Fri, 27 Mar 2026 12:49:24 +0530 Subject: [PATCH] fix: amm-2132 error msg handled --- .../physical-stock-entry/physical-stock-entry.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/app-modules/inventory/physical-stock-entry/physical-stock-entry.component.ts b/src/app/app-modules/inventory/physical-stock-entry/physical-stock-entry.component.ts index 2d3d8fd..c3b850b 100644 --- a/src/app/app-modules/inventory/physical-stock-entry/physical-stock-entry.component.ts +++ b/src/app/app-modules/inventory/physical-stock-entry/physical-stock-entry.component.ts @@ -235,7 +235,7 @@ export class PhysicalStockEntryComponent implements OnInit, OnChanges, DoCheck { 'success', ); this.reset(); - } else this.dialogService.alert(response.status, 'error'); + } else this.dialogService.alert(response.errorMessage, 'error'); }, (err) => { this.dialogService.alert(err, 'error');