| | |
| | | |
| | | <!-- 根据id更新 部分更新 --> |
| | | <update id="updateOrderTime"> |
| | | UPDATE sys_proj_services set consume_time=#{consumeTime} WHERE id=#{id} |
| | | UPDATE sys_proj_services set |
| | | consume_time=#{serviceOrderTimeDto.consumeTime}, |
| | | yy_time=#{serviceOrderTimeDto.yyTime}, |
| | | create_time=#{serviceOrderTimeDto.createTime} |
| | | WHERE id=#{serviceOrderTimeDto.id} |
| | | </update> |
| | | |
| | | <!-- 设置服务单为已通知 --> |
| | |
| | | <if test="record.vipId != null and record.vipId !='' "> |
| | | and a.VIP_ID = #{record.vipId} |
| | | </if> |
| | | <if test="record.isOverTime != null and record.serviceNo !='' "> |
| | | and a.IS_OVERTIME > #{record.isOverTime} |
| | | </if> |
| | | |
| | | <if test="record.serviceNo != null and record.serviceNo !='' "> |
| | | and a.SERVICE_NO like CONCAT('%',#{record.serviceNo},'%') |
| | | </if> |