username@email.com
2022-09-21 d4f1d60996bcec152e100b231c37589270c5fae6
zhengcaioa/zhengcaioa/Controllers/Customer/CooperVisitController.cs
@@ -134,9 +134,25 @@
            {
                dto.Viscustomer = Viscustomer;
                dto.Vistime = DateTime.Now;
                if (!string.IsNullOrWhiteSpace(Viscustomer))
                {
                    var cooperatecustomCustomerDTO = _cooperatecustomCustomerService.Get(Viscustomer);
                    if (cooperatecustomCustomerDTO != null)
                    {
                        dto.ViscustomerName = cooperatecustomCustomerDTO.Name;
                    }
                }
            }
            ViewData["customer"] = _cooperatecustomCustomerService.GetList();
            if (!string.IsNullOrWhiteSpace(Viscustomer))
            {
                ViewData["customer"] = new List<CooperatecustomCustomerDTO>();
            }
            else
            {
                ViewData["customer"] = _cooperatecustomCustomerService.GetList();
            }