This commit is contained in:
@@ -6573,22 +6573,22 @@ namespace AyaNovaQBI
|
|||||||
|
|
||||||
if (s.IndexOf("~CHARGE~") != -1)
|
if (s.IndexOf("~CHARGE~") != -1)
|
||||||
{
|
{
|
||||||
s = s.Replace("~CHARGE~", l.Charges.ToString("c"));
|
s = s.Replace("~CHARGE~", l.NetViz.ToString("c"));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (s.IndexOf("~ITEM~") != -1)
|
if (s.IndexOf("~ITEM~") != -1)
|
||||||
{
|
{
|
||||||
s = s.Replace("~ITEM~", NameFetcher.GetItem("aLoanItem", "aName", l.LoanItemID).RecordName);
|
s = s.Replace("~ITEM~",l.LoanUnitViz);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (s.IndexOf("~LOANED~") != -1)
|
if (s.IndexOf("~LOANED~") != -1)
|
||||||
{
|
{
|
||||||
s = s.Replace("~LOANED~", l.OutDate.ToString());
|
s = s.Replace("~LOANED~",DateToLocalString(l.OutDate));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (s.IndexOf("~LOAN_RETURNED~") != -1)
|
if (s.IndexOf("~LOAN_RETURNED~") != -1)
|
||||||
{
|
{
|
||||||
s = s.Replace("~LOAN_RETURNED~", l.ReturnDate.ToString());
|
s = s.Replace("~LOAN_RETURNED~", DateToLocalString(l.ReturnDate));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (s.IndexOf("~LOAN_NOTES~") != -1)
|
if (s.IndexOf("~LOAN_NOTES~") != -1)
|
||||||
|
|||||||
Reference in New Issue
Block a user