Admin Portal - Profile

This commit is contained in:
hillelcoren 2022-05-18 06:39:22 +00:00
parent d813b19532
commit 6a4291a5bd

View File

@ -347102,8 +347102,10 @@
} else
t1 = false;
if (t1) {
exchangeRate = invoice.exchangeRate;
if (!(exchangeRate !== 1 && exchangeRate !== 0)) {
t1 = invoice.exchangeRate;
if (t1 !== 1 && t1 !== 0)
exchangeRate = 1 / t1;
else {
t1 = t2.settings.currencyId;
if (t1 == null)
t1 = "1";
@ -347179,8 +347181,10 @@
} else
t2 = false;
if (t2) {
exchangeRate = quote.exchangeRate;
if (!(exchangeRate !== 1 && exchangeRate !== 0)) {
t2 = quote.exchangeRate;
if (t2 !== 1 && t2 !== 0)
exchangeRate = 1 / t2;
else {
t2 = t3.settings.currencyId;
if (t2 == null)
t2 = "1";
@ -347380,8 +347384,10 @@
} else
t5 = false;
if (t5) {
exchangeRate = _this.invoice.exchangeRate;
if (!(exchangeRate !== 1 && exchangeRate !== 0)) {
t5 = _this.invoice.exchangeRate;
if (t5 !== 1 && t5 !== 0)
exchangeRate = 1 / t5;
else {
t3 = t3.settings.currencyId;
t2 = t2.settings.currencyId;
if (t2 == null)