|
@@ -2070,20 +2070,20 @@ namespace OASystem.API.Controllers
|
|
|
decimal amountPayable = strs.Sum(it => it.AmountPayable);
|
|
|
|
|
|
decimal balancePayment = strs.Sum(it => it.BalancePayment);
|
|
|
- amountPayableStr += string.Format(@"{0}{1} |", amountPayable.ToString("#0.00"), item.CurrencyName);
|
|
|
+ amountPayableStr += string.Format(@"{0}{1} | ", amountPayable.ToString("#0.00"), item.CurrencyName);
|
|
|
|
|
|
|
|
|
if (item.CurrencyId == 836)
|
|
|
{
|
|
|
decimal thisPayment = ccpCurrencyPrices.Sum(it => it.ThisPayment);
|
|
|
- thisPaymentStr += string.Format(@"{0}{1} |", thisPayment.ToString("#0.00"), item.CurrencyName);
|
|
|
+ thisPaymentStr += string.Format(@"{0}{1} | ", thisPayment.ToString("#0.00"), item.CurrencyName);
|
|
|
}
|
|
|
else
|
|
|
{
|
|
|
- thisPaymentStr += string.Format(@"{0}{1} |", "0.00", item.CurrencyName);
|
|
|
+ thisPaymentStr += string.Format(@"{0}{1} | ", "0.00", item.CurrencyName);
|
|
|
}
|
|
|
|
|
|
- balancePaymentStr += string.Format(@"{0}{1} |", balancePayment.ToString("#0.00"), item.CurrencyName);
|
|
|
+ balancePaymentStr += string.Format(@"{0}{1} | ", balancePayment.ToString("#0.00"), item.CurrencyName);
|
|
|
|
|
|
|
|
|
if (item.CurrencyId == 836)
|