15815213711
2025-07-30 d78791713edbe8e80fb06f08e3474ac0491ebc9b
修改ID,修改加密方式
3个文件已修改
8 ■■■■ 已修改文件
pom.xml 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
service/src/main/resources/mapper/cwgl/DispatchOrderMapper.xml 3 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ui/admin-ui3/src/views/cwgl/dispatchOrder/index.vue 3 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
pom.xml
@@ -23,7 +23,7 @@
    <properties>
        <!--启动项目的包名-->
        <project.admin.package.name>rybase-admin-master</project.admin.package.name>
        <project.admin.package.name>cwgl-admin-master</project.admin.package.name>
        <ruoyi.version>${project.version}</ruoyi.version>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
service/src/main/resources/mapper/cwgl/DispatchOrderMapper.xml
@@ -66,7 +66,8 @@
        <if test="isDeleted != null "> and thisTab.is_deleted = #{isDeleted}</if>
    </sql>
    <sql id="whereCondition2">
        <if test="dispatchNo != null  and dispatchNo != ''"> and ts.DISPATCH_NO = #{dispatchNo}</if>
        <if test="dispatchNo != null  and dispatchNo != ''"> and ts.DISPATCH_NO like concat('%', #{dispatchNo}, '%')</if>
        <if test="customerName != null  and customerName != ''"> and customer.`NAME` like concat('%', #{customerName}, '%')</if>
        <if test="transportMode != null  and transportMode != ''"> and ts.TRANSPORT_MODE = #{transportMode}</if>
        <if test="productName != null  and productName != ''"> and  ts.PRODUCT_ID like concat('%', #{productName}, '%')</if>
        <if test="carrierName != null  and carrierName != ''"> and  bp.NAME  like concat('%', #{carrierName}, '%')</if>
ui/admin-ui3/src/views/cwgl/dispatchOrder/index.vue
@@ -121,6 +121,9 @@
    productName: {
      label: '服务产品名称', width: 120, showOverflowTooltip: true
    },
    customerName: {
      label: '客户名称', search: true, width: 200, showOverflowTooltip: true
    },
    carrierName: {
      label: '承运商', search: true, width: 200, showOverflowTooltip: true
    },