yq1 1 year ago
parent
commit
ced2878bb9

+ 12 - 0
src/router/modules/dialysis.js View File

@@ -928,6 +928,18 @@ export default {
928 928
         noCache: true
929 929
       }
930 930
     },
931
+    {
932
+      path: '/dialysis/print/batch/seventy',
933
+      component: () =>
934
+        import('@/xt_pages/dialysis/batch_print/batch_print_order_seventy'),
935
+      hidden: true,
936
+      is_menu: false,
937
+      name: 'batch_print_order_seventy',
938
+      meta: {
939
+        title: '批量打印',
940
+        noCache: true
941
+      }
942
+    },
931 943
     {
932 944
       path: '/dialysis/flow',
933 945
       component: () => import('@/xt_pages/dialysis/dialysisFlow'),

File diff suppressed because it is too large
+ 3177 - 0
src/xt_pages/dialysis/batch_print/batch_print_order_seventy.vue


+ 11 - 0
src/xt_pages/dialysis/bloodPresssWatch.vue View File

@@ -428,6 +428,15 @@
428 428
           type="primary"
429 429
           >批量打印</el-button>
430 430
       </template>
431
+      <template v-if="this.template_id == 70">
432
+        <el-button
433
+          size="small"
434
+          icon="el-icon-printer"
435
+          :disabled="selecting_schs.length == 0"
436
+          @click="batchPrintAction"
437
+          type="primary"
438
+          >批量打印</el-button>
439
+      </template>
431 440
     </div>
432 441
     <div class="app-container">
433 442
       <!-- <div class="filter-container">
@@ -2180,6 +2189,8 @@ export default {
2180 2189
       }
2181 2190
       else if (this.template_id == 68) {
2182 2191
         this.$router.push({ path: "/dialysis/print/batch/sixtyeight" });
2192
+      }else if (this.template_id == 70) {
2193
+        this.$router.push({ path: "/dialysis/print/batch/seventy" });
2183 2194
       }
2184 2195
     },
