lilei 2 years ago
parent
commit
f7ecb67eda
2 changed files with 23 additions and 19 deletions
  1. 1 1
      public/version.json
  2. 22 18
      src/views/salesManagement/receiptPrint/printModel.vue

+ 1 - 1
public/version.json

@@ -1,4 +1,4 @@
 {
-    "version": "2.1.68",
+    "version": "2.1.69",
     "message": "发现有新版本发布,确定更新系统?"
 }

+ 22 - 18
src/views/salesManagement/receiptPrint/printModel.vue

@@ -6,7 +6,7 @@
         v-for="(fcItem,index) in financeBookList"
         class="sendGood-print-box"
         :key="index+'-fcitem'"
-        style="width:564pt;margin:0 auto;font-size:14px;">
+        style="width:564pt;margin:0 auto;">
         <table
           ref="printBox"
           cellspacing="0"
@@ -15,47 +15,51 @@
           <tr>
             <td>
               <div class="print-box" style="width: 564pt;margin-left:1.5pt;">
-                <div style="text-align:center;margin:15pt 0 5pt;font-size:24px;font-weight: bold;">收款通知单</div>
+                <div style="text-align:center;margin:15pt 0 5pt;font-size:22px;font-weight: bold;">收款通知单</div>
                 <div>
                   <div>
                     <table border="1" style="width: 564pt;border-collapse: collapse;text-align: center;">
                       <tr>
                         <th style="line-height: 20pt;width: 56pt;background:#f6f6f6;">日期</th>
-                        <th style="line-height: 20pt;width: 80pt;background:#f6f6f6;">客户名称</th>
-                        <th style="line-height: 20pt;width: 60pt;background:#f6f6f6;">订单金额</th>
-                        <th style="line-height: 20pt;width: 60pt;background:#f6f6f6;">收款金额</th>
-                        <th style="line-height: 20pt;width: 60pt;background:#f6f6f6;">使用授信</th>
-                        <th style="line-height: 20pt;width: 60pt;background:#f6f6f6;">余款抵扣</th>
-                        <th style="line-height: 20pt;width: 60pt;background:#f6f6f6;">汇入银行</th>
-                        <th style="line-height: 20pt;width: 60pt;background:#f6f6f6;">足额打款</th>
-                        <th style="line-height: 20pt;width: 68pt;background:#f6f6f6;">说明</th>
+                        <th style="line-height: 20pt;width: 62pt;background:#f6f6f6;">客户名称</th>
+                        <th style="line-height: 20pt;width: 62pt;background:#f6f6f6;">营业执照名称</th>
+                        <th style="line-height: 20pt;width: 54pt;background:#f6f6f6;">订单金额</th>
+                        <th style="line-height: 20pt;width: 54pt;background:#f6f6f6;">收款金额</th>
+                        <th style="line-height: 20pt;width: 54pt;background:#f6f6f6;">使用授信</th>
+                        <th style="line-height: 20pt;width: 54pt;background:#f6f6f6;">余款抵扣</th>
+                        <th style="line-height: 20pt;width: 54pt;background:#f6f6f6;">汇入银行</th>
+                        <th style="line-height: 20pt;width: 54pt;background:#f6f6f6;">足额打款</th>
+                        <th style="line-height: 20pt;width: 60pt;background:#f6f6f6;">说明</th>
                       </tr>
                       <tr v-for="item in fcItem.subList" :key="item.bookDetailSn">
                         <td style="padding:3pt;width: 50pt;">{{ moment(item.receiptDate).format('MM月DD日') }}</td>
-                        <td style="padding:3pt;width: 74pt;text-align:left;">
+                        <td style="padding:3pt;width: 56pt;text-align:left;">
                           {{ item.payerName }}
                           <div>
                             {{ item.dealerEntity ? item.dealerEntity.kdMidCustomerFnumber : '' }}
                           </div>
                         </td>
-                        <td style="padding:3pt;width: 54pt;text-align:center;">
+                        <td style="padding:3pt;width: 56pt;text-align:left;">
+                          {{ item.payerAccountInfo }}
+                        </td>
+                        <td style="padding:3pt;width: 48pt;text-align:center;">
                           {{ item.orderAmount?item.orderAmount.toFixed(2):'0.00' }}
                         </td>
-                        <td style="padding:3pt;width: 54pt;text-align:center;">
+                        <td style="padding:3pt;width: 48pt;text-align:center;">
                           {{ item.receiptAmount?item.receiptAmount.toFixed(2):'0.00' }}
                         </td>
-                        <td style="padding:3pt;width: 54pt;text-align:center;">
+                        <td style="padding:3pt;width: 48pt;text-align:center;">
                           {{ getTotal(item.detailItemUseList||[]) }}
                         </td>
-                        <td style="padding:3pt;width: 54pt;text-align:center;">
+                        <td style="padding:3pt;width: 48pt;text-align:center;">
                           {{ item.balanceAmount?item.balanceAmount.toFixed(2):'0.00' }}
                         </td>
-                        <td style="padding:3pt;width: 54pt;">
+                        <td style="padding:3pt;width: 48pt;">
                           {{ item.bankAccount }}<br>
                           {{ item.bankName }}
                         </td>
-                        <td style="padding:3pt;width: 54pt;">{{ item.fullPaymentFlagDictValue }}</td>
-                        <td style="padding:3pt;width: 62pt;word-break:break-all;">{{ item.remarks }}</td>
+                        <td style="padding:3pt;width: 48pt;">{{ item.fullPaymentFlagDictValue }}</td>
+                        <td style="padding:3pt;width: 54pt;word-break:break-all;">{{ item.remarks }}</td>
                       </tr>
                     </table>
                     <div style="padding:5pt 0;border-bottom: 1px solid #333;">使用授信明细:{{ fcItem.detail||'暂无。' }}</div>