From b26f26f6e16b689e3a22bf90d5a7b3aeb74494e9 Mon Sep 17 00:00:00 2001 From: shabeelashraf5 <05shebz@gmail.com> Date: Sun, 19 Jan 2025 23:25:01 +0530 Subject: [PATCH] Modified currency --- .../src/app/portal/employee/purchase/add-po/add-po.component.ts | 2 +- .../employee/sales/add-quotation/add-quotation.component.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/app/portal/employee/purchase/add-po/add-po.component.ts b/client/src/app/portal/employee/purchase/add-po/add-po.component.ts index bf87dc9..dd4d67c 100644 --- a/client/src/app/portal/employee/purchase/add-po/add-po.component.ts +++ b/client/src/app/portal/employee/purchase/add-po/add-po.component.ts @@ -37,7 +37,7 @@ export class AddPoComponent implements OnInit, OnDestroy { addPoSubscription!: Subscription uomList: string[] = ['meter', 'no', 'pcs', 'kg', 'litre']; - currencyList: string[] = ['AED', 'Dollar', 'Rupees', 'Euro', 'Pound', 'Yen']; + currencyList: string[] = ['AED', 'Dollar', 'INR', 'Euro', 'Pound', 'Yen']; items: Product[] = [{ product: '', qty: 1 , uom: '', unit: 0 , total: 0 }]; diff --git a/client/src/app/portal/employee/sales/add-quotation/add-quotation.component.ts b/client/src/app/portal/employee/sales/add-quotation/add-quotation.component.ts index 5b2918d..d39f05d 100644 --- a/client/src/app/portal/employee/sales/add-quotation/add-quotation.component.ts +++ b/client/src/app/portal/employee/sales/add-quotation/add-quotation.component.ts @@ -60,7 +60,7 @@ export class AddQuotationComponent implements OnInit, OnDestroy { } uomList: string[] = ['meter', 'no', 'pcs', 'kg', 'litre']; - currencyList: string[] = ['AED', 'Dollar', 'Rupees', 'Euro', 'Pound', 'Yen']; + currencyList: string[] = ['AED', 'Dollar', 'INR', 'Euro', 'Pound', 'Yen']; ngOnInit() {