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() {