Browse Source

后端代码提交

mashengyi 3 years ago
parent
commit
e1a21bc251

+ 4 - 0
src/main/java/com/jkcredit/invoice/service/user/impl/UserServiceImpl.java

@@ -62,6 +62,10 @@ public class UserServiceImpl extends ServiceImpl<UserMapper, User> implements Us
             //设置角色名称
             user.setRoleName(role.getRoleName());
         }*/
+        //更新客户企业主体
+        Customer customer = customerMapper.selectByCustomerName(user.getUserName());
+        customer.setCompany(user.getCompany());
+        customerMapper.updateByPrimaryKeySelective(customer);
         return new RespR<>(baseMapper.updateUserInfo(user));
     }
 

+ 3 - 3
src/main/resources/mapper/invoice/BillInvoiceMapper.xml

@@ -79,7 +79,7 @@
                 and BINARY companyName LIKE CONCAT('%',#{billInvoice.companyName},'%')
             </if>
             <if test="billInvoice.waybillNum != null and billInvoice.waybillNum != ''">
-                and  instr(#{billInvoice.waybillNum},waybillNum)>0
+                and  instr(CONCAT(',',#{billInvoice.waybillNum},','),CONCAT(',',waybillNum,','))>0
             </if>
             <if test="billInvoice.buyerTaxpayerCode != null and billInvoice.buyerTaxpayerCode != ''">
                 and BINARY buyerTaxpayerCode = #{billInvoice.buyerTaxpayerCode}
@@ -88,10 +88,10 @@
                 and BINARY plateNum = #{billInvoice.plateNum}
             </if>
             <if test="billInvoice.invoiceCode != null and billInvoice.invoiceCode != ''">
-                and instr(#{billInvoice.invoiceCode},invoiceCode)>0
+                and instr(CONCAT(',',#{billInvoice.invoiceCode},','),CONCAT(',',invoiceCode,','))>0
             </if>
             <if test="billInvoice.invoiceNum != null and billInvoice.invoiceNum != ''">
-                and instr(#{billInvoice.invoiceNum},invoiceNum)>0
+                and instr(CONCAT(',',#{billInvoice.invoiceNum},','),CONCAT(',',invoiceNum,','))>0
             </if>
             <if test="billInvoice.invoiceMakeStart != null and billInvoice.invoiceMakeStart != ''">
                 and invoiceMakeTime BETWEEN #{billInvoice.invoiceMakeStart} and #{billInvoice.invoiceMakeEnd}

+ 2 - 2
src/main/resources/mapper/invoice/SelfCarInvoiceMapper.xml

@@ -64,7 +64,7 @@
                 and BINARY companyName LIKE CONCAT('%',#{selfCarInvoice.companyName},'%')
             </if>
             <if test="selfCarInvoice.tradeId != null and selfCarInvoice.tradeId != ''">
-                and  instr(#{selfCarInvoice.tradeId},tradeId)>0
+                and  instr(CONCAT(',',#{selfCarInvoice.tradeId},','),CONCAT(',',tradeId,','))>0
             </if>
             <if test="selfCarInvoice.plateNum != null and selfCarInvoice.plateNum != ''">
                 and BINARY plateNum = #{selfCarInvoice.plateNum}
@@ -73,7 +73,7 @@
                 and BINARY buyerTaxpayerCode = #{selfCarInvoice.buyerTaxpayerCode}
             </if>
             <if test="selfCarInvoice.cardId != null and selfCarInvoice.cardId != ''">
-                and instr(#{selfCarInvoice.cardId},cardId)>0
+                and instr(CONCAT(',',#{selfCarInvoice.cardId},','),CONCAT(',',cardId,','))>0
             </if>
             <if test="selfCarInvoice.invoiceCode != null and selfCarInvoice.invoiceCode != ''">
                 and BINARY invoiceCode = #{selfCarInvoice.invoiceCode}

+ 1 - 1
src/main/resources/mapper/waybill/NoCarWaybillMapper.xml

@@ -65,7 +65,7 @@
                 and BINARY companyName LIKE CONCAT('%',#{noCarWayBill.companyName},'%')
             </if>
             <if test="noCarWayBill.billNum != null and noCarWayBill.billNum != ''">
-                and  instr(#{noCarWayBill.billNum},billNum)>0
+                and   instr(CONCAT(',',#{noCarWayBill.billNum},','),CONCAT(',',billNum,','))>0
             </if>
             <if test="noCarWayBill.taxplayerCode != null and noCarWayBill.taxplayerCode != ''">
                 and BINARY taxplayerCode = #{noCarWayBill.taxplayerCode}

+ 2 - 2
src/main/resources/mapper/waybill/SellCarTradeMapper.xml

@@ -41,13 +41,13 @@
                 and BINARY companyName LIKE CONCAT('%',#{sellCarTrade.companyName},'%')
             </if>
             <if test="sellCarTrade.cardId != null and sellCarTrade.cardId != ''">
-                and instr(#{sellCarTrade.cardId},cardId)>0
+                and instr(CONCAT(',',#{sellCarTrade.cardId},','),CONCAT(',',cardId,','))>0
             </if>
             <if test="sellCarTrade.companyReferencenum != null and sellCarTrade.companyReferencenum != ''">
                 and BINARY companyReferencenum = #{sellCarTrade.companyReferencenum}
             </if>
             <if test="sellCarTrade.tradeId != null and sellCarTrade.tradeId != ''">
-                and  instr(#{sellCarTrade.tradeId},tradeId)>0
+                and  instr(CONCAT(',',#{sellCarTrade.tradeId},','),CONCAT(',',tradeId,','))>0
             </if>
             <if test="sellCarTrade.status != null and sellCarTrade.status != ''">
                 and status = #{sellCarTrade.status}