| | |
| | | |
| | | if (!string.IsNullOrEmpty(dto.SeatID)) |
| | | { |
| | | var orderBanciZuowei = _context.OrderBanciZuoweis.Where(x => x.RecStatus == "A" && x.BanciId == dto.BanciId && x.ZuoweiId == dto.SeatID).FirstOrDefault(); |
| | | if (orderBanciZuowei != null) |
| | | var seatids = dto.SeatID.Trim(',').Split(','); |
| | | foreach (var seatid in seatids) |
| | | { |
| | | orderBanciZuowei.Status = "1"; |
| | | orderBanciZuowei.Modifier = dto.Creater; |
| | | orderBanciZuowei.Modifytime = dto.Createtime; |
| | | var orderBanciZuowei = _context.OrderBanciZuoweis.Where(x => x.RecStatus == "A" && x.BanciId == dto.BanciId && x.ZuoweiId == seatid).FirstOrDefault(); |
| | | if (orderBanciZuowei != null) |
| | | { |
| | | orderBanciZuowei.Status = "1"; |
| | | orderBanciZuowei.Modifier = dto.Creater; |
| | | orderBanciZuowei.Modifytime = dto.Createtime; |
| | | } |
| | | } |
| | | } |
| | | |