Przeglądaj źródła

补打票据(根据模板打印)更新

92895 5 lat temu
rodzic
commit
219adcd121

+ 1 - 0
java110-bean/src/main/java/com/java110/dto/feeReceipt/FeeReceiptDtoNew.java

@@ -39,6 +39,7 @@ public class FeeReceiptDtoNew extends PageDto implements Serializable {
     private String endTime;   //给公摊费使用的时间
     private String cycle;   //给公摊费使用的数量
 
+
     private Date createTime;
 
     private String statusCd = "0";

+ 1 - 0
java110-db/src/main/resources/mapper/fee/FeeReceiptDetailServiceDaoImplMapper.xml

@@ -24,6 +24,7 @@
         from fee_receipt_detail t
         left join pay_fee_detail pfd on t.detail_id = pfd.detail_id and pfd.status_cd = '0' and t.community_id = pfd.community_id
         where 1 =1
+
         <if test="area !=null and area != ''">
             and t.area= #{area}
         </if>

+ 1 - 0
service-fee/src/main/java/com/java110/fee/api/FeeReceiptApi.java

@@ -239,4 +239,5 @@ public class FeeReceiptApi {
         feeReceiptDetailDto.setReceiptId(receiptId);
         return getFeeReceiptDetailBMOImpl.get(feeReceiptDetailDto);
     }
+
 }