case 3976

This commit is contained in:
2021-09-24 23:42:59 +00:00
parent 542926b748
commit ed78e94af9
19 changed files with 38 additions and 29 deletions

View File

@@ -142,6 +142,7 @@ namespace AyaNova.Biz
var vnd = await ct.Vendor.AsNoTracking().Where(x => x.Id == po.VendorId).FirstOrDefaultAsync();
po.VendorViz = vnd.Name;
po.VendorAlertNotesViz = vnd.AlertNotes;
if (forReporting)
{
po.VendorAddressViz = vnd.Address;
@@ -164,7 +165,7 @@ namespace AyaNova.Biz
po.VendorContactViz = vnd.Contact;
po.VendorContactNotesViz = vnd.ContactNotes;
po.VendorPopUpNotesViz = vnd.PopUpNotes;
po.VendorAccountNumberViz = vnd.AccountNumber;
}