2185 2196
     batchPrintActionOne: function() {

+ 28 - 0
src/xt_pages/dialysis/dialysisPrintOrder.vue View File

@@ -857,6 +857,18 @@
857 857
         >
858 858
         </div>
859 859
       </template>
860
+      <template v-if="org_template_info.template_id == 70">
861
+        <div>
862
+          <el-button
863
+          :loading="loading"
864
+          size="small"
865
+          icon="el-icon-printer"
866
+          @click="printThisPage"
867
+          type="primary"
868
+          >打印</el-button
869
+        >
870
+        </div>
871
+      </template>
860 872
     </div>
861 873
     <div class="app-container" style="min-height: 0">
862 874
       <!--<div class="order-print-btn"-->
@@ -1328,6 +1340,12 @@
1328 1340
             v-if="org_template_info.template_id == 69"
1329 1341
           >
1330 1342
           </DialysisPrintOrderSixtynine>
1343
+          <DialysisPrintOrderSeventy
1344
+            v-bind:childResponse="childResponse"
1345
+            v-if="org_template_info.template_id == 70"
1346
+          >
1347
+
1348
+          </DialysisPrintOrderSeventy>
1331 1349
 
1332 1350
           <DialysisPrintOrderZero
1333 1351
             v-bind:childResponse="childResponse"
@@ -1421,6 +1439,7 @@ import DialysisPrintOrderSixtysix from './template/DialysisPrintOrderSixtysix'
1421 1439
 import DialysisPrintOrdersixtySeven from './template/DialysisPrintOrdersixtySeven'
1422 1440
 import DialysisPrintOrderSixtyeight from './template/DialysisPrintOrderSixtyeight'
1423 1441
 import DialysisPrintOrderSixtynine from './template/DialysisPrintOrderSixtynine'
1442
+import DialysisPrintOrderSeventy from './template/DialysisPrintOrderSeventy'
1424 1443
 import DialysisPrintOrderZero from './template/DialysisPrintOrderZero'
1425 1444
 export default {
1426 1445
   name: "dialysisPrintOrder",
@@ -1494,6 +1513,7 @@ export default {
1494 1513
     DialysisPrintOrderSixtysix,
1495 1514
     DialysisPrintOrderSixtyeight,
1496 1515
     DialysisPrintOrderSixtynine,
1516
+    DialysisPrintOrderSeventy,
1497 1517
     DialysisPrintOrderZero,
1498 1518
     LabelBox,
1499 1519
     BreadCrumb,
@@ -2086,6 +2106,14 @@ export default {
2086 2106
           scanStyles: false,
2087 2107
         });
2088 2108
         console.log('77777',this.org_template_info.template_id);
2109
+      }else if (this.org_template_info.template_id == 70 ) {
2110
+        printJS({
2111
+          printable: "dialysis-print-box-1",
2112
+          type: "html",
2113
+          style: style2,
2114
+          scanStyles: false,
2115
+        });
2116
+        console.log('77777',this.org_template_info.template_id);
2089 2117
       }
2090 2118
       else if (
2091 2119
         this.org_template_info.template_id == 53

File diff suppressed because it is too large
+ 4151 - 0
src/xt_pages/dialysis/template/DialysisPrintOrderSeventy.vue


+ 2 - 2
src/xt_pages/outpatientCharges/invoicePrint.vue View File

@@ -46,13 +46,13 @@
46 46
       </div>
47 47
     </div>
48 48
 
49
-     <div class="app-container" v-if="org_id == 10567 || org_id == 0">
49
+    <div class="app-container" v-if="org_id == 10567 || org_id == 0">
50 50
       <div class='dialysisPage'>
51 51
         <printfourteen :paramsObj="invoiceParams"></printfourteen>
52 52
       </div>
53 53
     </div>
54 54
 
55
-    <div class="app-container" style="padding-top:20px;" v-if="org_id == 10188">
55
+    <div class="app-container" style="padding-top:20px;" v-if="org_id == 10188 || org_id == 0 ">
56 56
       <div class='dialysisPage'>
57 57
         <printthirteen  :paramsObj="invoiceParams"></printthirteen>
58 58
       </div>

+ 48 - 50
src/xt_pages/outpatientCharges/invoiceTemplate/printfourteen.vue View File

@@ -1,84 +1,82 @@
1 1
 <template>
2 2
   <div id='invoice-print' style="position: relative;">
3 3
     <div>
4
-      <div style="display: inline-block; position: absolute;top: 30px;left: 30px;">{{list.order.mdtrt_id}}</div>
5
-
6
-
4
+      <div style="display: inline-block; position: absolute;top: 20px;left: 50px;">{{list.order.mdtrt_id}}</div>
7 5
     </div>
8 6
     <div>
9
-      <div style="display: inline-block; position: absolute;top: 60px;left: 30px;">血液透析中心</div>
10
-      <div style="display: inline-block; position: absolute;top: 60px;left: 260px;">{{  paramsObj.setl_time ? paramsObj.setl_time.split(' ')[0].slice(0,4) : getTime(list.date, '{y}-{m}-{d}').slice(0,4) }}</div>
11
-      <div style="display: inline-block; position: absolute;top: 60px;left: 330px;">{{ paramsObj.setl_time ? parseInt(paramsObj.setl_time.split(' ')[0].slice(5,7)) : getTime(list.date, '{y}-{m}-{d}').slice(5,7) }}</div>
12
-      <div style="display: inline-block; position: absolute;top: 60px;left: 400px;">{{ paramsObj.setl_time ? parseInt(paramsObj.setl_time.split(' ')[0].slice(8,11)) : getTime(list.date, '{y}-{m}-{d}').slice(8,11) }}</div>
7
+      <div style="display: inline-block; position: absolute;top: 40px;left: 50px;">血液透析中心</div>
8
+      <div style="display: inline-block; position: absolute;top: 40px;left: 460px;">{{  paramsObj.setl_time ? paramsObj.setl_time.split(' ')[0].slice(0,4) : getTime(list.date, '{y}-{m}-{d}').slice(0,4) }}</div>
9
+      <div style="display: inline-block; position: absolute;top: 40px;left: 520;">{{ paramsObj.setl_time ? parseInt(paramsObj.setl_time.split(' ')[0].slice(5,7)) : getTime(list.date, '{y}-{m}-{d}').slice(5,7) }}</div>
10
+      <div style="display: inline-block; position: absolute;top: 40px;left: 560px;">{{ paramsObj.setl_time ? parseInt(paramsObj.setl_time.split(' ')[0].slice(8,11)) : getTime(list.date, '{y}-{m}-{d}').slice(8,11) }}</div>
13 11
     </div>
14 12
     <div>
15
-      <div style="position: absolute;top: 90px;left: 60px;">{{ paramsObj.name }}</div>
13
+      <div style="position: absolute;top: 60px;left: 60px;">{{ paramsObj.name }}</div>
16 14
       <div style="display:flex;justify-content: space-between;">
17
-          <div  style="position: absolute;top:90px;left:270px;">√</div>
15
+          <div  style="position: absolute;top:60px;left:200px;">√</div>
18 16
           <div  style="position: absolute;top:90px;left:220px;"></div>
19 17
           <div  style="position: absolute;top:90px;left:250px;"></div>
20 18
       </div>
21 19
     </div>
22 20
 
23 21
     <div style="display:flex;justify-content: space-between;">
24
-      <div  style="position: absolute;top:120px;left:60px;" v-if="list.gender == 1">√</div>
25
-      <div  style="position: absolute;top:120px;left:80px;" v-else-if="list.gender == 2">√</div>
26
-      <div  style="position: absolute;top:120px;left:200px;">{{list.order.fund_pay_sumamt}}</div>
27
-      <div  style="position: absolute;top:120px;left:300px;">{{list.psn_cash_money}}</div>
28
-      <div  style="position: absolute;top:120px;left:400px;">{{"医保-门慢"}}</div>
22
+      <div  style="position: absolute;top:80px;left:60px;" v-if="list.gender == 1">√</div>
23
+      <div  style="position: absolute;top:80px;left:80px;" v-else-if="list.gender == 2">√</div>
24
+      <div  style="position: absolute;top:80px;left:220px;">{{list.order.fund_pay_sumamt}}</div>
25
+      <div  style="position: absolute;top:80px;left:380px;">{{list.psn_cash_money}}</div>
26
+      <div  style="position: absolute;top:80px;left:540px;">{{"医保-门慢"}}</div>
29 27
     </div>
30 28
     <div style="display:flex;justify-content: space-between;">
31 29
       <div v-if="list.westernMedicineCostTotal != ''">
32
-        <div  style="position: absolute;top:150px;left:0px;">西药费</div>
33
-        <div  style="position: absolute;top:150px;left:60px;">{{ list.westernMedicineCostTotal ? list.westernMedicineCostTotal.toFixed(2) : '' }}</div>
30
+        <div  style="position: absolute;top:140px;left:0px;">西药费</div>
31
+        <div  style="position: absolute;top:140px;left:60px;">{{ list.westernMedicineCostTotal ? list.westernMedicineCostTotal.toFixed(2) : '' }}</div>
34 32
       </div>
35 33
       <div v-if="list.laboratoryCostTotal != ''">
36
-        <div  style="position: absolute;top:150px;left:120px;">化验费</div>
37
-        <div  style="position: absolute;top:150px;left:180px;">{{ list.laboratoryCostTotal ? list.laboratoryCostTotal.toFixed(2) : '' }}</div>
34
+        <div  style="position: absolute;top:140px;left:140px;">化验费</div>
35
+        <div  style="position: absolute;top:140px;left:210px;">{{ list.laboratoryCostTotal ? list.laboratoryCostTotal.toFixed(2) : '' }}</div>
38 36
       </div>
39 37
       <div v-if="list.treatCostTotal != ''">
40
-        <div  style="position: absolute;top:150px;left:240px;">治疗费</div>
41
-        <div  style="position: absolute;top:150px;left:300px;">{{ list.treatCostTotal ? list.treatCostTotal.toFixed(2) : '' }}</div>
38
+        <div  style="position: absolute;top:140px;left:300px;">治疗费</div>
39
+        <div  style="position: absolute;top:140px;left:360px;">{{ list.treatCostTotal ? list.treatCostTotal.toFixed(2) : '' }}</div>
42 40
       </div>
43 41
       <div v-if="list.materialCostTotal != ''">
44
-        <div  style="position: absolute;top:150px;left:360px;">材料费</div>
45
-        <div  style="position: absolute;top:150px;left:420px;">{{ list.materialCostTotal ? list.materialCostTotal.toFixed(2) : '' }}</div>
42
+        <div  style="position: absolute;top:140px;left:480px;">材料费</div>
43
+        <div  style="position: absolute;top:140px;left:540px;">{{ list.materialCostTotal ? list.materialCostTotal.toFixed(2) : '' }}</div>
46 44
       </div>
47 45
     </div>
48 46
     <div style="display:flex;justify-content: space-between;">
49 47
       <div v-if="list.chineseTraditionalMedicineCostTotal !=' '">
50
-        <div  style="position: absolute;top:180px;left:0px;">中成药</div>
51
-        <div  style="position: absolute;top:180px;left:60px;">{{ list.chineseTraditionalMedicineCostTotal ? list.chineseTraditionalMedicineCostTotal.toFixed(2) : '' }}</div>
48
+        <div  style="position: absolute;top:160px;left:0px;">中成药</div>
49
+        <div  style="position: absolute;top:160px;left:60px;">{{ list.chineseTraditionalMedicineCostTotal ? list.chineseTraditionalMedicineCostTotal.toFixed(2) : '' }}</div>
52 50
       </div>
53 51
       <div v-if="list.zhenChaCostTotal !=''">
54
-        <div  style="position: absolute;top:180px;left:120px;">诊疗费</div>
55
-        <div  style="position: absolute;top:180px;left:180px;">{{ list.zhenChaCostTotal ? list.zhenChaCostTotal.toFixed(2) : '' }}</div>
52
+        <div  style="position: absolute;top:160px;left:140px;">诊疗费</div>
53
+        <div  style="position: absolute;top:160px;left:210px;">{{ list.zhenChaCostTotal ? list.zhenChaCostTotal.toFixed(2) : '' }}</div>
56 54
       </div>
57 55
       <div>
58
-        <div  style="position: absolute;top:180px;left:240px;"></div>
59
-        <div  style="position: absolute;top:180px;left:300px;"></div>
56
+        <div  style="position: absolute;top:160px;left:300px;"></div>
57
+        <div  style="position: absolute;top:160px;left:360px;"></div>
60 58
       </div>
61 59
       <div v-if="list.otherCostTotal !=''">
62
-        <div  style="position: absolute;top:180px;left:360px;"> 其他</div>
63
-        <div  style="position: absolute;top:180px;left:420px;">{{ list.otherCostTotal ? list.otherCostTotal.toFixed(2) : '' }}</div>
60
+        <div  style="position: absolute;top:160px;left:480px;"> 其他</div>
61
+        <div  style="position: absolute;top:160px;left:540px;">{{ list.otherCostTotal ? list.otherCostTotal.toFixed(2) : '' }}</div>
64 62
       </div>
65 63
     </div>
66 64
     <div style="display:flex;justify-content: space-between;">
67 65
       <div>
68
-        <div  style="position: absolute;top:210px;left:0px;"></div>
69
-        <div  style="position: absolute;top:210px;left:60px;"></div>
66
+        <div  style="position: absolute;top:180px;left:0px;"></div>
67
+        <div  style="position: absolute;top:180px;left:60px;"></div>
70 68
       </div>
71 69
       <div v-if="list.checkCostTotal !=''">
72
-        <div  style="position: absolute;top:210px;left:120px;">检查费</div>
73
-        <div  style="position: absolute;top:210px;left:180px;">{{ list.checkCostTotal ? list.checkCostTotal.toFixed(2) : '' }}</div>
70
+        <div  style="position: absolute;top:180px;left:140px;">检查费</div>
71
+        <div  style="position: absolute;top:180px;left:210px;">{{ list.checkCostTotal ? list.checkCostTotal.toFixed(2) : '' }}</div>
74 72
       </div>
75 73
       <div >
76
-        <div  style="position: absolute;top:210px;left:240px;"></div>
77
-        <div  style="position: absolute;top:210px;left:300px;"></div>
74
+        <div  style="position: absolute;top:180px;left:300px;"></div>
75
+        <div  style="position: absolute;top:180px;left:360px;"></div>
78 76
       </div>
79 77
       <div v-if="list.hiliCostTotal !=''">
80
-        <div  style="position: absolute;top:210px;left:360px;">护理费</div>
81
-        <div  style="position: absolute;top:210px;left:420px;">{{list.hiliCostTotal ? list.hiliCostTotal.toFixed(2) : ''}}</div>
78
+        <div  style="position: absolute;top:180px;left:480px;">护理费</div>
79
+        <div  style="position: absolute;top:180px;left:540px;">{{list.hiliCostTotal ? list.hiliCostTotal.toFixed(2) : ''}}</div>
82 80
       </div>
83 81
     </div>
84 82
     <div style="display:flex;justify-content: space-between;">
@@ -89,62 +87,62 @@
89 87
     </div>
90 88
     <div>
91 89
       <span>
92
-        <span  style="position: absolute;top:290px;left:100px">
90
+        <span  style="position: absolute;top:220px;left:140px">
93 91
           <span v-if="zhongwen.indexOf('万') > -1 && zhongwen.indexOf('拾') > -1 && zhongwen.indexOf('拾') == 1">
94 92
                     {{ zhongwen.substring(0,1) }}
95 93
                 </span>
96 94
                 <span v-else>零</span>
97 95
         </span>
98
-        <span  style="position: absolute;top:290px;left:140px">
96
+        <span  style="position: absolute;top:220px;left:180px">
99 97
             <span v-if="zhongwen.indexOf('万') > -1">
100 98
                     {{ zhongwen.substring(zhongwen.indexOf('万') - 1,zhongwen.indexOf('万')) }}
101 99
                 </span>
102 100
                 <span v-else>零</span>
103 101
         </span>
104
-        <span  style="position: absolute;top:290px;left:190px">
102
+        <span  style="position: absolute;top:220px;left:220px">
105 103
             <span v-if="zhongwen.indexOf('仟') > -1">
106 104
                     {{ zhongwen.substring(zhongwen.indexOf('仟') - 1,zhongwen.indexOf('仟')) }}
107 105
                 </span>
108 106
                 <span v-else>零</span>
109 107
         </span>
110
-        <span  style="position: absolute;top:290px;left:260px">
108
+        <span  style="position: absolute;top:220px;left:260px">
111 109
             <span v-if="zhongwen.indexOf('佰') > -1">
112 110
                     {{ zhongwen.substring(zhongwen.indexOf('佰') - 1,zhongwen.indexOf('佰')) }}
113 111
                 </span>
114 112
                 <span v-else>零</span>
115 113
         </span>
116
-        <span style="position: absolute;top:290px;left:310px">
114
+        <span style="position: absolute;top:220px;left:300px">
117 115
             <span v-if="zhongwen.indexOf('拾') > -1">
118 116
                     {{zhongwen.substring(zhongwen.indexOf('拾') - 1,zhongwen.indexOf('拾')) == '佰' ||  !zhongwen.substring(zhongwen.indexOf('拾') - 1,zhongwen.indexOf('拾'))? '壹' : zhongwen.substring(zhongwen.indexOf('拾') - 1,zhongwen.indexOf('拾')) }}
119 117
                 </span>
120 118
                 <span v-else>零</span>
121 119
         </span>
122
-        <span  style="position: absolute;top:290px;left:380px">
120
+        <span  style="position: absolute;top:220px;left:340px">
123 121
            <span v-if="zhongwen.indexOf('元') > -1 && zhongwen.substring(this.zhongwen.indexOf('元') - 1).substring(0,1)!= '拾'">
124 122
                     {{ zhongwen.substring(zhongwen.indexOf('元') - 1,zhongwen.indexOf('元')) }}
125 123
                 </span>
126 124
                 <span v-else>零</span>
127 125
         </span>
128
-        <span  style="position: absolute;top:290px;left:450px">
126
+        <span  style="position: absolute;top:220px;left:380px">
129 127
              <span v-if="zhongwen.indexOf('角') > -1">
130 128
                     {{ zhongwen.substring(zhongwen.indexOf('角') - 1,zhongwen.indexOf('角')) }}
131 129
                 </span>
132 130
                 <span v-else>零</span>
133 131
         </span>
134
-        <span  style="position: absolute;top:290px;left:510px">
132
+        <span  style="position: absolute;top:220px;left:420px">
135 133
              <span v-if="zhongwen.indexOf('分') > -1">
136 134
                     {{ zhongwen.substring(zhongwen.indexOf('分') - 1,zhongwen.indexOf('分')) }}
137 135
                 </span>
138 136
                 <span v-else>零</span>
139 137
         </span>
140 138
       </span>
141
-      <span style="position: absolute;top:290px;left:600px">{{ totalPrice.toFixed(2) }}</span>
139
+      <span style="position: absolute;top:220px;left:490px">{{ totalPrice.toFixed(2) }}</span>
142 140
     </div>
143 141
 
144 142
     <div style="display:flex;justify-content: space-between;">
145
-      <div style="position: absolute;top:390px;left:100px;">{{ org_name}}</div>
146
-      <div style="position: absolute;top:390px;left:240px;"></div>
147
-      <div style="position: absolute;top:390px;left:460px;">{{list.admin_user_name}}</div>
143
+      <div style="position: absolute;top:300px;left:100px;">{{ org_name}}</div>
144
+      <div style="position: absolute;top:300px;left:240px;"></div>
145
+      <div style="position: absolute;top:300px;left:380px;">{{list.admin_user_name}}</div>
148 146
     </div>
149 147
   </div>
150 148
 </template>