Parcourir la source

管理后台余额预警查询,最大值选择0不能进行筛选

mashengyi il y a 3 ans
Parent
commit
833e888768

+ 7 - 2
src/main/java/com/jkcredit/invoice/controller/localBussiness/CustomerController.java

@@ -374,10 +374,15 @@ public class CustomerController {
     @LoginRequired
     public RespR getCustomerMoneysByPage(Page page, Customer customer) {
         Param param = paramService.getParamsByParamName("CUST_MONEY_WARNING");
-        if(customer.getMoneyUpper() == null || customer.getMoneyUpper() ==0){
+        IPage ipage = null;
+        if(customer.getMoneyUpper() == null || customer.getMoneyUpper() == -1){
             customer.setMoneyUpper(Double.valueOf(param.getParamValue()));
+            ipage = customerService.findAllNomoneyCustomers(page, customer);
+        }else if(customer.getMoneyUpper() == null || customer.getMoneyUpper() == 0){
+            ipage = customerService.findAllNomoneyCustomersByZero(page, customer);
+        }else {
+            ipage = customerService.findAllNomoneyCustomers(page, customer);
         }
-        IPage ipage = customerService.findAllNomoneyCustomers(page, customer);
 
         return new RespR(ipage);
     }

+ 1 - 0
src/main/java/com/jkcredit/invoice/mapper/customer/CustomerMapper.java

@@ -27,6 +27,7 @@ public interface CustomerMapper extends BaseMapper<Customer> {
 
     IPage<List<Customer>> selectAllByPage(Page page, @Param("customer") Customer customer);
     IPage<List<Customer>> selectAllByPageForNoMoney(Page page, @Param("customer") Customer customer);
+    IPage<List<Customer>> selectAllByPageForNoMoneyByZero(Page page, @Param("customer") Customer customer);
 
 
     Customer selectByAppKeyAndAppSecret(String customerName, String appSecret);

+ 7 - 0
src/main/java/com/jkcredit/invoice/service/customer/CustomerService.java

@@ -27,6 +27,13 @@ public interface CustomerService extends IService<Customer>{
      * @return
      */
     IPage findAllNomoneyCustomers(Page page, Customer customer);
+    /**
+     * 查找所有客户
+     * @param page
+     * @param customer
+     * @return
+     */
+    IPage findAllNomoneyCustomersByZero(Page page, Customer customer);
 
     /**
      * 查找所有客户

+ 7 - 0
src/main/java/com/jkcredit/invoice/service/customer/impl/CustomerServiceImpl.java

@@ -49,6 +49,13 @@ public class CustomerServiceImpl extends ServiceImpl<CustomerMapper,Customer> im
         return customerMapper.selectAllByPageForNoMoney(page,customer);
     }
 
+
+
+    @Override
+    public IPage findAllNomoneyCustomersByZero(Page page, Customer customer) {
+        return customerMapper.selectAllByPageForNoMoneyByZero(page,customer);
+    }
+
     @Override
     public Boolean addCustomers(Customer customer) {
         log.info("开始添加客户信息:CustomerServiceImpl.addCustomers{}",customer);

+ 22 - 3
src/main/resources/mapper/customer/CustomerMapper.xml

@@ -67,7 +67,7 @@
   <select id="selectAllByPageForNoMoney" resultMap="BaseResultMap">
     select
     <include refid="Base_Column_List_app_secret" />
-    from t_customer
+    from t_customer t
     <where>
       <if test="customer.customerName != null and customer.customerName != ''">
         and  customer_name = BINARY #{customer.customerName}
@@ -76,14 +76,33 @@
         and  company LIKE BINARY CONCAT('%',#{customer.company},'%')
       </if>
       <if test="customer.moneyUpper != null and customer.moneyUpper != ''">
-        and  #{customer.moneyUpper}>=account_balance
+        and  #{customer.moneyUpper}>=t.account_balance
       </if>
       <if test="customer.moneyLower != null and customer.moneyLower != ''">
-        and  account_balance>=#{customer.moneyLower}
+        and  t.account_balance>=#{customer.moneyLower}
+      </if>
+    </where>
+    order by first_sign desc
+  </select>
+
+  <select id="selectAllByPageForNoMoneyByZero" resultMap="BaseResultMap">
+    select
+    <include refid="Base_Column_List_app_secret" />
+    from t_customer t
+    <where>
+      <if test="customer.customerName != null and customer.customerName != ''">
+        and  customer_name = BINARY #{customer.customerName}
+      </if>
+      <if test="customer.company != null and customer.company != ''">
+        and  company LIKE BINARY CONCAT('%',#{customer.company},'%')
       </if>
+        and  #{customer.moneyUpper} <![CDATA[>=]]> t.account_balance
+        and  t.account_balance  <![CDATA[<=]]>  #{customer.moneyLower}
     </where>
     order by first_sign desc
   </select>
+
+
   <select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.Integer" >
     select 
     <include refid="Base_Column_List" />