wujianwei
2025-08-28 446f423ccea20bfbcd03b7f2f4a680567277b5c3
service/src/main/resources/mapper/cwgl/EstimatedReceivableMapper.xml
@@ -191,6 +191,18 @@
        where id = #{item.id}
        </foreach>
    </update>
    <update id="updateEstimatedReceivableBillStatus">
        UPDATE estimated_receivable
        SET related_bill_status = #{status}
        <if test="billName !=null and billName != ''">
            , related_bill_name = #{billName}
        </if>
        WHERE dispatch_no IN
        <foreach item="item" collection="list" open="(" separator="," close=")">
            #{item}
        </foreach>
    </update>
    <!--删除-->
    <delete id="deleteEstimatedReceivableById" parameterType="Integer">