Browse Source

打印单

XMLWAN 4 years ago
parent
commit
8967a95436

+ 4 - 2
src/api/dialysis_record.js View File

@@ -47,7 +47,7 @@ export function editMonitor(patient_id, schedule_date, data, mode) {
47 47
   })
48 48
 }
49 49
 
50
-export function startDialysis(patient_id, schedule_date, nurse_id, bed_id, lood_drawing, puncture_nurse_id, start_time, schedual_type, mode,washpipe_nurse) {
50
+export function startDialysis(patient_id, schedule_date, nurse_id, bed_id, lood_drawing, puncture_nurse_id, start_time, schedual_type, mode,washpipe_nurse,change_nurse) {
51 51
   var params = {
52 52
     patient_id: patient_id,
53 53
     date: schedule_date,
@@ -58,8 +58,10 @@ export function startDialysis(patient_id, schedule_date, nurse_id, bed_id, lood_
58 58
     lood_drawing: lood_drawing,
59 59
     schedual_type: schedual_type,
60 60
     mode: mode,
61
-    washpipe_nurse:washpipe_nurse
61
+    washpipe_nurse:washpipe_nurse,
62
+    change_nurse:change_nurse
62 63
   }
64
+  console.log("params",params)
63 65
   return request({
64 66
     url: '/api/dialysis/start_record',
65 67
     method: 'post',

+ 33 - 0
src/router/modules/stock.js View File

@@ -201,5 +201,38 @@ export default {
201 201
         noCache: true
202 202
       }
203 203
     },
204
+    {
205
+      path:"/stock/drugcancelprint",
206
+      component:()=>import('@/xt_pages/stock/drugs/drugCancelOurderPrint'),
207
+      hidden: true,
208
+      is_menu: false,
209
+      name: 'stock_print',
210
+      meta: {
211
+        title: '库存打印',
212
+        noCache: true
213
+      }
214
+    },
215
+    {
216
+      path:"/stock/drugoutorderprint",
217
+      component:()=>import('@/xt_pages/stock/drugs/drugOutOrderPrint'),
218
+      hidden: true,
219
+      is_menu: false,
220
+      name: 'stock_print',
221
+      meta: {
222
+        title: '出库打印',
223
+        noCache: true
224
+      }
225
+    },
226
+    {
227
+      path:"/stock/drugcanceldetaiprint",
228
+      component:()=>import('@/xt_pages/stock/drugs/drugCancelDetailPrint'),
229
+      hidden: true,
230
+      is_menu: false,
231
+      name: 'stock_print',
232
+      meta: {
233
+        title: '出库打印',
234
+        noCache: true
235
+      }
236
+    }
204 237
   ]
205 238
 }

+ 9 - 0
src/xt_pages/dialysis/details/DialysisPrescription.vue View File

@@ -40,6 +40,12 @@
40 40
           <span class="content">{{ anticoagulant }}</span>
41 41
         </li>
42 42
 
43
+        <li v-if="isShow('抗凝剂商品名称')">
44
+          <label>抗凝剂商品名称 : </label>
45
+          <span class="content">{{ antioxidant_commodity_name }}</span>
46
+        </li>
47
+
48
+
43 49
         <li v-if=" isShow('总量') && getValueStr('anticoagulant', 'anticoagulant') != 5 " >
44 50
           <label>总量: </label>
45 51
           <span class="content" v-if="getValueStr('anticoagulant', 'anticoagulant') != 1">{{anticoagulant_zongliang != "0" ? anticoagulant_zongliang : ""}}</span>
@@ -550,6 +556,9 @@ export default {
550 556
     target_ktv: function() {
551 557
       var v = this.getValueStr('target_ktv', 'target_ktv')
552 558
       return v.length == 0 ? '0' : v
559
+    },
560
+    antioxidant_commodity_name:function(){
561
+      return this.getValueStr('antioxidant_commodity_name','antioxidant_commodity_name')
553 562
     }
554 563
   },
555 564
   created() {

+ 28 - 7
src/xt_pages/dialysis/details/dialog/computer_dialog.vue View File

@@ -23,14 +23,23 @@
23 23
         </el-form-item>
24 24
         <el-form-item label="穿刺者"  v-if="isShowFiled('穿刺者')">
25 25
           <el-select v-model="form.puncture_nurse_id" placeholder="请选择穿刺护士">
26
-            <el-option v-for="(admin, index) in admins" :key="index" :value="admin.id" :label="admin.name"></el-option>
26
+            <el-option v-for="(admin, index) in adminRoles" :key="index" :value="admin.id" :label="admin.name"></el-option>
27
+          </el-select>
28
+        </el-form-item>
29
+        
30
+        <el-form-item label="换药护士"  v-if="isShowFiled('换药护士')">
31
+          <el-select v-model="form.change_nurse" placeholder="换药护士">
32
+            <el-option v-for="(admin, index) in adminRoles" :key="index" :value="admin.id" :label="admin.name"></el-option>
27 33
           </el-select>
28 34
         </el-form-item>
35
+
29 36
         <el-form-item label="冲管护士"  v-if="isShowFiled('冲管护士')">
30 37
           <el-select v-model="form.washpipe_nurse" placeholder="请选择冲管护士">
31 38
             <el-option v-for="(admin, index) in admins" :key="index" :value="admin.id" :label="admin.name"></el-option>
32 39
           </el-select>
33 40
         </el-form-item>
41
+
42
+     
34 43
         <el-form-item label="引血(ml/min)" v-if="template_id == 6">
35 44
           <el-input type="number" v-model="form.blood_drawing" style="width:200px;"></el-input>
36 45
         </el-form-item>
@@ -88,7 +97,8 @@
88 97
           nurse_id: '',
89 98
           start_time: '',
90 99
           puncture_nurse_id: '',
91
-          blood_drawing: 100
100
+          blood_drawing: 100,
101
+          change_nurse:""
92 102
         },
93 103
         schedual_type: 0,
94 104
         schedules_type: [
@@ -96,7 +106,8 @@
96 106
           { id: 2, name: '下午' },
97 107
           { id: 3, name: '晚上' }
98 108
         ], // 该排班的区里的床位
99
-        isPremission: false
109
+        isPremission: false,
110
+        adminRoles:[{id:0,name:"请选择"}]
100 111
       }
101 112
     },
102 113
     props: {
@@ -126,7 +137,8 @@
126 137
       this.form.nurse_id = this.dialysis_order.id == 0 ? this.$store.getters.xt_user.user.id : this.dialysis_order.start_nurse
127 138
       this.form.puncture_nurse_id = this.dialysis_order.id == 0 ? this.$store.getters.xt_user.user.id : this.dialysis_order.puncture_nurse
128 139
       this.form.washpipe_nurse = this.dialysis_order.id == 0 ? this.$store.getters.xt_user.user.id : this.dialysis_order.washpipe_nurse
129
-
140
+      
141
+     
130 142
       if (this.form.puncture_nurse_id == 0) {
131 143
         this.form.puncture_nurse_id = this.$store.getters.xt_user.user.id
132 144
       }
@@ -141,7 +153,7 @@
141 153
         this.form.nurse_id = this.dialysis_order.id == 0 ? this.$store.getters.xt_user.user.id : this.dialysis_order.start_nurse
142 154
         this.form.puncture_nurse_id = this.dialysis_order.id == 0 ? this.$store.getters.xt_user.user.id : this.dialysis_order.puncture_nurse
143 155
         this.form.washpipe_nurse = this.dialysis_order.id == 0 ? this.$store.getters.xt_user.user.id : this.dialysis_order.washpipe_nurse
144
-
156
+        this.form.change_nurse = this.dialysis_order.id == 0 ? this.$store.getters.xt_user.user.id : this.dialysis_order.change_nurse
145 157
         var nowDate = new Date()
146 158
         var nowYear = nowDate.getFullYear()
147 159
         var nowMonth = nowDate.getMonth() + 1
@@ -157,6 +169,15 @@
157 169
           (nowDay < 10 ? '0' + nowDay : nowDay) + ' ' + (nowHours < 10 ? '0' + nowHours : nowHours) + ':' + (nowMinutes < 10 ? '0' + nowMinutes : nowMinutes)
158 170
         this.form.start_time = this.dialysis_order.id == 0 ? time : this.getTime(this.dialysis_order.start_time, '{y}-{m}-{d} {h}:{i}')
159 171
 
172
+      },
173
+      admins:function(){
174
+        console.log("admins",this.admins)
175
+        if(this.admins.length > 0 ){
176
+          for(let i=0;i<this.admins.length;i++){
177
+            this.adminRoles.push(this.admins[i])
178
+          } 
179
+        }
180
+        console.log("人员",this.adminRoles)
160 181
       }
161 182
     },
162 183
     computed: {},
@@ -304,7 +325,7 @@
304 325
         this.loading = true
305 326
         let mode = '1'
306 327
 
