完善分配客户的功能

This commit is contained in:
jishenghua
2025-07-10 21:38:48 +08:00
parent 9330629196
commit af70f83839
7 changed files with 118 additions and 199 deletions

View File

@@ -75,4 +75,11 @@
where supplier = #{supplier} and type = #{type}
and ifnull(delete_flag,'0') !='1'
</select>
<select id="getAllCustomer" resultType="com.jsh.erp.datasource.vo.SupplierSimple">
select id, supplier from jsh_supplier
where type = '客户' and enabled = 1
and ifnull(delete_flag,'0') !='1'
order by sort asc, id desc
</select>
</mapper>