| | |
| | | /// </summary> |
| | | /// <param name="input"></param> |
| | | /// <returns></returns> |
| | | /// <exception cref="NotImplementedException"></exception> |
| | | public async Task<ApiAction<LOG_LABEL_PRINT>> GetRePrintInfo(RePrintInput input) |
| | | { |
| | | var result = new ApiAction<LOG_LABEL_PRINT>(); |
| | |
| | | } |
| | | |
| | | result.Data = await Biz.Db.Queryable<LOG_LABEL_PRINT>() |
| | | .WhereIF(input.ReqType == 0, q => q.SN.Equals(input.Code)) //白盒标签 |
| | | .WhereIF(input.ReqType == 0, q => q.SN.Equals(woSn.SN) || q.SN.Equals(woSn.FLOW_SN)) //白盒标签 |
| | | .WhereIF(input.ReqType == 1, q => q.SN.Equals(woSn.OUTER_SN)) //箱标签 |
| | | .FirstAsync(); |
| | | } |