307
-        startDialysis(this.patient_id, parseTime(this.schedule_date, '{y}-{m}-{d}'), this.form.nurse_id, this.form.bed_id, this.form.lood_drawing, this.form.puncture_nurse_id, this.form.start_time, this.schedual_type, mode,this.form.washpipe_nurse).then(rs => {
328
+        startDialysis(this.patient_id, parseTime(this.schedule_date, '{y}-{m}-{d}'), this.form.nurse_id, this.form.bed_id, this.form.lood_drawing, this.form.puncture_nurse_id, this.form.start_time, this.schedual_type, mode,this.form.washpipe_nurse,this.form.change_nurse).then(rs => {
308 329
           this.loading = false
309 330
           var resp = rs.data
310 331
           if (resp.state == 1) {
@@ -334,7 +355,7 @@
334 355
         ParamsQuery['start_time'] = this.form.start_time
335 356
         ParamsQuery['puncture_nurse'] = this.form.puncture_nurse_id
336 357
         ParamsQuery['washpipe_nurse'] = this.form.washpipe_nurse
337
-
358
+        ParamsQuery['change_nurse'] = this.form.change_nurse
338 359
 
339 360
         ParamsQuery['mode'] = "2"
340 361
         if (this.dialysis_order.creator != this.$store.getters.xt_user.user.id) {

+ 11 - 1
src/xt_pages/dialysis/details/dialog/dialysisPrescriptionDialog.vue View File

@@ -139,6 +139,15 @@
139 139
               </el-select>
140 140
             </el-form-item>
141 141
           </el-col>
142
+          
143
+
144
+         <el-col :span="8" v-if="isShows('抗凝剂商品名称')">
145
+            <el-form-item label="抗凝剂商品名称:">
146
+               <el-input
147
+                v-model="dialysisPrescription.antioxidant_commodity_name"
148
+              ></el-input>
149
+            </el-form-item>
150
+          </el-col>
142 151
 
143 152
 
144 153
           <el-col :span="8" v-if="isShows('肝素钠') && dialysisPrescription.anticoagulant ==10">
@@ -1262,7 +1271,8 @@
1262 1271
           nucleoprotamine:"",//鱼精蛋白
1263 1272
           no_heparin_remarks:"",
1264 1273
           blood:"",
1265
-          irrigation:""
1274
+          irrigation:"",
1275
+          antioxidant_commodity_name:"",
1266 1276
         },
1267 1277
 
1268 1278
         anticoagulant: {

+ 13 - 1
src/xt_pages/dialysis/details/dialysisComputer.vue View File

@@ -25,6 +25,11 @@
25 25
           <label>冲管护士 : </label>
26 26
           <span class="content">{{ washpipe_nurse }}</span>
27 27
         </li>
28
+
29
+        <li v-if="isShow('换药护士')">
30
+          <label>换药护士 : </label>
31
+          <span class="content">{{ change_nurse }}</span>
32
+        </li>
28 33
         <li>
29 34
           <label>状态 : </label>
30 35
           <span class="content">{{ stage }}</span>
@@ -124,11 +129,18 @@
124 129
           return '-'
125 130
         }
126 131
         return this.admin_map[this.record.puncture_nurse] == null ? '' : this.admin_map[this.record.puncture_nurse].name
127
-      }, washpipe_nurse: function() {
132
+      },
133
+       washpipe_nurse: function() {
128 134
         if (this.record.id == 0) {
129 135
           return '-'
130 136
         }
131 137
         return this.admin_map[this.record.washpipe_nurse] == null ? '' : this.admin_map[this.record.washpipe_nurse].name
138
+      },
139
+      change_nurse:function(){
140
+         if (this.record.id == 0) {
141
+          return '-'
142
+        }
143
+        return this.admin_map[this.record.change_nurse] == null ? '' : this.admin_map[this.record.change_nurse].name
132 144
       }
133 145
     },
134 146
     methods: {

+ 7 - 7
src/xt_pages/outpatientCharges/outpatientChargesManagement.vue View File

@@ -82,14 +82,14 @@
82 82
           >结算单
83 83
           </el-button>
84 84
 
85
-          <!--<el-button v-if="$store.getters.xt_user.org_id == 4 || this.$store.getters.xt_user.org_id == 9919" size="small" @click="open(10)" type="primary"-->
86
-          <!--&gt;退号-->
87
-          <!--</el-button>-->
85
+          <el-button v-if="$store.getters.xt_user.org_id == 4 || this.$store.getters.xt_user.org_id == 9919" size="small" @click="open(10)" type="primary"-->
86
+          &gt;退号
87
+          </el-button>
88 88
 
89
-          <!--<el-button v-if="$store.getters.xt_user.org_id == 4 || this.$store.getters.xt_user.org_id == 9919"-->
90
-                     <!--size="small" @click="open(11)" type="primary"-->
91
-          <!--&gt;撤销明细-->
92
-          <!--</el-button>-->
89
+          <el-button v-if="$store.getters.xt_user.org_id == 4 || this.$store.getters.xt_user.org_id == 9919"
90
+                     size="small" @click="open(11)" type="primary"
91
+          &gt;撤销明细>
92
+          </el-button>
93 93
 
94 94
 
95 95
           <!--<el-button v-if="$store.getters.xt_user.org_id == 4 || this.$store.getters.xt_user.org_id == 9919" size="small" @click="open(12)" type="primary"-->

+ 4 - 11
src/xt_pages/stock/drugs/components/drugCancelDetail.vue View File

@@ -1,13 +1,13 @@
1 1
 <template>
2 2
   <div>
3
-    <!-- <el-button
3
+    <el-button
4 4
       style="float: right"
5 5
       size="small"
6 6
       icon="el-icon-printer"
7 7
       @click="PrintAction"
8 8
       type="primary"
9 9
       >打印
10
-    </el-button> -->
10
+    </el-button>
11 11
     <div class="cell clearfix">
12 12
       <el-input
13 13
         size="small"
@@ -241,15 +241,8 @@ export default {
241 241
     };
242 242
   },
243 243
   methods: {
244
-    PrintAction: function() {
245
-      this.$router.push({
246
-        path: "/stock/print",
247
-        query: {
248
-          type: 4,
249
-          start_time: this.start_time,
250
-          end_time: this.end_time
251
-        }
252
-      });
244
+    PrintAction() {
245
+        this.$router.push("/stock/drugcanceldetaiprint?start_time="+this.start_time+"&end_time="+this.end_time+"&order_type="+this.order_type+"&manufacturer_id="+this.manufacturer_id+"&keyword="+this.keyword+"&limit="+this.limit+"&page="+this.page)
253 246
     },
254 247
     changeType: function(val) {
255 248
       this.order_type = val;

+ 3 - 3
src/xt_pages/stock/drugs/components/drugCancelOrder.vue View File

@@ -1,13 +1,13 @@
1 1
 <template>
2 2
   <div>
3
-    <!-- <el-button
3
+    <el-button
4 4
       style="float: right"
5 5
       size="small"
6 6
       icon="el-icon-printer"
7 7
       @click="PrintAction"
8 8
       type="primary"
9 9
       >打印
10
-    </el-button> -->
10
+    </el-button>
11 11
     <div class="cell clearfix">
12 12
       <el-input
13 13
         size="small"
@@ -292,7 +292,7 @@ export default {
292 292
     },
293 293
   
294 294
     PrintAction: function() {
295
-    
295
+       this.$router.push("/stock/drugcancelprint?start_time="+this.start_time+"&end_time="+this.end_time+"&order_type="+this.order_type+"&manufacturer_id="+this.manufacturer_id+"&keyword="+this.keyword+"&limit="+this.limit+"&page="+this.page)
296 296
     },
297 297
   
298 298
     getXuserName(id) {

+ 3 - 3
src/xt_pages/stock/drugs/components/drugOutDetail.vue View File

@@ -1,13 +1,13 @@
1 1
 <template>
2 2
   <div>
3
-    <!-- <el-button
3
+    <el-button
4 4
       style="float: right"
5 5
       size="small"
6 6
       icon="el-icon-printer"
7 7
       @click="PrintAction"
8 8
       type="primary"
9 9
       >打印
10
-    </el-button> -->
10
+    </el-button>
11 11
     <div class="cell clearfix">
12 12
       <el-input
13 13
         size="small"
@@ -362,7 +362,7 @@ export default {
362 362
       }
363 363
     },
364 364
     PrintAction: function() {
365
-      
365
+       this.$router.push("/stock/drugoutorderprint?start_time="+this.start_time+"&end_time="+this.end_time+"&order_type="+this.order_type+"&manufacturer_id="+this.manufacturer_id+"&keyword="+this.keyword+"&limit="+this.limit+"&page="+this.page)
366 366
     },
367 367
     getlist(){
368 368
       var params = {

+ 332 - 0
src/xt_pages/stock/drugs/drugCancelDetailPrint.vue View File

@@ -0,0 +1,332 @@
1
+<template>
2
+  <div class="main-contain">
3
+    <div class="position">
4
+      <bread-crumb :crumbs='crumbs'></bread-crumb>
5
+      <el-button :loading="loading" size="small" icon="el-icon-printer" @click="printThisPage" type="primary">打印
6
+      </el-button>
7
+    </div>
8
+    <div class="app-container ">
9
+      <div id="dialysis-print-box">
10
+        <div class="dialysis-print-order">
11
+         <div class="order-yy-name">{{orgname}}</div>
12
+          <div class="order-title">退库单</div>
13
+        <div style="float: right;margin-bottom: 10px;">{{getDateTwo()}}</div>
14
+
15
+          <table class="print-table" border="1">
16
+            <tbody>
17
+            <tr>
18
+              <td style="line-height: 50px" width="50">序号</td>
19
+              <td style="line-height: 50px" width="250">药品名称</td>
20
+              <td style="line-height: 50px" width="250">规格型号</td>
21
+              <td style="line-height: 50px" width="50">单位</td>
22
+              <td style="line-height: 50px" width="80">数量</td>
23
+              <td style="line-height:50px" width="80">单价</td>
24
+              <td style="line-height: 50px" width="">备 注</td>
25
+            </tr>
26
+
27
+            <tr v-for="(item,index) in cancelStockDate" :key="item.id">
28
+              <td style="line-height: 50px">&nbsp;
29
+                {{index+1}}
30
+              </td>
31
+              <td style="line-height: 50px">
32
+                <span>{{item.drug_name}}</span>
33
+              </td>
34
+              <td style="line-height: 50px">
35
+                <span>{{item.drug_spec}}</span>
36
+              </td>
37
+              <td style="line-height: 50px">
38
+                <span>{{item.min_unit}}</span>
39
+              </td>
40
+            
41
+              <td style="line-height: 50px">
42
+                  {{item.count}}
43
+              </td>
44
+              <td style="line-height:50px">
45
+                  {{item.price}}
46
+              </td>
47
+             
48
+              <td style="line-height: 50px">
49
+                 {{item.remark}}
50
+              </td>
51
+            </tr>
52
+            </tbody>
53
+          </table>
54
+          <table class="print-table" border="1" >
55
+            <tbody>
56
+            <tr>
57
+              <td width="633" style="line-height: 50px">合计</td>
58
+              <td width="80" style="line-height: 50px">{{getTotal()}}</td>
59
+              <td></td>
60
+            </tr>
61
+
62
+            </tbody>
63
+          </table>
64
+        </div>
65
+
66
+      </div>
67
+
68
+    </div>
69
+  </div>
70
+
71
+</template>
72
+
73
+<script>
74
+  import { getPrintStockGood } from '@/api/stock'
75
+  import { getDataConfig } from '@/utils/data'
76
+  import { jsGetAge, uParseTime } from '@/utils/tools'
77
+  import BreadCrumb from '@/xt_pages/components/bread-crumb'
78
+  import print from 'print-js'
79
+  import { getDrugCancelDetail} from "@/api/drug/drug_stock"
80
+  export default {
81
+    name: 'dialysisPrintOrder',
82
+    components: {
83
+      BreadCrumb
84
+
85
+    },
86
+    data() {
87
+      return {
88
+        crumbs: [
89
+          { path: false, name: '出入库明细' },
90
+          { path: false, name: '打印单' }
91
+        ],
92
+        loading: false,
93
+        orgname: '',   
94
+        totalPrice: 0,
95
+        stockDatas: [],
96
+        goodUnit: [],
97
+        start_time: this.$route.query.start_time,
98
+        end_time: this.$route.query.end_time,
99
+        order_type:this.$route.query.order_type,
100
+        manufacturer_id:this.$route.query.manufacturer_id,
101
+        keyword:this.$route.query.keyword,
102
+        limit:this.$route.query.limit,
103
+        page:this.$route.query.page,
104
+        cancelStockDate:[],
105
+      }
106
+    },
107
+    methods: {
108
+      getDateTwo(){
109
+        var ptime = Math.round(new Date().getTime() / 1000)
110
+        return "打印单日期:"+uParseTime(ptime, '{y}-{m}-{d}')
111
+      },
112
+      getTime(value, temp) {
113
+        if (value == 0) {
114
+          return ''
115
+        }
116
+        if (value != undefined) {
117
+          return uParseTime(value, temp)
118
+        }
119
+        return ''
120
+      },
121
+      printThisPage() {
122
+        var ptime = Math.round(new Date().getTime() / 1000)
123
+        this.print_time = uParseTime(ptime, '{y}-{m}-{d} {h}:{i}')
124
+        const style = '@media print {.dialysis-print-order{width:960px;margin:0 auto}.dialysis-print-order .order-yy-name{margin:auto;text-align:center;font-size:20px;letter-spacing:5px}.dialysis-print-order .order-title{margin:auto;font-weight:600;text-align:center;font-size:22px;padding:10px 20px 20px 20px}.dialysis-print-order .table-box{width:100%;line-height:23px;font-size:14px}.dialysis-print-order .print-table{width:100%;text-align:center;border-collapse:collapse;line-height:25px;font-size:14px}.dialysis-print-order .print-table-no{width:100%;text-align:center;border-collapse:collapse;font-size:14px}.dialysis-print-order .under-line{border-bottom:1px solid #999;width:95%;text-align:center;margin-left:2px}.dialysis-print-order .title-box{text-align:center;font-size:16px;border:1px solid #666}.dialysis-print-order .radio-lebel-box{font-weight:400;cursor:pointer}.dialysis-print-order .radio-no{opacity:0;outline:0;position:absolute;margin:0;width:0;height:0;z-index:-1}.dialysis-print-order .radio-inner{white-space:nowrap;cursor:pointer;outline:0;display:inline-block;line-height:1;position:relative;vertical-align:middle}.dialysis-print-order .radio-fang{display:inline-block;position:relative;border:1px solid #000;box-sizing:border-box;width:14px;height:14px;background-color:#fff;z-index:1;transition:border-color .25s cubic-bezier(.71,-.46,.29,1.46),background-color .25s cubic-bezier(.71,-.46,.29,1.46)}.dialysis-print-order .is-checked-radio::after{content:"√";font-size:15px}}.dialysis-print-order .print-table-no tr td { padding: 8px 5px; line-height: 25px; }.es-img{height: 20px; }.advice-name{text-align: left;}.advice-children{display:flex;} .dialysis-print-order .print-table tr td{padding: 0px 0px;} .print-template-two tr {line-height: 30px;}   .title-box-pro{border: 0 #fff;line-height: 40px;height: 40px;text-align: left;padding-left: 10px !important;}  .text-align-left{text-align: left !important;padding-left:10px !important;font-size: 14px !important;line-height: 25px;}'
125
+        printJS({
126
+          printable: 'dialysis-print-box',
127
+          type: 'html',
128
+          style: style,
129
+          scanStyles: false
130
+        })
131
+      },
132
+   
133
+      getUnit(id){
134
+        var name = ""
135
+        for(let i=0;i<this.goodUnit.length;i++){
136
+          if(this.goodUnit[i].id == id){
137
+            name = this.goodUnit[i].name
138
+          }
139
+        }
140
+        return name
141
+      },
142
+      getlist(){
143
+        var params = {
144
+        start_time:this.start_time,
145
+        end_time:this.end_time,
146
+        order_type:this.order_type,
147
+        manufacturer_id:this.manufacturer_id,
148
+        keyword:this.searchKey,
149
+        limit:this.limit,
150
+        page:this.page,
151
+       }
152
+      getDrugCancelDetail(params).then(response=>{
153
+        if(response.data.state == 1){
154
+          var drugInOrder = response.data.data.order
155
+          console.log("drug3434444",drugInOrder)
156
+          this.cancelStockDate = drugInOrder
157
+        }
158
+      })  
159
+      },
160
+      getTotal(){
161
+         var total = 0
162
+         for(let i=0;i<this.cancelStockDate.length;i++){
163
+            total += this.cancelStockDate[i].price
164
+         }
165
+         return total
166
+      }
167
+    },
168
+    created() {
169
+      var xtuser = this.$store.getters.xt_user
170
+      this.orgname = xtuser.org.org_name
171
+      this.getlist()
172
+
173
+      
174
+
175
+    }
176
+
177
+  }
178
+</script>
179
+
180
+<style>
181
+  .dialysis-print-order {
182
+    width: 960px;
183
+    margin: 0 auto
184
+  }
185
+
186
+  .dialysis-print-order .order-yy-name {
187
+    margin: auto;
188
+    text-align: center;
189
+    font-size: 20px;
190
+    letter-spacing: 5px;
191
+  }
192
+
193
+  .dialysis-print-order .order-title {
194
+    margin: auto;
195
+    font-weight: 600;
196
+    text-align: center;
197
+    font-size: 22px;
198
+    padding: 10px 20px 20px 20px;
199
+  }
200
+
201
+  .dialysis-print-order .table-box {
202
+
203
+    width: 100%;
204
+    line-height: 23px;
205
+    font-size: 14px;
206
+  }
207
+
208
+  .dialysis-print-order .print-table {
209
+    width: 100%;
210
+    text-align: center;
211
+    border-collapse: collapse;
212
+    line-height: 40px;
213
+    font-size: 14px;
214
+  }
215
+
216
+  .dialysis-print-order .print-table-no {
217
+    width: 100%;
218
+    text-align: center;
219
+    border-collapse: collapse;
220
+    font-size: 14px;
221
+  }
222
+
223
+  .dialysis-print-order .under-line {
224
+    border-bottom: 1px solid #999;
225
+    width: 95%;
226
+    text-align: center;
227
+    margin-left: 2px;
228
+
229
+
230
+  }
231
+
232
+  .dialysis-print-order .title-box {
233
+    text-align: center;
234
+    font-size: 16px;
235
+  }
236
+
237
+  .dialysis-print-order .radio-lebel-box {
238
+    font-weight: 400;
239
+    cursor: pointer;
240
+  }
241
+
242
+  .dialysis-print-order .radio-no {
243
+    opacity: 0;
244
+    outline: none;
245
+    position: absolute;
246
+    margin: 0;
247
+    width: 0;
248
+    height: 0;
249
+    z-index: -1;
250
+  }
251
+
252
+  .dialysis-print-order .radio-inner {
253
+    white-space: nowrap;
254
+    cursor: pointer;
255
+    outline: none;
256
+    display: inline-block;
257
+    line-height: 1;
258
+    position: relative;
259
+    vertical-align: middle;
260
+  }
261
+
262
+  .dialysis-print-order .radio-fang {
263
+    display: inline-block;
264
+    position: relative;
265
+    border: 1px solid #000;
266
+    box-sizing: border-box;
267
+    width: 14px;
268
+    height: 14px;
269
+    background-color: #fff;
270
+    z-index: 1;
271
+    transition: border-color .25s cubic-bezier(.71, -.46, .29, 1.46), background-color .25s cubic-bezier(.71, -.46, .29, 1.46);
272
+  }
273
+
274
+  .dialysis-print-order .is-checked-radio::after {
275
+    content: "√";
276
+    font-size: 15px;
277
+  }
278
+
279
+
280
+  .dialysis-print-order .print-table-no tr td {
281
+    padding: 8px 5px;
282
+    line-height: 25px;
283
+  }
284
+
285
+  .dialysis-print-order .print-table tr td {
286
+    padding: 1px 1px;
287
+    /*line-height: 25px;*/
288
+  }
289
+
290
+  .es-img {
291
+    height: 25px;
292
+  }
293
+
294
+  .advice-name {
295
+    text-align: left;
296
+  }
297
+
298
+  .advice-children {
299
+    display: flex;
300
+  }
301
+
302
+  .title-box-pro {
303
+    border: 0 #fff;
304
+    line-height: 25px;
305
+    height: 25px;
306
+    text-align: left;
307
+    padding-left: 10px !important;
308
+  }
309
+
310
+  .title-box-pro-tr {
311
+    border: 0 #fff;
312
+  }
313
+
314
+  .text-align-left {
315
+    text-align: left !important;
316
+    padding-left: 10px !important;
317
+    font-size: 14px !important;
318
+    line-height: 25px;
319
+  }
320
+
321
+  .print-table-tr-new td {
322
+    line-height: 20px !important;
323
+  }
324
+
325
+  .border-top-solid {
326
+    border: solid 1px #000;
327
+  }
328
+
329
+  .print-template-two tr {
330
+    line-height: 30px;
331
+  }
332
+</style>

+ 331 - 0
src/xt_pages/stock/drugs/drugCancelOurderPrint.vue View File

@@ -0,0 +1,331 @@
1
+<template>
2
+  <div class="main-contain">
3
+    <div class="position">
4
+      <bread-crumb :crumbs='crumbs'></bread-crumb>
5
+      <el-button :loading="loading" size="small" icon="el-icon-printer" @click="printThisPage" type="primary">打印
6
+      </el-button>
7
+    </div>
8
+    <div class="app-container ">
9
+      <div id="dialysis-print-box">
10
+        <div class="dialysis-print-order">
11
+         <div class="order-yy-name">{{orgname}}</div>
12
+          <div class="order-title">退货单</div>
13
+        <div style="float: right;margin-bottom: 10px;">{{getDateTwo()}}</div>
14
+
15
+          <table class="print-table" border="1">
16
+            <tbody>
17
+            <tr>
18
+              <td style="line-height: 50px" width="50">序号</td>
19
+              <td style="line-height: 50px" width="250">药品名称</td>
20
+              <td style="line-height: 50px" width="250">规格型号</td>
21
+              <td style="line-height: 50px" width="50">单位</td>
22
+              <td style="line-height: 50px" width="80">数量</td>
23
+              <td style="line-height:50px" width="80">单价</td>
24
+              <td style="line-height: 50px" width="">备 注</td>
25
+            </tr>
26
+
27
+            <tr v-for="(item,index) in cancelStockDate" :key="item.id">
28
+              <td style="line-height: 50px">&nbsp;
29
+                {{index+1}}
30
+              </td>
31
+              <td style="line-height: 50px">
32
+                <span>{{item.drug_name}}</span>
33
+              </td>
34
+              <td style="line-height: 50px">
35
+                <span>{{item.drug_spec}}</span>
36
+              </td>
37
+              <td style="line-height: 50px">
38
+                <span>{{item.min_unit}}</span>
39
+              </td>
40
+            
41
+              <td style="line-height: 50px">
42
+                  {{item.count}}
43
+              </td>
44
+              <td style="line-height:50px">
45
+                  {{item.price}}
46
+              </td>
47
+              <td style="line-height: 50px">
48
+                 {{item.remark}}
49
+              </td>
50
+            </tr>
51
+            </tbody>
52
+          </table>
53
+          <table class="print-table" border="1" >
54
+            <tbody>
55
+            <tr>
56
+              <td width="633" style="line-height: 50px">合计</td>
57
+              <td width="80" style="line-height: 50px">{{getTotal()}}</td>
58
+              <td></td>
59
+            </tr>
60
+
61
+            </tbody>
62
+          </table>
63
+        </div>
64
+
65
+      </div>
66
+
67
+    </div>
68
+  </div>
69
+
70
+</template>
71
+
72
+<script>
73
+  import { getPrintStockGood } from '@/api/stock'
74
+  import { getDataConfig } from '@/utils/data'
75
+  import { jsGetAge, uParseTime } from '@/utils/tools'
76
+  import BreadCrumb from '@/xt_pages/components/bread-crumb'
77
+  import print from 'print-js'
78
+  import { getDrugCancelOrder} from "@/api/drug/drug_stock"
79
+  export default {
80
+    name: 'dialysisPrintOrder',
81
+    components: {
82
+      BreadCrumb
83
+
84
+    },
85
+    data() {
86
+      return {
87
+        crumbs: [
88
+          { path: false, name: '出入库明细' },
89
+          { path: false, name: '打印单' }
90
+        ],
91
+        loading: false,
92
+        orgname: '',   
93
+        totalPrice: 0,
94
+        stockDatas: [],
95
+        goodUnit: [],
96
+        start_time: this.$route.query.start_time,
97
+        end_time: this.$route.query.end_time,
98
+        order_type:this.$route.query.order_type,
99
+        manufacturer_id:this.$route.query.manufacturer_id,
100
+        keyword:this.$route.query.keyword,
101
+        limit:this.$route.query.limit,
102
+        page:this.$route.query.page,
103
+        cancelStockDate:[],
104
+      }
105
+    },
106
+    methods: {
107
+      getDateTwo(){
108
+        var ptime = Math.round(new Date().getTime() / 1000)
109
+        return "打印单日期:"+uParseTime(ptime, '{y}-{m}-{d}')
110
+      },
111
+      getTime(value, temp) {
112
+        if (value == 0) {
113
+          return ''
114
+        }
115
+        if (value != undefined) {
116
+          return uParseTime(value, temp)
117
+        }
118
+        return ''
119
+      },
120
+      printThisPage() {
121
+        var ptime = Math.round(new Date().getTime() / 1000)
122
+        this.print_time = uParseTime(ptime, '{y}-{m}-{d} {h}:{i}')
123
+        const style = '@media print {.dialysis-print-order{width:960px;margin:0 auto}.dialysis-print-order .order-yy-name{margin:auto;text-align:center;font-size:20px;letter-spacing:5px}.dialysis-print-order .order-title{margin:auto;font-weight:600;text-align:center;font-size:22px;padding:10px 20px 20px 20px}.dialysis-print-order .table-box{width:100%;line-height:23px;font-size:14px}.dialysis-print-order .print-table{width:100%;text-align:center;border-collapse:collapse;line-height:25px;font-size:14px}.dialysis-print-order .print-table-no{width:100%;text-align:center;border-collapse:collapse;font-size:14px}.dialysis-print-order .under-line{border-bottom:1px solid #999;width:95%;text-align:center;margin-left:2px}.dialysis-print-order .title-box{text-align:center;font-size:16px;border:1px solid #666}.dialysis-print-order .radio-lebel-box{font-weight:400;cursor:pointer}.dialysis-print-order .radio-no{opacity:0;outline:0;position:absolute;margin:0;width:0;height:0;z-index:-1}.dialysis-print-order .radio-inner{white-space:nowrap;cursor:pointer;outline:0;display:inline-block;line-height:1;position:relative;vertical-align:middle}.dialysis-print-order .radio-fang{display:inline-block;position:relative;border:1px solid #000;box-sizing:border-box;width:14px;height:14px;background-color:#fff;z-index:1;transition:border-color .25s cubic-bezier(.71,-.46,.29,1.46),background-color .25s cubic-bezier(.71,-.46,.29,1.46)}.dialysis-print-order .is-checked-radio::after{content:"√";font-size:15px}}.dialysis-print-order .print-table-no tr td { padding: 8px 5px; line-height: 25px; }.es-img{height: 20px; }.advice-name{text-align: left;}.advice-children{display:flex;} .dialysis-print-order .print-table tr td{padding: 0px 0px;} .print-template-two tr {line-height: 30px;}   .title-box-pro{border: 0 #fff;line-height: 40px;height: 40px;text-align: left;padding-left: 10px !important;}  .text-align-left{text-align: left !important;padding-left:10px !important;font-size: 14px !important;line-height: 25px;}'
124
+        printJS({
125
+          printable: 'dialysis-print-box',
126
+          type: 'html',
127
+          style: style,
128
+          scanStyles: false
129
+        })
130
+      },
131
+   
132
+      getUnit(id){
133
+        var name = ""
134
+        for(let i=0;i<this.goodUnit.length;i++){
135
+          if(this.goodUnit[i].id == id){
136
+            name = this.goodUnit[i].name
137
+          }
138
+        }
139
+        return name
140
+      },
141
+      getlist(){
142
+        var params = {
143
+        start_time:this.start_time,
144
+        end_time:this.end_time,
145
+        order_type:this.order_type,
146
+        manufacturer_id:this.manufacturer_id,
147
+        keyword:this.searchKey,
148
+        limit:this.limit,
149
+        page:this.page,
150
+       }
151
+      getDrugCancelOrder(params).then(response=>{
152
+        if(response.data.state == 1){
153
+          var drugInOrder = response.data.data.order
154
+          console.log("drug3434444",drugInOrder)
155
+          this.cancelStockDate = drugInOrder
156
+        }
157
+      })  
158
+      },
159
+      getTotal(){
160
+         var total = 0
161
+         for(let i=0;i<this.cancelStockDate.length;i++){
162
+            total += this.cancelStockDate[i].price
163
+         }
164
+         return total
165
+      }
166
+    },
167
+    created() {
168
+      var xtuser = this.$store.getters.xt_user
169
+      this.orgname = xtuser.org.org_name
170
+      this.getlist()
171
+
172
+      
173
+
174
+    }
175
+
176
+  }
177
+</script>
178
+
179
+<style>
180
+  .dialysis-print-order {
181
+    width: 960px;
182
+    margin: 0 auto
183
+  }
184
+
185
+  .dialysis-print-order .order-yy-name {
186
+    margin: auto;
187
+    text-align: center;
188
+    font-size: 20px;
189
+    letter-spacing: 5px;
190
+  }
191
+
192
+  .dialysis-print-order .order-title {
193
+    margin: auto;
194
+    font-weight: 600;
195
+    text-align: center;
196
+    font-size: 22px;
197
+    padding: 10px 20px 20px 20px;
198
+  }
199
+
200
+  .dialysis-print-order .table-box {
201
+
202
+    width: 100%;
203
+    line-height: 23px;
204
+    font-size: 14px;
205
+  }
206
+
207
+  .dialysis-print-order .print-table {
208
+    width: 100%;
209
+    text-align: center;
210
+    border-collapse: collapse;
211
+    line-height: 40px;
212
+    font-size: 14px;
213
+  }
214
+
215
+  .dialysis-print-order .print-table-no {
216
+    width: 100%;
217
+    text-align: center;
218
+    border-collapse: collapse;
219
+    font-size: 14px;
220
+  }
221
+
222
+  .dialysis-print-order .under-line {
223
+    border-bottom: 1px solid #999;
224
+    width: 95%;
225
+    text-align: center;
226
+    margin-left: 2px;
227
+
228
+
229
+  }
230
+
231
+  .dialysis-print-order .title-box {
232
+    text-align: center;
233
+    font-size: 16px;
234
+  }
235
+
236
+  .dialysis-print-order .radio-lebel-box {
237
+    font-weight: 400;
238
+    cursor: pointer;
239
+  }
240
+
241
+  .dialysis-print-order .radio-no {
242
+    opacity: 0;
243
+    outline: none;
244
+    position: absolute;
245
+    margin: 0;
246
+    width: 0;
247
+    height: 0;
248
+    z-index: -1;
249
+  }
250
+
251
+  .dialysis-print-order .radio-inner {
252
+    white-space: nowrap;
253
+    cursor: pointer;
254
+    outline: none;
255
+    display: inline-block;
256
+    line-height: 1;
257
+    position: relative;
258
+    vertical-align: middle;
259
+  }
260
+
261
+  .dialysis-print-order .radio-fang {
262
+    display: inline-block;
263
+    position: relative;
264
+    border: 1px solid #000;
265
+    box-sizing: border-box;
266
+    width: 14px;
267
+    height: 14px;
268
+    background-color: #fff;
269
+    z-index: 1;
270
+    transition: border-color .25s cubic-bezier(.71, -.46, .29, 1.46), background-color .25s cubic-bezier(.71, -.46, .29, 1.46);
271
+  }
272
+
273
+  .dialysis-print-order .is-checked-radio::after {
274
+    content: "√";
275
+    font-size: 15px;
276
+  }
277
+
278
+
279
+  .dialysis-print-order .print-table-no tr td {
280
+    padding: 8px 5px;
281
+    line-height: 25px;
282
+  }
283
+
284
+  .dialysis-print-order .print-table tr td {
285
+    padding: 1px 1px;
286
+    /*line-height: 25px;*/
287
+  }
288
+
289
+  .es-img {
290
+    height: 25px;
291
+  }
292
+
293
+  .advice-name {
294
+    text-align: left;
295
+  }
296
+
297
+  .advice-children {
298
+    display: flex;
299
+  }
300
+
301
+  .title-box-pro {
302
+    border: 0 #fff;
303
+    line-height: 25px;
304
+    height: 25px;
305
+    text-align: left;
306
+    padding-left: 10px !important;
307
+  }
308
+
309
+  .title-box-pro-tr {
310
+    border: 0 #fff;
311
+  }
312
+
313
+  .text-align-left {
314
+    text-align: left !important;
315
+    padding-left: 10px !important;
316
+    font-size: 14px !important;
317
+    line-height: 25px;
318
+  }
319
+
320
+  .print-table-tr-new td {
321
+    line-height: 20px !important;
322
+  }
323
+
324
+  .border-top-solid {
325
+    border: solid 1px #000;
326
+  }
327
+
328
+  .print-template-two tr {
329
+    line-height: 30px;
330
+  }
331
+</style>

+ 339 - 0
src/xt_pages/stock/drugs/drugOutOrderPrint.vue View File

@@ -0,0 +1,339 @@
1
+<template>
2
+  <div class="main-contain">
3
+    <div class="position">
4
+      <bread-crumb :crumbs='crumbs'></bread-crumb>
5
+      <el-button :loading="loading" size="small" icon="el-icon-printer" @click="printThisPage" type="primary">打印
6
+      </el-button>
7
+    </div>
8
+    <div class="app-container ">
9
+      <div id="dialysis-print-box">
10
+        <div class="dialysis-print-order">
11
+         <div class="order-yy-name">{{orgname}}</div>
12
+          <div class="order-title">出库单</div>
13
+        <div style="float: right;margin-bottom: 10px;">{{getDateTwo()}}</div>
14
+
15
+          <table class="print-table" border="1">
16
+            <tbody>
17
+            <tr>
18
+              <td style="line-height: 50px" width="50">序号</td>
19
+              <td style="line-height: 50px" width="250">药品名称</td>
20
+              <td style="line-height: 50px" width="250">规格型号</td>
21
+              <td style="line-height: 50px" width="50">单位</td>
22
+              <td style="line-height: 50px" width="80">数量</td>
23
+              <td style="line-height:50px" width="80">单价</td>
24
+               <td style="line-height: 50px" width="80">出货价</td>
25
+              <td style="line-height:50px" width="80">总价</td>
26
+              <td style="line-height: 50px" width="">备 注</td>
27
+            </tr>
28
+
29
+            <tr v-for="(item,index) in cancelStockDate" :key="item.id">
30
+              <td style="line-height: 50px">&nbsp;
31
+                {{index+1}}
32
+              </td>
33
+              <td style="line-height: 50px">
34
+                <span>{{item.drug_name}}</span>
35
+              </td>
36
+              <td style="line-height: 50px">
37
+                <span>{{item.drug_spec}}</span>
38
+              </td>
39
+              <td style="line-height: 50px">
40
+                <span>{{item.min_unit}}</span>
41
+              </td>
42
+            
43
+              <td style="line-height: 50px">
44
+                  {{item.count}}
45
+              </td>
46
+              <td style="line-height:50px">
47
+                  {{item.price}}
48
+              </td>
49
+              <td style="line-height:50px">
50
+                  {{item.price}}
51
+              </td>
52
+              <td style="line-height:50px">
53
+                  {{item.total_price}}
54
+              </td>
55
+              <td style="line-height: 50px">
56
+                 {{item.remark}}
57
+              </td>
58
+            </tr>
59
+            </tbody>
60
+          </table>
61
+          <table class="print-table" border="1" >
62
+            <tbody>
63
+            <tr>
64
+              <td width="633" style="line-height: 50px">合计</td>
65
+              <td width="80" style="line-height: 50px">{{getTotal()}}</td>
66
+              <td></td>
67
+            </tr>
68
+
69
+            </tbody>
70
+          </table>
71
+        </div>
72
+
73
+      </div>
74
+
75
+    </div>
76
+  </div>
77
+
78
+</template>
79
+
80
+<script>
81
+  import { getPrintStockGood } from '@/api/stock'
82
+  import { getDataConfig } from '@/utils/data'
83
+  import { jsGetAge, uParseTime } from '@/utils/tools'
84
+  import BreadCrumb from '@/xt_pages/components/bread-crumb'
85
+  import print from 'print-js'
86
+  import { getDrugOutDetail} from "@/api/drug/drug_stock"
87
+  export default {
88
+    name: 'dialysisPrintOrder',
89
+    components: {
90
+      BreadCrumb
91
+
92
+    },
93
+    data() {
94
+      return {
95
+        crumbs: [
96
+          { path: false, name: '出入库明细' },
97
+          { path: false, name: '打印单' }
98
+        ],
99
+        loading: false,
100
+        orgname: '',   
101
+        totalPrice: 0,
102
+        stockDatas: [],
103
+        goodUnit: [],
104
+        start_time: this.$route.query.start_time,
105
+        end_time: this.$route.query.end_time,
106
+        order_type:this.$route.query.order_type,
107
+        manufacturer_id:this.$route.query.manufacturer_id,
108
+        keyword:this.$route.query.keyword,
109
+        limit:this.$route.query.limit,
110
+        page:this.$route.query.page,
111
+        cancelStockDate:[],
112
+      }
113
+    },
114
+    methods: {
115
+      getDateTwo(){
116
+        var ptime = Math.round(new Date().getTime() / 1000)
117
+        return "打印单日期:"+uParseTime(ptime, '{y}-{m}-{d}')
118
+      },
119
+      getTime(value, temp) {
120
+        if (value == 0) {
121
+          return ''
122
+        }
123
+        if (value != undefined) {
124
+          return uParseTime(value, temp)
125
+        }
126
+        return ''
127
+      },
128
+      printThisPage() {
129
+        var ptime = Math.round(new Date().getTime() / 1000)
130
+        this.print_time = uParseTime(ptime, '{y}-{m}-{d} {h}:{i}')
131
+        const style = '@media print {.dialysis-print-order{width:960px;margin:0 auto}.dialysis-print-order .order-yy-name{margin:auto;text-align:center;font-size:20px;letter-spacing:5px}.dialysis-print-order .order-title{margin:auto;font-weight:600;text-align:center;font-size:22px;padding:10px 20px 20px 20px}.dialysis-print-order .table-box{width:100%;line-height:23px;font-size:14px}.dialysis-print-order .print-table{width:100%;text-align:center;border-collapse:collapse;line-height:25px;font-size:14px}.dialysis-print-order .print-table-no{width:100%;text-align:center;border-collapse:collapse;font-size:14px}.dialysis-print-order .under-line{border-bottom:1px solid #999;width:95%;text-align:center;margin-left:2px}.dialysis-print-order .title-box{text-align:center;font-size:16px;border:1px solid #666}.dialysis-print-order .radio-lebel-box{font-weight:400;cursor:pointer}.dialysis-print-order .radio-no{opacity:0;outline:0;position:absolute;margin:0;width:0;height:0;z-index:-1}.dialysis-print-order .radio-inner{white-space:nowrap;cursor:pointer;outline:0;display:inline-block;line-height:1;position:relative;vertical-align:middle}.dialysis-print-order .radio-fang{display:inline-block;position:relative;border:1px solid #000;box-sizing:border-box;width:14px;height:14px;background-color:#fff;z-index:1;transition:border-color .25s cubic-bezier(.71,-.46,.29,1.46),background-color .25s cubic-bezier(.71,-.46,.29,1.46)}.dialysis-print-order .is-checked-radio::after{content:"√";font-size:15px}}.dialysis-print-order .print-table-no tr td { padding: 8px 5px; line-height: 25px; }.es-img{height: 20px; }.advice-name{text-align: left;}.advice-children{display:flex;} .dialysis-print-order .print-table tr td{padding: 0px 0px;} .print-template-two tr {line-height: 30px;}   .title-box-pro{border: 0 #fff;line-height: 40px;height: 40px;text-align: left;padding-left: 10px !important;}  .text-align-left{text-align: left !important;padding-left:10px !important;font-size: 14px !important;line-height: 25px;}'
132
+        printJS({
133
+          printable: 'dialysis-print-box',
134
+          type: 'html',
135
+          style: style,
136
+          scanStyles: false
137
+        })
138
+      },
139
+   
140
+      getUnit(id){
141
+        var name = ""
142
+        for(let i=0;i<this.goodUnit.length;i++){
143
+          if(this.goodUnit[i].id == id){
144
+            name = this.goodUnit[i].name
145
+          }
146
+        }
147
+        return name
148
+      },
149
+      getlist(){
150
+        var params = {
151
+        start_time:this.start_time,
152
+        end_time:this.end_time,
153
+        order_type:this.order_type,
154
+        manufacturer_id:this.manufacturer_id,
155
+        keyword:this.searchKey,
156
+        limit:this.limit,
157
+        page:this.page,
158
+       }
159
+      getDrugOutDetail(params).then(response=>{
160
+        if(response.data.state == 1){
161
+          var drugInOrder = response.data.data.order
162
+          console.log("drug3434444",drugInOrder)
163
+          this.cancelStockDate = drugInOrder
164
+        }
165
+      })  
166
+      },
167
+      getTotal(){
168
+         var total = 0
169
+         for(let i=0;i<this.cancelStockDate.length;i++){
170
+            total += this.cancelStockDate[i].total_price
171
+         }
172
+         return total
173
+      }
174
+    },
175
+    created() {
176
+      var xtuser = this.$store.getters.xt_user
177
+      this.orgname = xtuser.org.org_name
178
+      this.getlist()
179
+
180
+      
181
+
182
+    }
183
+
184
+  }
185
+</script>
186
+
187
+<style>
188
+  .dialysis-print-order {
189
+    width: 960px;
190
+    margin: 0 auto
191
+  }
192
+
193
+  .dialysis-print-order .order-yy-name {
194
+    margin: auto;
195
+    text-align: center;
196
+    font-size: 20px;
197
+    letter-spacing: 5px;
198
+  }
199
+
200
+  .dialysis-print-order .order-title {
201
+    margin: auto;
202
+    font-weight: 600;
203
+    text-align: center;
204
+    font-size: 22px;
205
+    padding: 10px 20px 20px 20px;
206
+  }
207
+
208
+  .dialysis-print-order .table-box {
209
+
210
+    width: 100%;
211
+    line-height: 23px;
212
+    font-size: 14px;
213
+  }
214
+
215
+  .dialysis-print-order .print-table {
216
+    width: 100%;
217
+    text-align: center;
218
+    border-collapse: collapse;
219
+    line-height: 40px;
220
+    font-size: 14px;
221
+  }
222
+
223
+  .dialysis-print-order .print-table-no {
224
+    width: 100%;
225
+    text-align: center;
226
+    border-collapse: collapse;
227
+    font-size: 14px;
228
+  }
229
+
230
+  .dialysis-print-order .under-line {
231
+    border-bottom: 1px solid #999;
232
+    width: 95%;
233
+    text-align: center;
234
+    margin-left: 2px;
235
+
236
+
237
+  }
238
+
239
+  .dialysis-print-order .title-box {
240
+    text-align: center;
241
+    font-size: 16px;
242
+  }
243
+
244
+  .dialysis-print-order .radio-lebel-box {
245
+    font-weight: 400;
246
+    cursor: pointer;
247
+  }
248
+
249
+  .dialysis-print-order .radio-no {
250
+    opacity: 0;
251
+    outline: none;
252
+    position: absolute;
253
+    margin: 0;
254
+    width: 0;
255
+    height: 0;
256
+    z-index: -1;
257
+  }
258
+
259
+  .dialysis-print-order .radio-inner {
260
+    white-space: nowrap;
261
+    cursor: pointer;
262
+    outline: none;
263
+    display: inline-block;
264
+    line-height: 1;
265
+    position: relative;
266
+    vertical-align: middle;
267
+  }
268
+
269
+  .dialysis-print-order .radio-fang {
270
+    display: inline-block;
271
+    position: relative;
272
+    border: 1px solid #000;
273
+    box-sizing: border-box;
274
+    width: 14px;
275
+    height: 14px;
276
+    background-color: #fff;
277
+    z-index: 1;
278
+    transition: border-color .25s cubic-bezier(.71, -.46, .29, 1.46), background-color .25s cubic-bezier(.71, -.46, .29, 1.46);
279
+  }
280
+
281
+  .dialysis-print-order .is-checked-radio::after {
282
+    content: "√";
283
+    font-size: 15px;
284
+  }
285
+
286
+
287
+  .dialysis-print-order .print-table-no tr td {
288
+    padding: 8px 5px;
289
+    line-height: 25px;
290
+  }
291
+
292
+  .dialysis-print-order .print-table tr td {
293
+    padding: 1px 1px;
294
+    /*line-height: 25px;*/
295
+  }
296
+
297
+  .es-img {
298
+    height: 25px;
299
+  }
300
+
301
+  .advice-name {
302
+    text-align: left;
303
+  }
304
+
305
+  .advice-children {
306
+    display: flex;
307
+  }
308
+
309
+  .title-box-pro {
310
+    border: 0 #fff;
311
+    line-height: 25px;
312
+    height: 25px;
313
+    text-align: left;
314
+    padding-left: 10px !important;
315
+  }
316
+
317
+  .title-box-pro-tr {
318
+    border: 0 #fff;
319
+  }
320
+
321
+  .text-align-left {
322
+    text-align: left !important;
323
+    padding-left: 10px !important;
324
+    font-size: 14px !important;
325
+    line-height: 25px;
326
+  }
327
+
328
+  .print-table-tr-new td {
329
+    line-height: 20px !important;
330
+  }
331
+
332
+  .border-top-solid {
333
+    border: solid 1px #000;
334
+  }
335
+
336
+  .print-template-two tr {
337
+    line-height: 30px;
338
+  }
339
+</style>

+ 13 - 3
src/xt_pages/stock/drugs/drugPrint.vue View File

@@ -8,6 +8,8 @@
8 8
     <div class="app-container ">
9 9
       <div id="dialysis-print-box">
10 10
         <div class="dialysis-print-order">
11
+         <div class="order-yy-name">{{orgname}}</div>
12
+          <div class="order-title">入库单</div>
11 13
         <div style="float: right;margin-bottom: 10px;">{{getDateTwo()}}</div>
12 14
 
13 15
           <table class="print-table" border="1">
@@ -48,11 +50,11 @@
48 50
             </tr>
49 51
             </tbody>
50 52
           </table>
51
-          <table class="print-table" border="1" v-if="type == 1 || type == 3">
53
+          <table class="print-table" border="1">
52 54
             <tbody>
53 55
             <tr>
54 56
               <td width="633" style="line-height: 50px">合计</td>
55
-              <td width="80" style="line-height: 50px">{{calTotalPrice()}}</td>
57
+              <td width="80" style="line-height: 50px">{{getTotal()}}</td>
56 58
               <td></td>
57 59
             </tr>
58 60
 
@@ -104,7 +106,7 @@
104 106
     methods: {
105 107
       getDateTwo(){
106 108
         var ptime = Math.round(new Date().getTime() / 1000)
107
-        return "印单日期:"+uParseTime(ptime, '{y}-{m}-{d}')
109
+        return "印单日期:"+uParseTime(ptime, '{y}-{m}-{d}')
108 110
       },
109 111
       getTime(value, temp) {
110 112
         if (value == 0) {
@@ -155,6 +157,14 @@
155 157
           this.total = total
156 158
         }
157 159
       })  
160
+      },
161
+
162
+      getTotal(){
163
+        var total = 0
164
+        for(let i=0;i<this.cancelStockDate.length;i++){
165
+           total += this.cancelStockDate[i].price
166
+        }
167
+        return total
158 168
       }
159 169
     },
160 170
     created() {

+ 41 - 6
src/xt_pages/stock/drugs/drugStockInOrderAdd.vue View File

@@ -120,6 +120,31 @@
120 120
             </template>
121 121
           </el-table-column>
122 122
 
123
+
124
+           <el-table-column align="center" width="180">
125
+            <template slot="header" slot-scope="scope">
126
+              <span>单位<span style="color: red">*</span></span>
127
+            </template>
128
+            <template slot-scope="scope">
129
+             
130
+              <el-form-item
131
+                :prop="'recordData.' + scope.$index + '.min_units'"
132
+                :rules="tableRules.min_unit"
133
+                style="padding-top: 17px"
134
+              >
135
+               <el-select v-model="scope.row.min_unit" style="width:160px;" placeholder="请选择">
136
+                <el-option
137
+                  v-for="(item,index) in getDataConfig('hemodialysis','units')"
138
+                  :key="index"
139
+                  :label="item.name"
140
+                  :value="item.name">
141
+                </el-option>
142
+              </el-select>
143
+              </el-form-item>
144
+            </template>
145
+          </el-table-column>
146
+
147
+
123 148
           <el-table-column align="center" width="180">
124 149
             <template slot="header" slot-scope="scope">
125 150
               <span>入库数量<span style="color: red">*</span></span>
@@ -262,7 +287,7 @@
262 287
   } from "@/api/drug/drug_stock";
263 288
   import BreadCrumb from '../../components/bread-crumb'
264 289
   import DrugsStockDialog from './drugsStockDialog/index'
265
-
290
+  import {getDataConfig } from "@/utils/data";
266 291
   export default {
267 292
     components: { DrugsStockDialog, BreadCrumb },
268 293
     name: 'stockIn',
@@ -308,6 +333,10 @@
308 333
 
309 334
           good_id: [
310 335
             { validator: checkGoodId, trigger: 'blur' }
336
+          ],
337
+
338
+          min_unit:[
339
+            {required:true,message:'单位不能为空',trigger:'blur'}
311 340
           ]
312 341
 
313 342
         },
@@ -400,7 +429,7 @@
400 429
               this.recordInfo.recordData[this.currentIndex].drug_id = val.selectedGoodInfo[i].id
401 430
               this.recordInfo.recordData[this.currentIndex].price = val.selectedGoodInfo[i].last_price.toString()
402 431
               this.recordInfo.recordData[this.currentIndex].retail_price = val.selectedGoodInfo[i].retail_price.toString()
403
-
432
+              this.recordInfo.recordData[this.currentIndex].min_unit = val.selectedGoodInfo[i].min_unit
404 433
             } else {
405 434
               const tempForm = {}
406 435
               tempForm["id"] = 0;
@@ -414,6 +443,7 @@
414 443
               tempForm['remark'] = ''
415 444
               tempForm['dealer'] = ''
416 445
               tempForm['manufacturer'] = ''
446
+              tempForm['min_unit']=''
417 447
               this.recordInfo.recordData.splice(this.currentIndex + 1, 0, tempForm)
418 448
             }
419 449
           }
@@ -533,6 +563,7 @@
533 563
           dealer_id: this.form.dealer
534 564
         }
535 565
         GetAllDrugInfoByID(params).then(response => {
566
+          
536 567
             if (response.data.state == 0) {
537 568
               this.$message.error(response.data.msg)
538 569
               return false
@@ -540,7 +571,7 @@
540 571
 
541 572
             } else {
542 573
               loading.close()
543
-
574
+               console.log("3333333",response.data.data.drugs)
544 575
               if (response.data.data.drugs.length <= 0) {
545 576
                 this.$message.error('该厂商或经销商没有药品信息')
546 577
                 return
@@ -640,9 +671,13 @@
640 671
       ,
641 672
       changeManufacturer(val) {
642 673
 
643
-      }, changeDealer(val) {
674
+      }, 
675
+      changeDealer(val) {
644 676
 
645
-      }
677
+      },
678
+      getDataConfig(module, filed_name){
679
+        return getDataConfig(module, filed_name)
680
+      },
646 681
     }
647 682
     ,
648 683
     created() {
@@ -667,7 +702,7 @@
667 702
       tempObj['remark'] = ''
668 703
       tempObj['dealer'] = ''
669 704
       tempObj['manufacturer'] = ''
670
-
705
+      tempObj['min_unit'] = ''
671 706
       this.recordInfo.recordData.push(tempObj)
672 707
       this.GetConfigInfo()
673 708
       this.propForm.goodUnit = this.$store.getters.good_unit

+ 35 - 11
src/xt_pages/stock/drugs/drugStockOutOrderAdd.vue View File

@@ -136,12 +136,12 @@
136 136
             </template>
137 137
           </el-table-column>
138 138
 
139
-          <el-table-column min-width="23" align="center">
139
+          <el-table-column width="100" align="center">
140 140
             <template slot="header" slot-scope="scope">
141
-              <span>价<span style="color: red">*</span></span>
141
+              <span>出库价<span style="color: red">*</span></span>
142 142
             </template>
143 143
             <template slot-scope="scope">
144
-              <!--<el-input type="number" v-model="scope.row.price"  @blur="handleBlur(scope.$index, scope.row)"></el-input>-->
144
+            
145 145
               <el-form-item
146 146
                 :prop="'recordData.' + scope.$index + '.price'"
147 147
                 :rules="tableRules.price"
@@ -156,7 +156,7 @@
156 156
             </template>
157 157
           </el-table-column>
158 158
 
159
-          <el-table-column min-width="23" align="center">
159
+          <el-table-column width="100" align="center">
160 160
             <template slot="header" slot-scope="scope">
161 161
               <span>出库数量<span style="color: red">*</span></span>
162 162
             </template>
@@ -174,8 +174,28 @@
174 174
               </el-form-item>
175 175
             </template>
176 176
           </el-table-column>
177
+         
178
+          
179
+          <el-table-column width="80" align="center">
180
+            <template slot="header" slot-scope="scope">
181
+              <span>单位<span style="color: red">*</span></span>
182
+            </template>
183
+            <template slot-scope="scope">
184
+              <el-select v-model="scope.row.min_unit" style="width:100px;" placeholder="请选择">
185
+                <el-option
186
+                  v-for="(item,index) in getDataConfig('hemodialysis','units')"
187
+                  :key="index"
188
+                  :label="item.name"
189
+                  :value="item.name">
190
+                </el-option>
191
+              </el-select>
192
+            </template>
193
+          </el-table-column>
194
+         
177 195
 
178
-          <el-table-column label="进价总价" min-width="20" align="center">
196
+          
197
+
198
+          <el-table-column label="进价总价" width="100" align="center">
179 199
             <template slot-scope="scope">
180 200
               {{ calculate(scope.row.price * scope.row.count) }}
181 201
             </template>
@@ -195,13 +215,13 @@
195 215
           </el-table-column>
196 216
 
197 217
 
198
-          <el-table-column label="备注" min-width="20" align="center">
218
+          <el-table-column label="备注" width="80" align="center">
199 219
             <template slot-scope="scope">
200 220
               <el-input v-model="scope.row.remark"></el-input>
201 221
             </template>
202 222
           </el-table-column>
203 223
 
204
-          <el-table-column label="操作" align="center" min-width="20">
224
+          <el-table-column label="操作" align="center" width="150">
205 225
             <template slot-scope="scope">
206 226
               <el-tooltip
207 227
                 class="item"
@@ -245,7 +265,7 @@ import {  postDrugWarehouseOut,GetAllConfig,GetAllDrugInfoByID } from "@/api/dru
245 265
 
246 266
 import BreadCrumb from "../../components/bread-crumb";
247 267
 import DrugsStockDialog from './drugsStockDialog/index'
248
-
268
+import { getDataConfig } from "@/utils/data";
249 269
 export default {
250 270
   components: { DrugsStockDialog,   BreadCrumb },
251 271
   name: "salesReturnOrderAdd",
@@ -271,7 +291,8 @@ export default {
271 291
       },
272 292
       tableRules: {
273 293
         price: [{ required: true, message: "单价不能为空", trigger: "blur" }],
274
-        count: [{ required: true, message: "数量不能为空", trigge: "blur" }]
294
+        count: [{ required: true, message: "数量不能为空", trigge: "blur" }],
295
+        min_unit:[{required:true,message:"单位不能为空",trigge:"blur"}]
275 296
       },
276 297
       ruleForm: {
277 298
         manufacturer: [
@@ -312,7 +333,7 @@ export default {
312 333
             this.recordInfo.recordData[this.currentIndex].drug_id = val.selectedGoodInfo[i].id
313 334
             this.recordInfo.recordData[this.currentIndex].price = val.selectedGoodInfo[i].last_price.toString()
314 335
             this.recordInfo.recordData[this.currentIndex].retail_price = val.selectedGoodInfo[i].retail_price.toString()
315
-
336
+            this.recordInfo.recordData[this.currentIndex].min_unit = val.selectedGoodInfo[i].min_unit.toString()
316 337
           } else {
317 338
             const tempForm = {}
318 339
             tempForm['drug_id'] = val.selectedGoodInfo[i].id
@@ -552,7 +573,10 @@ export default {
552 573
     },
553 574
     changeDealer(val) {
554 575
       this.propForm.dealer = val;
555
-    }
576
+    },
577
+    getDataConfig(module, filed_name){
578
+     return getDataConfig(module, filed_name)
579
+    },
556 580
   },
557 581
   created() {
558 582
     var nowDate = new Date();

+ 59 - 35
src/xt_pages/user/patients.vue View File

@@ -344,19 +344,19 @@
344 344
         <el-table-column
345 345
           type="index"
346 346
           label="序号"
347
-          width="60px"
347
+          width="40px"
348 348
           align="center"
349 349
         ></el-table-column>
350 350
         <el-table-column
351 351
           label="透析号"
352
-          min-width="80"
352
+          min-width="70"
353 353
           property="dialysis_no"
354 354
           align="center"
355 355
           style="color:red"
356 356
         ></el-table-column>
357 357
         <el-table-column
358 358
           label="住院号"
359
-          min-width="80"
359
+          min-width="70"
360 360
           property="admission_number"
361 361
           align="center"
362 362
         >
@@ -364,7 +364,7 @@
364 364
         <el-table-column
365 365
           property="name"
366 366
           label="姓名"
367
-          min-width="80"
367
+          min-width="70"
368 368
           align="center"
369 369
         >
370 370
           <template slot-scope="scope">
@@ -376,21 +376,21 @@
376 376
             >
377 377
           </template>
378 378
         </el-table-column>
379
-        <el-table-column label="性别" min-width="80" align="center">
379
+        <el-table-column label="性别" min-width="60" align="center">
380 380
           <template slot-scope="scope">
381 381
             <span v-if="scope.row.gender == 1">男</span>
382 382
             <span v-else-if="scope.row.gender == 2">女</span>
383 383
             <span v-else>未知</span>
384 384
           </template>
385 385
         </el-table-column>
386
-        <el-table-column label="来源" min-width="80" align="center">
386
+        <el-table-column label="来源" min-width="60" align="center">
387 387
           <template slot-scope="scope">
388 388
             <span v-if="scope.row.source == 1">门诊</span>
389 389
             <span v-else-if="scope.row.source == 2">住院</span>
390 390
             <span v-else>未知</span>
391 391
           </template>
392 392
         </el-table-column>
393
-        <el-table-column label="透析次数" min-width="94" align="center">
393
+        <el-table-column label="透析次数" min-width="84" align="center">
394 394
           <template slot-scope="scope">
395 395
             <span>{{ getCount(scope.row) }}</span>
396 396
           </template>
@@ -401,7 +401,7 @@
401 401
           <a style="color:#409eff"  v-else @click="openWechatBindDialog">生成</a>
402 402
         </template>
403 403
       </el-table-column> -->
404
-        <el-table-column label="日期" min-width="144" align="center">
404
+        <el-table-column label="登记日期" min-width="120" align="center">
405 405
           <template slot-scope="scope">
406 406
             <span>{{ scope.row.created_time | parseTime('{y}-{m}-{d}') }}</span>
407 407
           </template>
@@ -411,7 +411,12 @@
411 411
             <span>{{ LapsetoInfo(scope.row) }}</span>
412 412
           </template>
413 413
         </el-table-column>
414
-         <el-table-column label="转出原因" align="center">
414
+        <el-table-column label="转出(死亡)时间" min-width="134" align="center">
415
+          <template slot-scope="scope">
416
+            <span>{{getTime(scope.row.death_time)}}</span>
417
+          </template>
418
+        </el-table-column>
419
+         <el-table-column label="转出(死亡)原因" align="center" min-width="150">
415 420
           <template slot-scope="scope">
416 421
             <span>{{scope.row.out_reason}}</span>
417 422
           </template>
@@ -486,7 +491,7 @@
486 491
           ref="lapsetoForm"
487 492
           label-width="140px"
488 493
         >
489
-          <!-- <el-form-item label="治疗状态(转归):" prop="lapseto_type" required>
494
+          <el-form-item label="治疗状态(转归):" prop="lapseto_type" required>
490 495
             <el-radio-group v-model="lapsetoForm.lapseto_type">
491 496
               <el-radio
492 497
                 v-for="item in lapsetoOptions"
@@ -497,11 +502,13 @@
497 502
               </el-radio
498 503
               >
499 504
             </el-radio-group>
500
-          </el-form-item> -->
501
-          <el-form-item label="治疗状态(转归):" prop="lapseto_type" required>
502
-              <el-radio v-model="lapsetoForm.lapseto_type" :label="lapsetoForm.lapseto_type">{{lapeseto}}</el-radio>
503 505
           </el-form-item>
504
-          <el-form-item label="转归时间 :" prop="lapseto_time" required>
506
+          <!-- <el-form-item label="治疗状态(转归):" prop="lapseto_type" required>
507
+              <el-radio v-model="lapsetoForm.lapseto_type" :label="lapsetoForm.lapseto_type">转出</el-radio>
508
+              <el-radio v-model="lapsetoForm.lapseto_type" :label="lapsetoForm.lapseto_type">死亡</el-radio>
509
+              
510
+          </el-form-item> -->
511
+          <el-form-item label="转归(死亡)时间 :" prop="lapseto_time" required>
505 512
             <el-date-picker
506 513
               v-model="lapsetoForm.lapseto_time"
507 514
               type="datetime"
@@ -512,7 +519,7 @@
512 519
             >
513 520
             </el-date-picker>
514 521
           </el-form-item>
515
-          <el-form-item label="转出原因:" v-if="lapsetoForm.lapseto_type == 1">
522
+          <el-form-item label="转出(死亡)原因:" v-if="lapsetoForm.lapseto_type == 2 || lapsetoForm.lapseto_type == 3">
516 523
               <el-input v-model="lapsetoForm.out_reason"></el-input>
517 524
           </el-form-item>
518 525
         </el-form>
@@ -661,7 +668,8 @@
661 668
         ],
662 669
         lapsetoOptions: [
663 670
           { value: 1, label: '留治' },
664
-          { value: 2, label: '转出' }
671
+          { value: 2, label: '转出' },
672
+          { value: 3,  label: "死亡" },
665 673
         ],
666 674
         systemType: 0,
667 675
         systemArr: [
@@ -682,7 +690,8 @@
682 690
         lapsetoArr: [
683 691
           { value: 0, label: '全部', source: 0, lapseto: 0 },
684 692
           { value: 1, label: '转出', source: 0, lapseto: 2 },
685
-          { value: 2, label: '留治', source: 0, lapseto: 1 }
693
+          { value: 2, label: '留治', source: 0, lapseto: 1 },
694
+          { value: 3, label: '死亡', source:0,  lapseto: 3 },
686 695
           // { value: 3, label: "门诊", source: 1, lapseto: 1 },
687 696
           // { value: 4, label: "住院", source: 2, lapseto: 1 }
688 697
         ],
@@ -1175,12 +1184,16 @@
1175 1184
           this.$message.error('请选择时间')
1176 1185
           return
1177 1186
         }
1178
-         if(this.lapeseto == "留治"){
1179
-           this.lapsetoForm.lapseto_type = 1
1180
-         }
1181
-         if(this.lapeseto == "转出"){
1182
-           this.lapsetoForm.lapseto_type = 2
1183
-         }
1187
+        //  if(this.lapeseto == "留治"){
1188
+        //    this.lapsetoForm.lapseto_type = 1
1189
+        //  }
1190
+        //  if(this.lapeseto == "转出"){
1191
+        //    this.lapsetoForm.lapseto_type = 2
1192
+        //  }
1193
+        //  if(this.lapeseto == "死亡"){
1194
+        //   this.lapsetoForm.lapseto_type = 3
1195
+        //  }
1196
+     
1184 1197
         EditLapseto(this.lapsetoForm.patient_id, this.lapsetoForm).then(
1185 1198
           response => {
1186 1199
             if (response.data.state === 1) {
@@ -1201,12 +1214,15 @@
1201 1214
         )
1202 1215
       },
1203 1216
       OpenSetLapseto(row, index) {
1204
-        if(row.lapseto == 1){
1205
-          this.lapeseto = "转出"
1206
-        }
1207
-        if(row.lapseto == 2){
1208
-          this.lapeseto = "留治"
1209
-        }
1217
+        // if(row.lapseto == 1){
1218
+        //   this.lapeseto = "转出"
1219
+        // }
1220
+        // if(row.lapseto == 2){
1221
+        //   this.lapeseto = "留治"
1222
+        // }
1223
+        // if(row.lapeseto == 3){
1224
+        //   this.lapeseto = "死亡"
1225
+        // }
1210 1226
         this.patient = row
1211 1227
         this.currentIndex = index
1212 1228
         this.lapsetoForm.lapseto_time = ''
@@ -1216,15 +1232,15 @@
1216 1232
         this.LapsetoDialogVisible = true
1217 1233
       },
1218 1234
       LapsetoInfo(row) {
1219
-        if (
1220
-          typeof row.lapseto === 'undefined' ||
1221
-          (row.lapseto !== 1 && row.lapseto !== 2)
1222
-        ) {
1235
+        console.log("row",row)
1236
+        if (typeof row.lapseto === 'undefined' ||(row.lapseto !== 1 && row.lapseto !== 2 && row.lapseto !==3)) {
1223 1237
           return '未设置'
1224 1238
         } else if (row.lapseto === 1) {
1225 1239
           return '留治'
1226
-        } else {
1240
+        } else if(row.lapseto === 2) {
1227 1241
           return '转出'
1242
+        }else if(row.lapseto === 3){
1243
+          return '死亡'
1228 1244
         }
1229 1245
       },
1230 1246
       openWechatBindDialog() {
@@ -1316,7 +1332,7 @@
1316 1332
             return false
1317 1333
           } else {
1318 1334
             this.tableData = response.data.data.patients
1319
-          //  console.log('病人是', this.tableData)
1335
+            console.log('病人是', this.tableData)
1320 1336
             this.pageTotal = this.tableData.length
1321 1337
             this.total = response.data.data.total
1322 1338
           }
@@ -1468,6 +1484,14 @@
1468 1484
         this.page = val;
1469 1485
         this.GetRemindPatientList();
1470 1486
       },
1487
+      getTime(val) {
1488
+        if(val == ""){
1489
+         return ""
1490
+        }else {
1491
+          return uParseTime(val, '{y}-{m}-{d}')
1492
+        }
1493
+       
1494
+      },
1471 1495
     }
1472 1496
   }
1473 1497
   Vue.prototype.$QRCode = function() {

+ 657 - 51
src/xt_pages/workforce/appointment.vue View File

@@ -69,10 +69,12 @@
69 69
       <bread-crumb :crumbs="crumbs"></bread-crumb>
70 70
         <div style="display:flex;align-items:center">
71 71
           <schedule-upload-excel style="margin-right:10px;" :on-success='handleSuccess' :before-upload="beforeUpload"></schedule-upload-excel>
72
-          <el-button v-if="isShow()" type="primary" size="small" @click="export_file()" :loading="downloadLoading">
72
+          <!-- <el-button v-if="isShow()" type="primary" size="small" @click="export_file()" :loading="downloadLoading">
73
+            导出模版
74
+          </el-button> -->
75
+          <el-button v-if="isShow()" type="primary" size="small" @click="export_fileTwo()" :loading="downloadLoading">
73 76
             导出模版
74 77
           </el-button>
75
-
76 78
           <el-button
77 79
             @click="generateLog()"
78 80
             class="filter-item"
@@ -89,6 +91,18 @@
89 91
     <div class="app-container">
90 92
       <!-- <el-row>
91 93
         <el-col :span="24"> -->
94
+      <div style="margin-left:832px;position:fixed;z-index:99">
95
+       <span>导出周次:</span>
96
+        <el-date-picker
97
+          v-model="weekTime"
98
+          type="week"
99
+          format="yyyy 第 WW 周"
100
+          placeholder="选择周"
101
+          :picker-options="{'firstDayOfWeek': 1}"
102
+          @change="changeWeek"
103
+          >
104
+        </el-date-picker>
105
+      </div>
92 106
       <el-tabs v-model="activeName" :tab-position="tabPosition" ref="elTabs">
93 107
         <el-tab-pane name="lastWeek">
94 108
           <span slot="label"><i class="el-icon-date"></i> 上周 ({{theWeek.lastWeek}})</span>
@@ -107,20 +121,21 @@
107 121
     </el-row> -->
108 122
 
109 123
       <table-data :week-time="activeName" :partitions-prop="partitions" :schedule-zone-row-prop="scheduleZoneRow"
110
-                  :schedule-zone-prop="scheduleZone" title=""></table-data>
124
+                  :schedule-zone-prop="scheduleZone" title="" @event1="changePartition" @event2="changeSchedule"></table-data>
111 125
     </div>
112 126
   </div>
113 127
 </template>
114 128
 
115 129
 <script>
130
+  import moment from 'moment'
116 131
   import { parseTime } from '@/utils'
117 132
   import tableData from './components/tableData'
118
-  import { exportSchedule, getWeekPanels, initDate } from '@/api/schedule'
133
+  import { exportSchedule, getWeekPanels, initDate,getThreeWeekList } from '@/api/schedule'
119 134
   import BreadCrumb from '@/xt_pages/components/bread-crumb'
120 135
   import UploadExcel from '@/xt_pages/components/UploadExcel'
121 136
   import ScheduleUploadExcel from './components/scheduleUploadExcel/index'
122 137
   import { generateLog } from '@/api/config'
123
-
138
+  import { uParseTime } from '@/utils/tools'
124 139
   export default {
125 140
     name: 'appointment',
126 141
     data() {
@@ -147,7 +162,14 @@
147 162
           thisWeek: 0,
148 163
           nextWeek: 0,
149 164
           nextTwoWeek: 0
150
-        }
165
+        },
166
+        tableList:[],
167
+        weekTime:"",
168
+        schedule_type:0,
169
+        partition_id:0,
170
+        start_time:"",
171
+        end_time:"",
172
+        export_type:0
151 173
       }
152 174
     },
153 175
     components: {
@@ -217,8 +239,8 @@
217 239
             return false
218 240
           }
219 241
           var partitions = response.data.data.partitions
220
-          this.theWeek.thisWeek = response.data.data.theWeek
221 242
           this.theWeek.lastWeek = this.theWeek.thisWeek - 1
243
+          this.theWeek.thisWeek = response.data.data.theWeek
222 244
           this.theWeek.nextWeek = this.theWeek.thisWeek + 1
223 245
           this.theWeek.nextTwoWeek = this.theWeek.thisWeek + 2
224 246
           // 在控制变量改变的时候进行 强制渲染更新
@@ -399,7 +421,8 @@
399 421
       },
400 422
       setScheduleTemplateAction: function() {
401 423
         this.$router.push({ path: '/workforce/template' })
402
-      }, export_file: function() {
424
+      },
425
+       export_file: function() {
403 426
         this.downloadLoading = true
404 427
         import('@/vendor/Export2Excel').then(excel => {
405 428
           const filterVal = [
@@ -408,7 +431,6 @@
408 431
           ]
409 432
           const multiHeader = [['区号', '机号', '周一'+"("+this.days[0]+")" , '', '', '周二'+"("+this.days[1]+")", '', '', '周三'+"("+this.days[2]+")" , '', '', '周四'+"("+this.days[3]+")" , '', '', '周五'+"("+this.days[4]+")" , '', '', '周六'+"("+this.days[5]+")" , '', '', '周日'+"("+this.days[6]+")" , '', '', '周一'+"("+this.days[7]+")" , '', '', '周二'+"("+this.days[8]+")" , '', '', '周三'+"("+this.days[9]+")" , '', '', '周四'+"("+this.days[10]+")" , '', '', '周五'+"("+this.days[11]+")" , '', '', '周六'+"("+this.days[12]+")" , '', '', '周日'+"("+this.days[13]+")", '', '', '周一'+"("+this.days[14]+")", '', '', '周二'+"("+this.days[15]+")", '', '', '周三'+"("+this.days[16]+")", '', '', '周四'+"("+this.days[17]+")", '', '', '周五'+"("+this.days[18]+")", '', '', '周六'+"("+this.days[19]+")", '', '', '周日'+"("+this.days[20]+")", '', '']]
410 433
           const header = ['', '', '上午', '下午', '晚上', '上午', '下午', '晚上', '上午', '下午', '晚上', '上午', '下午', '晚上', '上午', '下午', '晚上', '上午', '下午', '晚上', '上午', '下午', '晚上', '上午', '下午', '晚上', '上午', '下午', '晚上', '上午', '下午', '晚上', '上午', '下午', '晚上', '上午', '下午', '晚上', '上午', '下午', '晚上', '上午', '下午', '晚上', '上午', '下午', '晚上', '上午', '下午', '晚上', '上午', '下午', '晚上', '上午', '下午', '晚上', '上午', '下午', '晚上', '上午', '下午', '晚上', '上午', '下午', '晚上']
411
-          // const merges = ['A1:A2', 'B1:B2']
412 434
           const merges = ['A1:A2', 'B1:B2', 'C1:E1', 'F1:H1', 'I1:K1', 'L1:N1', 'O1:Q1', 'R1:T1', 'U1:W1', 'X1:Z1', 'AA1:AC1', 'AD1:AF1', 'AG1:AI1', 'AJ1:AL1', 'AM1:AO1', 'AP1:AR1', 'AS1:AU1', 'AV1:AX1', 'AY1:BA1', 'BB1:BD1', 'BE1:BG1', 'BH1:BJ1', 'BK1:BM1']
413 435
           var list = []
414 436
           let i = 0
@@ -434,11 +456,11 @@
434 456
 
435 457
             i++
436 458
           }
437
-          console.log(list)
459
+         
438 460
           const data = this.formatJson(filterVal, list)
439
-          console.log("data",data)
461
+          // console.log("data",data)
462
+        
440 463
           const filename = '排班模版'
441
-         
442 464
           excel.export_json_to_excel({
443 465
             multiHeader,
444 466
             header,
@@ -448,22 +470,53 @@
448 470
           })
449 471
           this.downloadLoading = false
450 472
         })
451
-     
452
-      }, formatJson(filterVal, jsonData) {
453
-        return jsonData.map(v =>
454
-          filterVal.map(j => {
455
-            console.log(v)
456
-            console.log(j)
457
-            console.log(v[j])
458
-
459
-            if (j === 'timestamp') {
460
-              return parseTime(v[j])
461
-            } else {
462
-              return v[j]
463
-            }
473
+      },
474
+      export_fileTwo:function(){
475
+        
476
+        import('@/vendor/Export2Excel').then(excel => {
477
+          const filterVal = [
478
+            '区号',
479
+            '机号'
480
+          ]
481
+          const multiHeader = [['区号', '机号', '周一'+"("+this.days[0]+")" , '', '', '周二'+"("+this.days[1]+")", '', '', '周三'+"("+this.days[2]+")" , '', '', '周四'+"("+this.days[3]+")" , '', '', '周五'+"("+this.days[4]+")" , '', '', '周六'+"("+this.days[5]+")" , '', '', '周日'+"("+this.days[6]+")" , '', '', '周一'+"("+this.days[7]+")" , '', '', '周二'+"("+this.days[8]+")" , '', '', '周三'+"("+this.days[9]+")" , '', '', '周四'+"("+this.days[10]+")" , '', '', '周五'+"("+this.days[11]+")" , '', '', '周六'+"("+this.days[12]+")" , '', '', '周日'+"("+this.days[13]+")", '', '', '周一'+"("+this.days[14]+")", '', '', '周二'+"("+this.days[15]+")", '', '', '周三'+"("+this.days[16]+")", '', '', '周四'+"("+this.days[17]+")", '', '', '周五'+"("+this.days[18]+")", '', '', '周六'+"("+this.days[19]+")", '', '', '周日'+"("+this.days[20]+")", '', '']]
482
+          const header = ['', '', '上午', '下午', '晚上', '上午', '下午', '晚上', '上午', '下午', '晚上', '上午', '下午', '晚上', '上午', '下午', '晚上', '上午', '下午', '晚上', '上午', '下午', '晚上', '上午', '下午', '晚上', '上午', '下午', '晚上', '上午', '下午', '晚上', '上午', '下午', '晚上', '上午', '下午', '晚上', '上午', '下午', '晚上', '上午', '下午', '晚上', '上午', '下午', '晚上', '上午', '下午', '晚上', '上午', '下午', '晚上', '上午', '下午', '晚上', '上午', '下午', '晚上', '上午', '下午', '晚上', '上午', '下午', '晚上']
483
+          const merges = ['A1:A2', 'B1:B2', 'C1:E1', 'F1:H1', 'I1:K1', 'L1:N1', 'O1:Q1', 'R1:T1', 'U1:W1', 'X1:Z1', 'AA1:AC1', 'AD1:AF1', 'AG1:AI1', 'AJ1:AL1', 'AM1:AO1', 'AP1:AR1', 'AS1:AU1', 'AV1:AX1', 'AY1:BA1', 'BB1:BD1', 'BE1:BG1', 'BH1:BJ1', 'BK1:BM1']
484
+      
485
+          var data = []
486
+         this.tableList.map(item=>{
487
+           data.push(Object.values(item))
488
+           
489
+         })
490
+
491
+          const filename = '排班模版'
492
+          excel.export_json_to_excel({
493
+            multiHeader,
494
+            header,
495
+            merges,
496
+            data,
497
+            filename
464 498
           })
465
-        )
499
+          
500
+        })
466 501
       },
502
+      formatJson(filterVal, jsonData) {
503
+       return jsonData.map(v => filterVal.map(j => v[j]))
504
+      },
505
+  
506
+      //  formatJson(filterVal, jsonData) {
507
+      //    console.log("jsonData",jsonData)
508
+      //   return jsonData.map(v =>
509
+      //     filterVal.map(j => {
510
+      //       console.log("v",j)
511
+      //       console.log("8888888",v[j])
512
+      //       if (j === 'timestamp') {
513
+      //         return parseTime(v[j])
514
+      //       } else {
515
+      //         return v[j]
516
+      //       }
517
+      //     })
518
+      //   )
519
+      // },
467 520
       printScheduleAction: function() {
468 521
         var date = new Date().getTime()
469 522
         if (this.activeName == 'lastWeek') {
@@ -493,11 +546,9 @@
493 546
           }
494 547
         }
495 548
         return isShow
496
-      }, handleSuccess({ results, header }) {
497
-        console.log(header)
498
-        console.log(results)
499
-
500
-
549
+      },
550
+       handleSuccess({ results, header }) {
551
+     
501 552
         let headers = []
502 553
         for (let key in results[0]) {
503 554
           headers.push(key)
@@ -722,13 +773,13 @@
722 773
             isHas_56 && isHas_57 && isHas_58 && isHas_59 && isHas_60 &&
723 774
             isHas_61 && isHas_62 && isHas_63 && isHas_64 && isHas_65)) {
724 775
 
725
-            console.log("222222222")
776
+           
726 777
 
727 778
             this.dialogVisible = true
728 779
             return
729 780
           }
730 781
         } else {
731
-          console.log("11111111")
782
+          
732 783
 
733 784
           this.dialogVisible = true
734 785
           return
@@ -783,12 +834,14 @@
783 834
             is_system_zone = false
784 835
           }
785 836
         }
786
-
787
-
837
+        
838
+        console.log("totalzones",total_zones)
839
+        
840
+        
788 841
         console.log("number:")
789
-        console.log(total_device_number)
842
+        console.log("total",total_device_number)
790 843
         console.log("23121212:")
791
-        console.log(deviceNumber)
844
+        console.log("devicenumber",deviceNumber)
792 845
 
793 846
 
794 847
         for (let i = 0; i < deviceNumber.length; i++) {
@@ -808,14 +861,22 @@
808 861
 
809 862
         let datas = []
810 863
         let failed_datas = []
864
+       
865
+
866
+       
867
+
868
+        console.log("结果22222222222",results)
811 869
 
812 870
         for (let i = 0; i < results.length; i++) {
871
+          
813 872
           for (let key in results[i + 1]) {
814 873
             let tempObjTwo = { partition_name: '', device_number_name: '' }
815 874
 
816
-            if (key != '区号' && key != '机号') {
875
+            if (key != '区号' && key != '机号' && results[i+1][key]!="") {
817 876
               let obj = {}
877
+             
818 878
               obj['name'] = results[i + 1][key].replace(/\s/g, '')
879
+              console.log("88888888",obj['name'])
819 880
               if (tempObj[key] == '上午') {
820 881
                 obj['schedule_type'] = 1
821 882
               } else if (tempObj[key] == '下午') {
@@ -823,7 +884,6 @@
823 884
               } else if (tempObj[key] == '晚上') {
824 885
                 obj['schedule_type'] = 3
825 886
               } else {
826
-
827 887
                 obj['schedule_type'] = 0
828 888
 
829 889
               }
@@ -832,8 +892,11 @@
832 892
               obj['row'] = this.getRow(key)
833 893
 
834 894
               tempObjTwo = obj
835
-            }
836 895
 
896
+              console.log("objtwo000000000000000000000",tempObjTwo)
897
+            }
898
+            
899
+           
837 900
             tempObjTwo['partition_name'] = results[i + 1]['区号']
838 901
             tempObjTwo['device_number_name'] = results[i + 1]['机号']
839 902
             tempObjTwo['index'] = i + 3
@@ -855,7 +918,7 @@
855 918
 
856 919
         }
857 920
 
858
-        console.log(datas)
921
+        console.log("datas",datas)
859 922
 
860 923
 
861 924
         let date_arr = []
@@ -866,16 +929,13 @@
866 929
           }
867 930
 
868 931
           if (datas[i].device_number_name == undefined) {
869
-            console.log(datas[i].name)
870
-            console.log("number:222222")
871
-
872 932
             is_device_number = false
873 933
 
874 934
           }
875 935
 
876 936
           if (datas[i].partition_name == undefined) {
937
+            
877 938
             is_system_zone = false
878
-
879 939
           }
880 940
 
881 941
           if (datas[i].schedule_date === '0') {
@@ -895,7 +955,7 @@
895 955
         }
896 956
 
897 957
 
898
-
958
+        console.log("date_arr",date_arr)
899 959
         //校验文档中同一天同个人是否存在多个排班
900 960
         let is_exist_repeat = false
901 961
         const obj3 = {}
@@ -918,7 +978,7 @@
918 978
           obj[key] = value
919 979
           tempObjArr.push(obj)
920 980
         }
921
-
981
+        
922 982
         for (let i = 0; i < tempObjArr.length; i++) {
923 983
           for (let key in tempObjArr[i]) {
924 984
             let arr = tempObjArr[i][key]
@@ -927,7 +987,9 @@
927 987
               obj[next] ? '' : obj[next] = true && cur.push(next)
928 988
               return cur
929 989
             }, []) // 设置cur默认类型为数组,并且初始值为空的数组
930
-
990
+            
991
+            console.log("长度11111111111",tempObjArr[i][key].length)
992
+            console.log("长度22222222222",arr.length)
931 993
             if (tempObjArr[i][key].length > arr.length) {    //比对原数组和去重后的原数组总数,不同的话则存在重复元素
932 994
               is_exist_repeat = true
933 995
             }
@@ -936,13 +998,14 @@
936 998
 
937 999
         console.log(is_system_zone)
938 1000
         console.log(is_device_number)
939
-        console.log(headers.length)
1001
+        console.log("表头长度",headers.length)
940 1002
 
941 1003
 
942 1004
         if (headers.length > 65 || !is_system_zone || !is_device_number) {
943 1005
           this.dialogVisible = true
944 1006
           return
945 1007
         } else {
1008
+          
946 1009
           if (is_exist_repeat) {
947 1010
             this.isExistRepeatVisible = true
948 1011
             return
@@ -969,6 +1032,9 @@
969 1032
             var month = day2.getMonth() + 1 < 10 ? '0' + (day2.getMonth() + 1).toString() : (day2.getMonth() + 1).toString()
970 1033
             var day = day2.getDate() < 10 ? '0' + (day2.getDate()).toString() : (day2.getMonth() + 1).toString()
971 1034
             var date = day2.getFullYear() + '-' + month + '-' + day
1035
+
1036
+            console.log("params",params)
1037
+            console.log("datae",date)
972 1038
             exportSchedule(params, date).then(response => {
973 1039
               if (response.data.state == 0) {
974 1040
                 return false
@@ -1208,7 +1274,8 @@
1208 1274
 
1209 1275
         }
1210 1276
 
1211
-      }, getRow(key) {
1277
+      }, 
1278
+      getRow(key) {
1212 1279
         switch (key) {
1213 1280
           case '周一'+"("+this.days[0]+")" : //本周一
1214 1281
 
@@ -1836,12 +1903,551 @@
1836 1903
 
1837 1904
         }
1838 1905
 
1839
-      }
1906
+      },
1907
+
1908
+       getNextWeek(i) {
1909
+        let weekOfDay = parseInt(moment().format('E'));//计算今天是这周第几天
1910
+        let next_monday = moment().add((7 - weekOfDay) + 7 * (i - 1) + 1, 'days').format('YYYY-MM-DD');//周一日期
1911
+        let next_sunday = moment().add((7 - weekOfDay) + 7 * i, 'days').format('YYYY-MM-DD');//周日日期
1912
+        return next_sunday
1913
+       },
1914
+       
1915
+      getNextWeekOne(i) {
1916
+        let weekOfDay = parseInt(moment().format('E'));//计算今天是这周第几天
1917
+        let next_monday = moment().add((7 - weekOfDay) + 7 * (i - 1) + 1, 'days').format('YYYY-MM-DD');//周一日期
1918
+        
1919
+        return next_monday
1920
+       },
1921
+       
1922
+       
1923
+       getThreeWeekList(){
1924
+          var params ={
1925
+              start_time:this.start_time,
1926
+              end_time:this.end_time,
1927
+              partition_id:this.partition_id,
1928
+              schedule_type:this.schedule_type
1929
+            }
1930
+           console.log("params2222",params)
1931
+         getThreeWeekList(params).then(response=>{
1932
+           if(response.data.state == 1){
1933
+             var partitions =  response.data.data.partitions
1934
+             console.log("数据22222",this.partitions)
1935
+             
1936
+             const merges = ['A1:A2', 'B1:B2', 'C1:E1', 'F1:H1', 'I1:K1', 'L1:N1', 'O1:Q1', 'R1:T1', 'U1:W1', 'X1:Z1', 'AA1:AC1', 'AD1:AF1', 'AG1:AI1', 'AJ1:AL1', 'AM1:AO1', 'AP1:AR1', 'AS1:AU1', 'AV1:AX1', 'AY1:BA1', 'BB1:BD1', 'BE1:BG1', 'BH1:BJ1', 'BK1:BM1']
1937
+              var list = []
1938
+              let i = 0
1939
+              
1940
+              for (let key  in partitions) {
1941
+                var tempValue
1942
+                var jihaos = partitions[key].jihaos
1943
+
1944
+                if (i == 0) {
1945
+                  let m = 'A3' + ':' + 'A' + (2 + jihaos.length)
1946
+                  tempValue = (2 + jihaos.length)
1947
+                  merges.push(m)
1948
+                } else {
1949
+                  let m = 'A' + (tempValue + 1) + ':' + 'A' + ((tempValue + 1) + jihaos.length - 1)
1950
+                  tempValue = ((tempValue + 1) + jihaos.length - 1)
1951
+                  merges.push(m)
1952
+                }
1953
+                console.log("jihaos",jihaos)
1954
+                for (let b = 0; b < jihaos.length; b++) {
1955
+                 var obj = {}
1956
+               
1957
+                  obj['区号'] = partitions[key].name
1958
+                  obj['机号'] = jihaos[b].number.toString()
1959
+
1960
+                
1961
+                  obj['上午'] = ''
1962
+                  obj['下午'] = ''
1963
+                  obj['晚上'] = ''
1964
+
1965
+                  obj['上午1'] = ''
1966
+                  obj['下午1'] = ''
1967
+                  obj['晚上1'] = ''
1968
+
1969
+                  obj['上午2'] = ''
1970
+                  obj['下午2'] = ''
1971
+                  obj['晚上2'] = ''
1972
+
1973
+                  obj['上午3'] = ''
1974
+                  obj['下午3'] = ''
1975
+                  obj['晚上3'] = ''
1976
+
1977
+                  obj['上午4'] = ''
1978
+                  obj['下午4'] = ''
1979
+                  obj['晚上4'] = ''
1980
+                 
1981
+                
1982
+                  obj['上午5'] = ''
1983
+                  obj['下午5'] = ''
1984
+                  obj['晚上5'] = ''
1985
+
1986
+                  obj['上午6'] = ''
1987
+                  obj['下午6'] = ''
1988
+                  obj['晚上6'] = ''
1989
+
1990
+                  obj['上午7'] = ''
1991
+                  obj['下午7'] = ''
1992
+                  obj['晚上7'] = ''
1993
+
1994
+                  obj['上午8'] = ''
1995
+                  obj['下午8'] = ''
1996
+                  obj['晚上8'] = ''
1997
+
1998
+                  obj['上午9'] = ''
1999
+                  obj['下午9'] = ''
2000
+                  obj['晚上9'] = ''
2001
+
2002
+                  obj['上午10'] = ''
2003
+                  obj['下午10'] = ''
2004
+                  obj['晚上10'] = ''
2005
+
2006
+                  obj['上午11'] = ''
2007
+                  obj['下午11'] = ''
2008
+                  obj['晚上11'] = ''
2009
+                 
2010
+                
2011
+                  obj['上午12'] = ''
2012
+                  obj['下午12'] = ''
2013
+                  obj['晚上12'] = ''
2014
+
2015
+                  obj['上午13'] = ''
2016
+                  obj['下午13'] = ''
2017
+                  obj['晚上13'] = ''
2018
+
2019
+
2020
+                  obj['上午14'] = ''
2021
+                  obj['下午14'] = ''
2022
+                  obj['晚上14'] = ''
2023
+
2024
+
2025
+                  obj['上午15'] = ''
2026
+                  obj['下午15'] = ''
2027
+                  obj['晚上15'] = ''
2028
+
2029
+                  obj['上午16'] = ''
2030
+                  obj['下午16'] = ''
2031
+                  obj['晚上16'] = ''
2032
+
2033
+                  obj['上午17'] = ''
2034
+                  obj['下午17'] = ''
2035
+                  obj['晚上17'] = ''
2036
+
2037
+                  obj['上午18'] = ''
2038
+                  obj['下午18'] = ''
2039
+                  obj['晚上18'] = ''
2040
+
2041
+                  obj['上午19'] = ''
2042
+                  obj['下午19'] = ''
2043
+                  obj['晚上19'] = ''
2044
+                 
2045
+                
2046
+                  obj['上午20'] = ''
2047
+                  obj['下午20'] = ''
2048
+                  obj['晚上20'] = ''
2049
+
2050
+                  list.push(obj)
2051
+                
2052
+                }
2053
+                i++
2054
+              }
2055
+              console.log("list2021444444x",list)  
2056
+              for(let i=0;i<list.length;i++){
2057
+                console.log("list9999999999",list[i])
2058
+              }
2059
+               const start_time = moment().weekday(1).format('YYYY-MM-DD'); //本周一
2060
+               var start = this.getTimestamp(start_time)
2061
+               console.log("start",start)
2062
+              const end_time = moment().weekday(7).format('YYYY-MM-DD');
2063
+              var end = this.getTimestamp(end_time)
2064
+
2065
+              
2066
+              console.log("end",end)
2067
+              var scheduleList = response.data.data.list
2068
+              console.log("排班列表22222",scheduleList)
2069
+              var week= []
2070
+              var nextWeek = []
2071
+              var lastWeek = []
2072
+              var next_start = this.getNextWeekOne(1)
2073
+              var nextstart = this.getTimestamp(next_start)
2074
+              // console.log("下周开始时间",nextstart)
2075
+              var next_end = this.getNextWeek(1)
2076
+              var nextend = this.getTimestamp(next_end)
2077
+              // console.log("下周结束时间",nextend)
2078
+              var last_start = this.getNextWeekOne(2)
2079
+              var last_end = this.getNextWeek(2)
2080
+              var laststart = this.getTimestamp(last_start)
2081
+              // console.log("下下周数据时间",laststart)
2082
+              var lastend = this.getTimestamp(last_end)
2083
+              // console.log("下下周数据时间",lastend)
2084
+
2085
+              if(this.export_type == 0){
2086
+                for(let i = 0;i<scheduleList.length;i++){
2087
+                 if(scheduleList[i].schedule_date >= start && scheduleList[i].schedule_date<=end){
2088
+                   week.push(scheduleList[i])
2089
+                 }
2090
+                 if(scheduleList[i].schedule_date>=nextstart && scheduleList[i].schedule_date<=nextend){
2091
+                   nextWeek.push(scheduleList[i])
2092
+                 }
2093
+
2094
+                 if(scheduleList[i].schedule_date>=laststart && scheduleList[i].schedule_date<=lastend){
2095
+                   lastWeek.push(scheduleList[i])
2096
+                 }
2097
+              }
2098
+              }
2099
+            
2100
+            if(this.export_type == 1){
2101
+                week = scheduleList
2102
+             }
2103
+             console.log("week88888888888",week)
2104
+             if(week.length > 0){
2105
+              for(let i=0;i<list.length;i++){
2106
+               for(let j=0;j<week.length;j++){
2107
+                  if(list[i].机号 == week[j].number){
2108
+                    //  周一上午
2109
+                    if( week[j].schedule_week == 1 && week[j].schedule_type == 1){
2110
+                        list[i].上午 = week[j].name
2111
+                    }
2112
+                    // 周一下午
2113
+                    if( week[j].schedule_week == 1 && week[j].schedule_type == 2){
2114
+                        list[i].下午 = week[j].name
2115
+                    }
2116
+                   // 周一晚上
2117
+                    if( week[j].schedule_week == 1 && week[j].schedule_type == 3){
2118
+                        list[i].晚上 = week[j].name
2119
+                    }
2120
+                    
2121
+                   //周二上午
2122
+                    if( week[j].schedule_week == 2 && week[j].schedule_type == 1){
2123
+                        list[i].上午1 = week[j].name
2124
+                    }
2125
+                   //周二下午
2126
+                    if( week[j].schedule_week == 2 && week[j].schedule_type == 2){
2127
+                        list[i].下午1 = week[j].name
2128
+                    }
2129
+                   //周二晚上
2130
+                    if( week[j].schedule_week == 2 && week[j].schedule_type == 3){
2131
+                        list[i].晚上1 = week[j].name
2132
+                    }
2133
+
2134
+                   //周三上午
2135
+                   if( week[j].schedule_week == 3 && week[j].schedule_type == 1){
2136
+                        list[i].上午2 = week[j].name
2137
+                    }
2138
+                   //周三下午
2139
+                    if( week[j].schedule_week == 3 && week[j].schedule_type == 2){
2140
+                        list[i].下午2 = week[j].name
2141
+                    }
2142
+                   //周三晚上
2143
+                    if( week[j].schedule_week == 3 && week[j].schedule_type == 3){
2144
+                        list[i].晚上2 = week[j].name
2145
+                    }
2146
+                   //周四上午
2147
+                    if( week[j].schedule_week == 4&& week[j].schedule_type == 1){
2148
+                        list[i].上午3 = week[j].name
2149
+                    }
2150
+                   //周四下午
2151
+                    if( week[j].schedule_week == 4 && week[j].schedule_type == 2){
2152
+                        list[i].下午3 = week[j].name
2153
+                    }
2154
+                   //周四晚上
2155
+                    if( week[j].schedule_week == 4 && week[j].schedule_type == 3){
2156
+                        list[i].晚上3 = week[j].name
2157
+                    }
2158
+                   //周五上午
2159
+                    if( week[j].schedule_week == 5&& week[j].schedule_type == 1){
2160
+                        list[i].上午4 = week[j].name
2161
+                    }
2162
+                   //周五下午
2163
+                    if( week[j].schedule_week ==5 && week[j].schedule_type == 2){
2164
+                        list[i].下午4 = week[j].name
2165
+                    }
2166
+                   //周五晚上
2167
+                    if( week[j].schedule_week == 5 && week[j].schedule_type == 3){
2168
+                        list[i].晚上4 = week[j].name
2169
+                    }
2170
+                   //周六上午
2171
+                    if( week[j].schedule_week == 6&& week[j].schedule_type == 1){
2172
+                        list[i].上午5 = week[j].name
2173
+                    }
2174
+                   //周六下午
2175
+                   if( week[j].schedule_week ==6 && week[j].schedule_type == 2){
2176
+                        list[i].下午5 = week[j].name
2177
+                    }
2178
+                   //周六晚上 
2179
+                   if( week[j].schedule_week == 6 && week[j].schedule_type == 3){
2180
+                        list[i].晚上5 = week[j].name
2181
+                    }
2182
+                   //周日上午
2183
+                    if( week[j].schedule_week ==7&& week[j].schedule_type == 1){
2184
+                        list[i].上午6 = week[j].name
2185
+                    }
2186
+                   //周日下午
2187
+                    if( week[j].schedule_week ==7 && week[j].schedule_type == 2){
2188
+                        list[i].下午6 = week[j].name
2189
+                    }
2190
+                   //周日晚上
2191
+                   if( week[j].schedule_week == 7 && week[j].schedule_type == 3){
2192
+                        list[i].晚上6 = week[j].name
2193
+                    }
2194
+                  }
2195
+                
2196
+               }
2197
+             }
2198
+             }
2199
+             
2200
+             console.log("list5555555555",list)
2201
+             
2202
+             if(nextWeek.length > 0 ){
2203
+               for(let i=0;i<list.length;i++){
2204
+                for(let j=0;j<nextWeek.length;j++){
2205
+                 if(list[i].机号 == nextWeek[j].number ){
2206
+                  //周一   
2207
+                   if( nextWeek[j].schedule_week ==1&& nextWeek[j].schedule_type == 1){
2208
+                        list[i].上午7 = nextWeek[j].name
2209
+                    }
2210
+                   //周一下午
2211
+                    if( nextWeek[j].schedule_week ==1 && nextWeek[j].schedule_type == 2){
2212
+                        list[i].下午7 = nextWeek[j].name
2213
+                    }
2214
+                   //周一晚上
2215
+                   if( nextWeek[j].schedule_week == 1 && nextWeek[j].schedule_type == 3){
2216
+                        list[i].晚上7 = nextWeek[j].name
2217
+                    }
2218
+                  
2219
+
2220
+                   //周二上午  
2221
+                   if( nextWeek[j].schedule_week ==2&& nextWeek[j].schedule_type == 1){
2222
+                        list[i].上午8 = nextWeek[j].name
2223
+                    }
2224
+                   //周二下午
2225
+                    if( nextWeek[j].schedule_week ==2 && nextWeek[j].schedule_type == 2){
2226
+                        list[i].下午8 = nextWeek[j].name
2227
+                    }
2228
+                   //周二晚上
2229
+                   if( nextWeek[j].schedule_week == 2 && nextWeek[j].schedule_type == 3){
2230
+                        list[i].晚上8  = nextWeek[j].name
2231
+                    }
2232
+
2233
+                  //周三上午  
2234
+                   if( nextWeek[j].schedule_week ==3&& nextWeek[j].schedule_type == 1){
2235
+                        list[i].上午9 = nextWeek[j].name
2236
+                    }
2237
+                   //周三下午
2238
+                    if( nextWeek[j].schedule_week ==3 && nextWeek[j].schedule_type == 2){
2239
+                        list[i].下午9 = nextWeek[j].name
2240
+                    }
2241
+                   //周三晚上
2242
+                   if( nextWeek[j].schedule_week == 3 && nextWeek[j].schedule_type == 3){
2243
+                        list[i].晚上9  = nextWeek[j].name
2244
+                    }
2245
+
2246
+                   //周四上午  
2247
+                   if( nextWeek[j].schedule_week ==4&& nextWeek[j].schedule_type == 1){
2248
+                        list[i].上午10 = nextWeek[j].name
2249
+                    }
2250
+                   //周四下午
2251
+                    if( nextWeek[j].schedule_week ==4 && nextWeek[j].schedule_type == 2){
2252
+                        list[i].下午10 = nextWeek[j].name
2253
+                    }
2254
+                   //周四晚上
2255
+                   if( nextWeek[j].schedule_week == 4 && nextWeek[j].schedule_type == 3){
2256
+                        list[i].晚上10  = nextWeek[j].name
2257
+                    }
2258
+                    
2259
+                    //周五上午  
2260
+                   if( nextWeek[j].schedule_week ==5&& nextWeek[j].schedule_type == 1){
2261
+                        list[i].上午11 = nextWeek[j].name
2262
+                    }
2263
+                   //周五下午
2264
+                    if( nextWeek[j].schedule_week ==5 && nextWeek[j].schedule_type == 2){
2265
+                        list[i].下午11 = nextWeek[j].name
2266
+                    }
2267
+                   //周五晚上
2268
+                   if( nextWeek[j].schedule_week == 5 && nextWeek[j].schedule_type == 3){
2269
+                        list[i].晚上11  = nextWeek[j].name
2270
+                    }
2271
+
2272
+                  //周六上午  
2273
+                   if( nextWeek[j].schedule_week ==6&& nextWeek[j].schedule_type == 1){
2274
+                        list[i].上午12 = nextWeek[j].name
2275
+                    }
2276
+                   //周六下午
2277
+                    if( nextWeek[j].schedule_week ==6 && nextWeek[j].schedule_type == 2){
2278
+                        list[i].下午12 = nextWeek[j].name
2279
+                    }
2280
+                   //周六晚上
2281
+                   if( nextWeek[j].schedule_week == 6 && nextWeek[j].schedule_type == 3){
2282
+                        list[i].晚上12  = nextWeek[j].name
2283
+                    }
2284
+
2285
+                  //周日上午  
2286
+                   if( nextWeek[j].schedule_week ==6&& nextWeek[j].schedule_type == 1){
2287
+                        list[i].上午13 = nextWeek[j].name
2288
+                    }
2289
+                   //周日下午
2290
+                    if( nextWeek[j].schedule_week ==6 && nextWeek[j].schedule_type == 2){
2291
+                        list[i].下午13 = nextWeek[j].name
2292
+                    }
2293
+                   //周日晚上
2294
+                   if( nextWeek[j].schedule_week == 6 && nextWeek[j].schedule_type == 3){
2295
+                        list[i].晚上13  = nextWeek[j].name
2296
+                    }
2297
+                  }
2298
+
2299
+               }
2300
+              }
2301
+             }
2302
+              
2303
+             console.log("lastWeek",lastWeek)
2304
+
2305
+             if(lastWeek.length > 0 ){ 
2306
+               for(let i=0;i<list.length;i++){
2307
+                 for(let j=0;j<lastWeek.length;j++){
2308
+                   if(list[i].机号 == lastWeek[j].number ){ 
2309
+                     //周一   
2310
+                    if( lastWeek[j].schedule_week ==1&& lastWeek[j].schedule_type == 1){
2311
+                          list[i].上午14 = lastWeek[j].name
2312
+                      }
2313
+                    //周一下午
2314
+                      if( lastWeek[j].schedule_week ==1 && lastWeek[j].schedule_type == 2){
2315
+                          list[i].下午14 = lastWeek[j].name
2316
+                      }
2317
+                    //周一晚上
2318
+                    if( lastWeek[j].schedule_week == 1 && lastWeek[j].schedule_type == 3){
2319
+                          list[i].晚上14 = lastWeek[j].name
2320
+                     }
2321
+
2322
+                    //周二
2323
+                    if( lastWeek[j].schedule_week ==2&& lastWeek[j].schedule_type == 1){
2324
+                          list[i].上午15 = lastWeek[j].name
2325
+                      }
2326
+                    //周二下午
2327
+                      if( lastWeek[j].schedule_week ==2 && lastWeek[j].schedule_type == 2){
2328
+                          list[i].下午15 = lastWeek[j].name
2329
+                      }
2330
+                    //周二晚上
2331
+                    if( lastWeek[j].schedule_week == 2 && lastWeek[j].schedule_type == 3){
2332
+                          list[i].晚上15 = lastWeek[j].name
2333
+                      }
2334
+
2335
+                    //周三
2336
+                    if( lastWeek[j].schedule_week ==3&& lastWeek[j].schedule_type == 1){
2337
+                          list[i].上午16 = lastWeek[j].name
2338
+                      }
2339
+                    //周三下午
2340
+                      if( lastWeek[j].schedule_week ==3 && lastWeek[j].schedule_type == 2){
2341
+                          list[i].下午16 = lastWeek[j].name
2342
+                      }
2343
+                    //周三晚上
2344
+                    if( lastWeek[j].schedule_week == 3 && lastWeek[j].schedule_type == 3){
2345
+                          list[i].晚上16 = lastWeek[j].name
2346
+                     }
2347
+
2348
+                    
2349
+                     //周四
2350
+                    if( lastWeek[j].schedule_week ==4&& lastWeek[j].schedule_type == 1){
2351
+                          list[i].上午17 = lastWeek[j].name
2352
+                      }
2353
+                    //周四下午
2354
+                      if( lastWeek[j].schedule_week ==4 && lastWeek[j].schedule_type == 2){
2355
+                          list[i].下午17 = lastWeek[j].name
2356
+                      }
2357
+                    //周四晚上
2358
+                    if( lastWeek[j].schedule_week == 4 && lastWeek[j].schedule_type == 3){
2359
+                          list[i].晚上17 = lastWeek[j].name
2360
+                     }
2361
+
2362
+                    //周五
2363
+                    if( lastWeek[j].schedule_week ==5&& lastWeek[j].schedule_type == 1){
2364
+                          list[i].上午18 = lastWeek[j].name
2365
+                      }
2366
+                    //周五下午
2367
+                      if( lastWeek[j].schedule_week ==5 && lastWeek[j].schedule_type == 2){
2368
+                          list[i].下午18 = lastWeek[j].name
2369
+                      }
2370
+                    //周五晚上
2371
+                    if( lastWeek[j].schedule_week == 5 && lastWeek[j].schedule_type == 3){
2372
+                          list[i].晚上18 = lastWeek[j].name
2373
+                     }
2374
+
2375
+                    //周六
2376
+                    if( lastWeek[j].schedule_week ==6&& lastWeek[j].schedule_type == 1){
2377
+                          list[i].上午19 = lastWeek[j].name
2378
+                      }
2379
+                    //周六下午
2380
+                      if( lastWeek[j].schedule_week ==6 && lastWeek[j].schedule_type == 2){
2381
+                          list[i].下午19 = lastWeek[j].name
2382
+                      }
2383
+                    //周六晚上
2384
+                    if( lastWeek[j].schedule_week == 6 && lastWeek[j].schedule_type == 3){
2385
+                          list[i].晚上19 = lastWeek[j].name
2386
+                     }
2387
+
2388
+                     //周日
2389
+                    if( lastWeek[j].schedule_week ==7&& lastWeek[j].schedule_type == 1){
2390
+                          list[i].上午20 = lastWeek[j].name
2391
+                      }
2392
+                    //周日下午
2393
+                      if( lastWeek[j].schedule_week ==7 && lastWeek[j].schedule_type == 2){
2394
+                          list[i].下午20 = lastWeek[j].name
2395
+                      }
2396
+                    //周日晚上
2397
+                    if( lastWeek[j].schedule_week == 7 && lastWeek[j].schedule_type == 3){
2398
+                          list[i].晚上20 = lastWeek[j].name
2399
+                     }
2400
+                   }  
2401
+
2402
+                  }
2403
+                }
2404
+             } 
2405
+             this.tableList = list
2406
+           }
2407
+         })
2408
+       },
2409
+
2410
+       getTimestamp(time) { //把时间日期转成时间戳
2411
+          return (new Date(time)).getTime() / 1000 - 28800
2412
+       },
2413
+
2414
+       changePartition(val){
2415
+         this.partition_id = val
2416
+         this.getThreeWeekList()
2417
+       },
2418
+
2419
+       changeSchedule(val){
2420
+         this.schedule_type = val
2421
+         this.getThreeWeekList()
2422
+       },
2423
+
2424
+       changeWeek(val){
2425
+         console.log("Val",val)
2426
+         var start = this.getTimestamp(val) - 57600
2427
+         console.log("start",start)
2428
+         this.start_time = this.getTime(start)
2429
+         var end = this.getTimestamp(val) + 460800
2430
+         this.end_time = this.getTime(end)
2431
+         this.export_type = 1
2432
+         this.getThreeWeekList()
2433
+       },
2434
+
2435
+      getTime(val) {
2436
+        return uParseTime(val, '{y}-{m}-{d}')
2437
+      },
2438
+       
1840 2439
 
1841 2440
     },
1842 2441
     created() {
2442
+     var start_time = moment().weekday(1).format('YYYY-MM-DD');
2443
+     this.start_time = start_time
2444
+     var end_time = this.getNextWeek(2)
2445
+     this.end_time = end_time
1843 2446
       this.getWeekPanels()
1844 2447
       this.getInitDate()
2448
+
2449
+      //获取三周排班数据
2450
+      this.getThreeWeekList()
1845 2451
     }
1846 2452
   }
1847 2453
 </script>

+ 60 - 8
src/xt_pages/workforce/components/tableData.vue View File

@@ -1,9 +1,30 @@
1 1
 <template>
2 2
   <div id="table_data">
3
+    <!-- <div style="margin-bottom:-30px">
4
+      <span>分区:</span>
5
+       <el-select v-model="partition_id" placeholder="请选择" @change="changePartiton">
6
+        <el-option
7
+          v-for="item in this.zones"
8
+          :key="item.id"
9
+          :label="item.name"
10
+          :value="item.id">
11
+         </el-option>
12
+        </el-select>
13
+       <span style="margin-left:100px">班次:</span>
14
+       <el-select v-model="schedule_type" placeholder="请选择" @change="changeSchedule_type">
15
+        <el-option
16
+          v-for="item in options"
17
+          :key="item.id"
18
+          :label="item.name"
19
+          :value="item.id">
20
+         </el-option>
21
+       </el-select>
22
+    </div> -->
23
+   
3 24
     <div class="cell clearfix" v-if="weekTime == 'thisWeek' || weekTime == 'nextWeek'  || weekTime == 'nextTwoWeek' ">
4 25
       <el-input
5 26
         size="small"
6
-        style="width: 400px;"
27
+        style="width: 200px;"
7 28
         class="filter-item"
8 29
         v-model.trim="keywords"
9 30
         placeholder="病人名称/透析号"
@@ -15,9 +36,12 @@
15 36
         type="primary"
16 37
         icon="el-icon-search"
17 38
         @click="search"
39
+       
18 40
         >搜索</el-button
19 41
       >
20 42
     </div>
43
+    
44
+    
21 45
 
22 46
     <el-dialog :visible.sync="searchTableVisible" width="80%">
23 47
       <el-table
@@ -602,7 +626,8 @@ import {
602 626
   getSchedules,
603 627
   getSearchResult,
604 628
   getUrgentScheduleInitData,
605
-  getWeekPanels
629
+  getWeekPanels,
630
+  getAllZones,
606 631
 } from "@/api/schedule";
607 632
 import ScheduleItem from "./ScheduleItem";
608 633
 
@@ -726,7 +751,16 @@ export default {
726 751
       zone_name: "",
727 752
       current_devices: [],
728 753
       zone_names: [],
729
-      zone_device_options: []
754
+      zone_device_options: [],
755
+      options:[
756
+        {id:0,name:"全部"},
757
+        {id:1,name:"上午"},
758
+        {id:2,name:"下午"},
759
+        {id:3,name:"晚上"},
760
+      ],
761
+      partition_id:"",
762
+      schedule_type:"",
763
+      zones:[{id:0,name:"全部"}]
730 764
     };
731 765
   },
732 766
 
@@ -868,6 +902,7 @@ export default {
868 902
       this.currentData.patient_id = 0;
869 903
     },
870 904
     getSchedules(weekType) {
905
+      
871 906
       getSchedules(weekType).then(response => {
872 907
         if (response.data.state == 1) {
873 908
           this.weekTitle = response.data.data.weekTitle;
@@ -1462,7 +1497,7 @@ export default {
1462 1497
 
1463 1498
             this.zone_names = Object.keys(this.zone_device_map);
1464 1499
             // console.log('8989898989898989',this.zone_names)
1465
-
1500
+            
1466 1501
             // console.log(this.current_devices);
1467 1502
 
1468 1503
             if (this.zone_names.length > 0) {
@@ -1945,6 +1980,23 @@ export default {
1945 1980
       }else {
1946 1981
         return 'table-row-new-class schedule-table-row backPurple'
1947 1982
       }
1983
+    },
1984
+    getAllZones(){
1985
+      getAllZones().then(response=>{
1986
+         if(response.data.state == 1){
1987
+           var zones = response.data.data.zones
1988
+           this.zones.push(...zones)
1989
+           
1990
+         }
1991
+      })
1992
+    },
1993
+    changePartiton(val){
1994
+     this.$emit('event1', val)
1995
+      this.partition_id = val
1996
+    },
1997
+    changeSchedule_type(val){
1998
+     this.$emit('event2', val)
1999
+     this.schedule_type = val
1948 2000
     }
1949 2001
   },
1950 2002
   components: {
@@ -1976,11 +2028,10 @@ export default {
1976 2028
     this.changeScheduleType(1)
1977 2029
     rowNumber = 0;
1978 2030
     this.modeOptions = this.$store.getters.treatment_mode;
1979
-
2031
+ 
1980 2032
     this.partitions = this.partitionsProp;
1981 2033
 
1982
-    console.log(this.partitions);
1983
-
2034
+    
1984 2035
     var contagions = this.$store.getters.contagions;
1985 2036
     if (contagions.length > 0) {
1986 2037
       var that = this;
@@ -1991,12 +2042,13 @@ export default {
1991 2042
       });
1992 2043
     }
1993 2044
     this.scheduleZoneRow = this.scheduleZoneRowProp;
1994
-    console.log(this.scheduleZoneRow);
2045
+    
1995 2046
 
1996 2047
     this.weekday = new Date().getDay();
1997 2048
     if (this.weekday == 0) {
1998 2049
       this.weekday = 7;
1999 2050
     }
2051
+  //  this.getAllZones()
2000 2052
   }
2001 2053
 };
2002 2054
 </script>