wujianwei
2025-08-15 69f6a5c54eb608fb93d3a8638d4553ebed00f61d
service/src/main/resources/mapper/cwgl/PendingSettlementBusinessMapper.xml
@@ -274,6 +274,10 @@
        SELECT customer_name from pending_settlement_business group by customer_name
    </select>
    <select id="selectPendingSettlementBusinessDispatchNos" resultType="java.lang.String">
        SELECT dispatch_no from pending_settlement_business where  bill_id =    #{id}
    </select>
    <!-- 新增 -->
    <insert id="insertPendingSettlementBusiness" parameterType="com.ruoyi.cwgl.domain.PendingSettlementBusiness"  useGeneratedKeys="true" keyProperty="id">
@@ -521,6 +525,11 @@
            #{item}
        </foreach>
    </update>
    <update id="updatePendingSettlementBusinessByBillId">
          UPDATE pending_settlement_business set bill_name = #{billName}
          where bill_id = #{id}
    </update>
    <!--删除-->
    <delete id="deletePendingSettlementBusinessById" parameterType="Integer">
@@ -532,5 +541,9 @@
            #{id}
        </foreach>
    </delete>
    <delete id="cancelRelevancy">
         UPDATE pending_settlement_business set bill_id = null ,bill_name = null
         where id = #{id}
    </delete>
</mapper>