Compare commits

..

No commits in common. "a033aa2b5ee7ec01442f566c6040e9013a544c1a" and "7fc87580d713eeb5a5ceff59c25cad2b68ef412b" have entirely different histories.

3 changed files with 4 additions and 7 deletions

View File

@ -65,9 +65,6 @@
<tr>
<td><span>数量: <span style="display: inline;" th:text="${item.printNum}"></span></span></td>
</tr>
<tr>
<td><span>批次号: <span style="display: inline;" th:text="${item.batchNo}"></span></span></td>
</tr>
</table>
</div>
</div>

View File

@ -26,7 +26,7 @@ public class StructuralPackageOrderSearchQO extends SearchBaseQO {
private String externalOrderNo;
/**
* 机台编号
* 机台id
*/
private String workbenchCode;
private Long workbenchId;
}

View File

@ -23,8 +23,8 @@
<if test="request.externalOrderNo!=null and request.externalOrderNo!=''">
and o.external_order_no=#{request.externalOrderNo}
</if>
<if test="request.workbenchCode!=null and request.workbenchCode!=''">
and wb."no" ilike concat('%', #{request.workbenchCode}, '%')
<if test="request.workbenchId!=null">
and o.workbench_id=#{request.workbenchId}
</if>
<if test="request.startDate!=null">
and o.create_time>= #{request.startDate}