Commit 94de413dda615a7a3cf9a19e0909005b4e5e093e

Authored by 房远帅
1 parent 644757bc

楚江ERP:草稿要车单问题修改

... ... @@ -176,7 +176,7 @@ public class GetDraftRequestCarTicketBo extends BaseBo<DraftRequestCarTicket> {
176 176 * 是否展示审核按钮
177 177 */
178 178 @TableField(exist = false)
179   - private boolean showExamine = false;
  179 + private boolean showExamine;
180 180
181 181 public GetDraftRequestCarTicketBo() {
182 182
... ...
... ... @@ -194,7 +194,7 @@ public class DraftRequestCarTicketServiceImpl extends BaseMpServiceImpl<DraftReq
194 194 .set(DraftRequestCarTicket::getSpecialLoadingRequirement, StringUtil.isBlank(vo.getSpecialLoadingRequirement()) ? null : vo.getSpecialLoadingRequirement())
195 195 .set(DraftRequestCarTicket::getBusinessOfficeAuditor, StringUtil.isBlank(vo.getBusinessOfficeAuditor()) ? null : vo.getBusinessOfficeAuditor())
196 196 .set(DraftRequestCarTicket::getOperationsDepartmentAuditor, StringUtil.isBlank(vo.getOperationsDepartmentAuditor()) ? null : vo.getOperationsDepartmentAuditor())
197   - .set(DraftRequestCarTicket::getStatus, StringUtil.isBlank(vo.getStatus()) ? null : vo.getStatus())
  197 + .set(DraftRequestCarTicket::getStatus, StringUtil.isBlank(vo.getStatus()) ? "AUDIT" : vo.getStatus())
198 198 .eq(DraftRequestCarTicket::getId, vo.getId());
199 199
200 200 getBaseMapper().update(updateWrapper);
... ...