Browse Source

Merge branch '20230223_pc_vue_new_branch' of http://git.shengws.com/csx/Vue_New into 20230223_pc_vue_new_branch

陈少旭 9 months ago
parent
commit
fc9312a62e

+ 8 - 1
src/utils/tools.js View File

25
   var birthYear = strBirthdayArr[0]
25
   var birthYear = strBirthdayArr[0]
26
   var birthMonth = strBirthdayArr[1]
26
   var birthMonth = strBirthdayArr[1]
27
   var birthDay = strBirthdayArr[2]
27
   var birthDay = strBirthdayArr[2]
28
-
28
+ 
29
+  console.log("birthYear",birthYear)
30
+  console.log("birthMonth",birthMonth)
31
+  console.log("birthDay",birthDay)
29
   
32
   
30
   var d = new Date()
33
   var d = new Date()
31
   var nowYear = d.getFullYear()
34
   var nowYear = d.getFullYear()
32
   var nowMonth = d.getMonth() + 1
35
   var nowMonth = d.getMonth() + 1
33
   var nowDay = d.getDate()
36
   var nowDay = d.getDate()
37
+
38
+  console.log("nowYear",nowYear)
39
+  console.log("nowMonth",nowMonth)
40
+  console.log("nowDay",nowDay)
34
   
41
   
35
   if (nowYear == birthYear) {
42
   if (nowYear == birthYear) {
36
     returnAge = 0 // 同年 则为0岁
43
     returnAge = 0 // 同年 则为0岁

+ 2 - 1
src/xt_pages/device/objectTableDisinfectTwo.vue View File

1111
                             </tr>
1111
                             </tr>
1112
 
1112
 
1113
                             <tr v-for="(item,index) in tableData" :key="index">
1113
                             <tr v-for="(item,index) in tableData" :key="index">
1114
-                                <td>{{item.storey }}</td>
1114
+                               
1115
                                 <td>{{getTimes(item.record_date) }}</td>
1115
                                 <td>{{getTimes(item.record_date) }}</td>
1116
+                                <td>{{item.storey }}</td>
1116
                                 <td>{{getTimeTwo( item.first_start_time)}}- {{getTimeTwo(item.first_end_time)  }}</td>
1117
                                 <td>{{getTimeTwo( item.first_start_time)}}- {{getTimeTwo(item.first_end_time)  }}</td>
1117
                                 <td>
1118
                                 <td>
1118
                                 <span v-if="setAdminUserES(item.first_creator?item.last_creator:item.first_creator) == ''">
1119
                                 <span v-if="setAdminUserES(item.first_creator?item.last_creator:item.first_creator) == ''">

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

2096
         this.date = schedual.schedule_date
2096
         this.date = schedual.schedule_date
2097
          this.getScheduleDetail();
2097
          this.getScheduleDetail();
2098
         console.log('schedual',schedual);
2098
         console.log('schedual',schedual);
2099
-        this.getLongAdvice();
2100
-
2101
-        // var patient_id = schedual.patient_id
2102
-        // var date = schedual.schedule_date
2103
-        // this.$router.push({
2104
-        //   path: '/dialysis/details',
2105
-        //   query: {
2106
-        //     patient_id: patient_id,
2107
-        //     date: date,
2108
-        //     patient_name: schedual.patient.name,
2109
-        //     mode_id:schedual.mode_id
2110
-        //   }
2111
-        // })
2099
+        //this.getLongAdvice();
2100
+
2101
+        var patient_id = schedual.patient_id
2102
+        var date = schedual.schedule_date
2103
+        this.$router.push({
2104
+          path: '/dialysis/details',
2105
+          query: {
2106
+            patient_id: patient_id,
2107
+            date: date,
2108
+            patient_name: schedual.patient.name,
2109
+            mode_id:schedual.mode_id
2110
+          }
2111
+        })
2112
     },
2112
     },
2113
     handleClick(type) {
2113
     handleClick(type) {
2114
       sessionStorage.setItem('nameActive', type.name);
2114
       sessionStorage.setItem('nameActive', type.name);

+ 23 - 2
src/xt_pages/dialysis/template/DialysisPrintOrderSix.vue View File

3686
       },
3686
       },
3687
       org_id: 0,
3687
       org_id: 0,
3688
       projectsOne: [],
3688
       projectsOne: [],
3689
+      schedule_date_one:"",
3689
     };
3690
     };
3690
   },
3691
   },
3691
   methods: {
3692
   methods: {
4189
       if (response.data.state == 1) {
4190
       if (response.data.state == 1) {
4190
         this.adminUser = response.data.data.users;
4191
         this.adminUser = response.data.data.users;
4191
         console.log('3333333wwwwww',response.data.data);
4192
         console.log('3333333wwwwww',response.data.data);
4193
+       var schedule_date  =  response.data.data.schedule.schedule_date
4194
+       this.schedule_date_one =  uParseTime(
4195
+          schedule_date,
4196
+          "{y}-{m}-{d}"
4197
+        );
4192
         this.users = response.data.data.users;
4198
         this.users = response.data.data.users;
4193
         this.patientInfo = response.data.data.patientInfo;
4199
         this.patientInfo = response.data.data.patientInfo;
4194
 
4200
 
4710
           birth.substr(4, 2) +
4716
           birth.substr(4, 2) +
4711
           '-' +
4717
           '-' +
4712
           birth.substr(6, 2)
4718
           birth.substr(6, 2)
4719
+        if(this.org_id!=0){
4720
+          var age = jsGetAge(birthtwo, '-')
4721
+          return age
4722
+        }
4713
 
4723
 
4714
-        var age = jsGetAge(birthtwo, '-')
4715
-        return age
4724
+        if(this.org_id == 0){
4725
+          console.log("日期搜哦",this.schedule_date_one)
4726
+          var strBirthdayArr = this.schedule_date_one.split("-")
4727
+          console.log("strBirthdayArr",strBirthdayArr)
4728
+          var yeaer = strBirthdayArr[0]
4729
+          var month = strBirthdayArr[1]
4730
+          var day = strBirthdayArr[2]
4731
+          var age = jsGetAge(birthtwo, '-',yeaer,month,day)
4732
+          console.log("agesssss",age)
4733
+          return age
4734
+
4735
+        }
4736
+      
4716
       }
4737
       }
4717
     },
4738
     },
4718
     newAdviceGroupObject: function () {
4739
     newAdviceGroupObject: function () {

+ 91 - 25
src/xt_pages/outpatientDoctorStation/template/prinSeven.vue View File

62
               v-for="(it, index) in item.advices" :key="index"
62
               v-for="(it, index) in item.advices" :key="index"
63
               :style="{'page-break-after':index==yi&&item.advices.length>5? 'always':'auto'}"
63
               :style="{'page-break-after':index==yi&&item.advices.length>5? 'always':'auto'}"
64
             >
64
             >
65
-            <!-- class="drugsBox"  item.advices.length>=5 ? 'danzhang' : 'drugsBox'  :style="{'page-break-after':index==yi&&item.advices.length>3? 'always':'auto'}"-->
66
-              <!-- <div class="drugsOne"><span style="font-weight:bold;">{{ index+1 + '.' }}</span>{{it.advice_name?it.advice_name:""}}&nbsp;&nbsp;{{it.single_dose}}{{it.single_dose_unit}}&nbsp;×&nbsp; {{it.prescribing_number}}{{it.prescribing_number_unit}}</div> -->
67
               <template v-if="index==yi+1&&item.advices.length>5">
65
               <template v-if="index==yi+1&&item.advices.length>5">
68
                 <div style="margin: 20px 0px;">
66
                 <div style="margin: 20px 0px;">
69
                   <div class="infoTitle">
67
                   <div class="infoTitle">
101
                 </div>
99
                 </div>
102
               </template>
100
               </template>
103
               <div style="position: relative;">
101
               <div style="position: relative;">
104
-                <div class="drugsOne" :style="{'border-right':item.arr.length>0 && item.arr[0][0].groupno==it.groupno ? '1px solid black': 'none','width':'80%'}">
102
+                <!-- :style="{'border-right':item.arr.length>0 && (item.arr[0][0].groupno==it.groupno) ? '1px solid black': 'none','width':'80%'}" -->
103
+                <!-- <div class="drugsOne" >
105
                   <span style="font-weight: bold" >
104
                   <span style="font-weight: bold" >
106
                     {{ index + 1 + "."}}
105
                     {{ index + 1 + "."}}
107
                   </span>
106
                   </span>
110
                     {{ it.drug.dose }}{{ it.drug.dose_unit }}&nbsp;* {{ it.drug.min_number }}{{ it.drug.min_unit }}/
109
                     {{ it.drug.dose }}{{ it.drug.dose_unit }}&nbsp;* {{ it.drug.min_number }}{{ it.drug.min_unit }}/
111
                     {{it.drug.max_unit}}
110
                     {{it.drug.max_unit}}
112
                   </span>&nbsp;
111
                   </span>&nbsp;
113
-                  <div>
114
-                    <template v-if="item.arr.length>0 && item.arr[0][0].groupno==it.groupno">
112
+                  <div v-for="(ite,indexs) in item.arr" :key="indexs">
113
+                    <template v-if="item.arr.length>0 && ite[0].groupno==it.groupno">
115
                       <div >
114
                       <div >
116
-                        <!-- -->
117
-                        <span style="margin-left: 38px;">{{item.arr[0][0].advice_name ? item.arr[0][0].advice_name : ""}}</span>&nbsp;&nbsp;
118
-                        <span v-if="item.arr[0][0].drug.min_unit != item.arr[0][0].drug.dose_unit">
119
-                          {{ item.arr[0][0].drug.dose }}{{ item.arr[0][0].drug.dose_unit }}&nbsp;* {{ item.arr[0][0].drug.min_number }}{{ item.arr[0][0].drug.min_unit }}/
120
-                          {{item.arr[0][0].drug.max_unit}}
115
+                        <span style="margin-left: 38px;">{{ite[0].advice_name ? ite[0].advice_name : ""}}</span>&nbsp;&nbsp;
116
+                        <span v-if="ite[0].drug.min_unit != ite[0].drug.dose_unit">
117
+                          {{ ite[0].drug.dose }}{{ ite[0].drug.dose_unit }}&nbsp;* {{ ite[0].drug.min_number }}{{ ite[0].drug.min_unit }}/
118
+                          {{ite[0].drug.max_unit}}
121
                         </span>&nbsp;
119
                         </span>&nbsp;
122
                       </div>
120
                       </div>
123
-                      <div style="display: inline-block;position: absolute;left:85%;top:20px;margin-left: 10px;" >
124
-                        &nbsp;共{{ item.arr[0][0].single_dose }}{{ item.arr[0][0].single_dose_unit }}
125
-                        <!-- 共{{ it.prescribing_number}}{{ it.prescribing_number_unit }} -->
121
+                      <div style="display: inline-block;position: absolute;left:85%;top:20px;margin-left: 5px;" >
122
+                        &nbsp;共{{ ite[0].single_dose }}{{ ite[0].single_dose_unit }}
126
                       </div>
123
                       </div>
127
                     </template>
124
                     </template>
128
                   </div>
125
                   </div>
138
                   <div style="margin-left: 70px" v-if="it.remark !=''">
135
                   <div style="margin-left: 70px" v-if="it.remark !=''">
139
                     备注:<span > {{ it.remark }}</span>
136
                     备注:<span > {{ it.remark }}</span>
140
                   </div>
137
                   </div>
141
-                  <!-- v-if="arr.length>0 && arr[0][0].groupno==it.groupno" 'border-right':arr.length>0 && arr[0][0].groupno==it.groupno ? '1px solid black' :'none',-->
142
                 </div>
138
                 </div>
143
-                <div style="display: inline-block;position: absolute;left:80%;bottom:30px;margin-left: 10px;" >
139
+                <div style="display: inline-block;position: absolute;left:80%;bottom:30px;margin-left: 5px;" >
144
                   ×&nbsp;{{ it.prescribing_number}}
140
                   ×&nbsp;{{ it.prescribing_number}}
145
                 </div>
141
                 </div>
146
-                <template v-if="item.arr.length>0&&item.arr[0][0].groupno==it.groupno">
147
-                  <div style="display: inline-block;position: absolute;left:80%;bottom:15px;margin-left: 10px;" >
148
-                    ×&nbsp;{{ item.arr[0][0].prescribing_number}}
142
+                <div v-for="(ite,indexs) in item.arr" :key="indexs">
143
+                  <template v-if="item.arr.length>0&&ite[0].groupno==it.groupno">
144
+                    <div style="display: inline-block;position: absolute;left:80%;bottom:15px;margin-left: 5px;" >
145
+                      ×&nbsp;{{ ite[0].prescribing_number}}
146
+                    </div>
147
+                  </template>
148
+                </div>
149
+                <template>
150
+
151
+                    <div style="display: inline-block;position: absolute;left:85%;top:0px;margin-left: 5px;" v-if="(item.arr.length>0&&item.arr[0][0].groupno!=it.groupno) || item.arr.length==0">
152
+                      &nbsp;共{{ it.prescribing_number}}{{ it.prescribing_number_unit }}
153
+                    </div>
154
+
155
+                    <div style="display: inline-block;position: absolute;left:85%;top:0px;margin-left: 5px;" v-if="item.arr.length>0&&item.arr[0][0].groupno==it.groupno">
156
+                      &nbsp;共{{ it.single_dose }}{{ it.single_dose_unit }}
157
+                    </div>
158
+                </template> -->
159
+                <!-- --------------------------------------------------------------------- -->
160
+                <template>
161
+                  <div v-for="(ite,indexs) in item.arr" :key="indexs">
162
+                    <div class="drugsOne" :style="{'border-right':item.arr.length>0 && (ite[0].groupno==it.groupno) ? '1px solid black': 'none','width':'80%'}">
163
+                    <span style="font-weight: bold" >
164
+                      {{ index + 1 + "."}}
165
+                    </span>
166
+                    {{ it.advice_name ? it.advice_name : "" }}&nbsp;&nbsp;
167
+                    <span v-if="it.drug.min_unit != it.drug.dose_unit">
168
+                      {{ it.drug.dose }}{{ it.drug.dose_unit }}&nbsp;* {{ it.drug.min_number }}{{ it.drug.min_unit }}/
169
+                      {{it.drug.max_unit}}
170
+                    </span>&nbsp;
171
+                    <div >
172
+                      <template v-if="item.arr.length>0 && ite[0].groupno==it.groupno">
173
+                        <div >
174
+                          <span style="margin-left: 38px;">{{ite[0].advice_name ? ite[0].advice_name : ""}}</span>&nbsp;&nbsp;
175
+                          <span v-if="ite[0].drug.min_unit != ite[0].drug.dose_unit">
176
+                            {{ ite[0].drug.dose }}{{ ite[0].drug.dose_unit }}&nbsp;* {{ ite[0].drug.min_number }}{{ ite[0].drug.min_unit }}/
177
+                            {{ite[0].drug.max_unit}}
178
+                          </span>&nbsp;
179
+                        </div>
180
+                        <div style="display: inline-block;position: absolute;left:85%;top:20px;margin-left: 5px;" >
181
+                          &nbsp;共{{ ite[0].single_dose }}{{ ite[0].single_dose_unit }}
182
+                          <!-- 共{{ it.prescribing_number}}{{ it.prescribing_number_unit }} -->
183
+                        </div>
184
+                      </template>
185
+                    </div>
186
+                    <div style="margin-left: 70px">
187
+                      用法:
188
+                      <span v-if="(item.arr.length>0 && item.arr[0][0].groupno!=it.groupno)||item.arr.length==0">{{ it.single_dose }}{{ it.single_dose_unit }}</span>
189
+                      &nbsp;&nbsp;<span>
190
+                        {{ it.execution_frequency }}&nbsp;{{
191
+                          it.delivery_way
192
+                        }}&nbsp;</span>&nbsp;&nbsp;<span>{{ it.advice_desc}}</span>
193
+                    </div>
194
+                    <div style="margin-left: 70px" v-if="it.remark !=''">
195
+                      备注:<span > {{ it.remark }}</span>
196
+                    </div>
197
+                      <!-- v-if="arr.length>0 && arr[0][0].groupno==it.groupno" 'border-right':arr.length>0 && arr[0][0].groupno==it.groupno ? '1px solid black' :'none',-->
198
+                    </div>
199
+                    <div style="display: inline-block;position: absolute;left:80%;bottom:30px;margin-left: 5px;" >
200
+                      ×&nbsp;{{ it.prescribing_number}}
201
+                    </div>
202
+                    <div >
203
+                      <template v-if="item.arr.length>0&&ite[0].groupno==it.groupno">
204
+                        <div style="display: inline-block;position: absolute;left:80%;bottom:15px;margin-left: 5px;" >
205
+                          ×&nbsp;{{ ite[0].prescribing_number}}
206
+                        </div>
207
+                      </template>
208
+                    </div>
209
+                    <template>
210
+                      <!-- <div v-for="(ite,indexs) in item.arr" :key="indexs"> -->
211
+                        <div style="display: inline-block;position: absolute;left:85%;top:0px;margin-left: 5px;" v-if="(item.arr.length>0&&item.arr[0][0].groupno!=it.groupno) || item.arr.length==0">
212
+                          &nbsp;共{{ it.prescribing_number}}{{ it.prescribing_number_unit }}
213
+                        </div>
214
+
215
+                        <div style="display: inline-block;position: absolute;left:85%;top:0px;margin-left: 5px;" v-if="item.arr.length>0&&item.arr[0][0].groupno==it.groupno">
216
+                          &nbsp;共{{ it.single_dose }}{{ it.single_dose_unit }}
217
+                        </div>
218
+                      <!-- </div> -->
219
+                    </template>
149
                   </div>
220
                   </div>
221
+
150
                 </template>
222
                 </template>
151
-                <div style="display: inline-block;position: absolute;left:85%;top:0px;margin-left: 10px;" v-if="(item.arr.length>0&&item.arr[0][0].groupno!=it.groupno) || item.arr.length==0">
152
-                  &nbsp;共{{ it.prescribing_number}}{{ it.prescribing_number_unit }}
153
-                </div>
154
-                <div style="display: inline-block;position: absolute;left:85%;top:0px;margin-left: 10px;" v-if="item.arr.length>0&&item.arr[0][0].groupno==it.groupno">
155
-                  <!-- &nbsp;共{{ it.prescribing_number}}{{ it.prescribing_number_unit }} -->
156
-                  &nbsp;共{{ it.single_dose }}{{ it.single_dose_unit }}
157
-                </div>
223
+
158
               </div>
224
               </div>
159
               <template v-if="index==yi&&item.advices.length>5">
225
               <template v-if="index==yi&&item.advices.length>5">
160
                 <div style="margin: 20px 0px;">
226
                 <div style="margin: 20px 0px;">

+ 2 - 2
src/xt_pages/role/admin.vue View File

225
           @click="toAutoDrug">自动生成</el-button> -->
225
           @click="toAutoDrug">自动生成</el-button> -->
226
 
226
 
227
 
227
 
228
-         <!-- <el-button
228
+         <el-button
229
           type="primary"
229
           type="primary"
230
           size="small"
230
           size="small"
231
           icon="el-icon-circle-plus-outline"
231
           icon="el-icon-circle-plus-outline"
232
           style="float:left"
232
           style="float:left"
233
-          @click="toAutoDiagnose">自动脚本</el-button>  -->
233
+          @click="toAutoDiagnose">自动脚本</el-button> 
234
      </div>
234
      </div>
235
 
235
 
236
 
236
 

+ 3 - 3
src/xt_pages/stock/detail/stockOutDetail.vue View File

13
       size="small"
13
       size="small"
14
       @click="exportListDetail"
14
       @click="exportListDetail"
15
       type="primary"
15
       type="primary"
16
-      v-if="orgId !=10480 && orgId!=0"
16
+      v-if="orgId !=10480"
17
       >明细导出
17
       >明细导出
18
      
18
      
19
     </el-button>
19
     </el-button>
22
       size="small"
22
       size="small"
23
       @click="exportListDetailOne"
23
       @click="exportListDetailOne"
24
       type="primary"
24
       type="primary"
25
-      v-if="orgId ==10480 || orgId == 0"
25
+      v-if="orgId ==10480"
26
       >明细导出
26
       >明细导出
27
      
27
      
28
     </el-button>
28
     </el-button>
933
         })
933
         })
934
      },
934
      },
935
      exportListDetail(){
935
      exportListDetail(){
936
-
936
+        console.log("hahhdhafhhahdf",this.tableDataList)
937
         var obj = {index:"合计",total_price:0}
937
         var obj = {index:"合计",total_price:0}
938
         var total = 0
938
         var total = 0
939
         for(let i=0;i<this.tableDataList.length;i++){
939
         for(let i=0;i<this.tableDataList.length;i++){

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

17
       >明细导出
17
       >明细导出
18
     </el-button>
18
     </el-button>
19
     <el-button
19
     <el-button
20
-      v-if="org_id == 10265"
20
+      v-if="org_id == 10265 || org_id == 0"
21
       style="float: right;margin-right:10px"
21
       style="float: right;margin-right:10px"
22
       size="small"
22
       size="small"
23
       @click="exportListDetaiOne"
23
       @click="exportListDetaiOne"
25
       >明细导出
25
       >明细导出
26
     </el-button>
26
     </el-button>
27
     <el-button
27
     <el-button
28
-      v-if="org_id == 10480 || org_id == 0"
28
+      v-if="org_id == 10480"
29
       style="float: right;margin-right:10px"
29
       style="float: right;margin-right:10px"
30
       size="small"
30
       size="small"
31
       @click="exportListDetaiTwo"
31
       @click="exportListDetaiTwo"
782
             this.tableData[i].manufacturer_name = this.getManufacturerName(this.tableData[i].manufacturer)
782
             this.tableData[i].manufacturer_name = this.getManufacturerName(this.tableData[i].manufacturer)
783
             this.tableData[i].dealer_name = this.getDealerName(this.tableData[i].dealer)
783
             this.tableData[i].dealer_name = this.getDealerName(this.tableData[i].dealer)
784
             this.tableData[i].in_retail_price = (this.tableData[i].in_price/this.tableData[i].min_number).toFixed(2)
784
             this.tableData[i].in_retail_price = (this.tableData[i].in_price/this.tableData[i].min_number).toFixed(2)
785
-       
785
+            this.tableData[i].in_retail_price = this.tableData[i].infor_price
786
             this.tableData[i].total = (this.tableData[i].count * this.tableData[i].price)
786
             this.tableData[i].total = (this.tableData[i].count * this.tableData[i].price)
787
             if(this.tableData[i].count_unit == this.tableData[i].min_unit && this.tableData[i].max_unit!=this.tableData[i].min_unit){
787
             if(this.tableData[i].count_unit == this.tableData[i].min_unit && this.tableData[i].max_unit!=this.tableData[i].min_unit){
788
                 this.tableData[i].total_price = (this.tableData[i].count * this.tableData[i].price)
788
                 this.tableData[i].total_price = (this.tableData[i].count * this.tableData[i].price)

+ 2 - 2
src/xt_pages/stock/drugs/drugStockOutOrder.vue View File

363
             <template slot-scope="scope">
363
             <template slot-scope="scope">
364
                <tr style="background: none" v-for="(item,index) in scope.row.child" :key="index">
364
                <tr style="background: none" v-for="(item,index) in scope.row.child" :key="index">
365
                   <td style="border-right: none; border-inline-end: none;text-align: center">
365
                   <td style="border-right: none; border-inline-end: none;text-align: center">
366
-                    <span v-if="org_id!=0 && org_id!=10480 && org_id!=10210">
366
+                    <span v-if="org_id!=0 && org_id!=10480 && org_id!=10210&&org_id!=10188 && org_id!=10217">
367
                       <span v-if="is_sys == 1 || is_sys == 5 || is_sys == 12">{{getTotalPrice(item.warehousing_detail_id,scope.row.max_unit,scope.row.min_unit,scope.row.min_number)}} </span>
367
                       <span v-if="is_sys == 1 || is_sys == 5 || is_sys == 12">{{getTotalPrice(item.warehousing_detail_id,scope.row.max_unit,scope.row.min_unit,scope.row.min_number)}} </span>
368
                     <span v-if="is_sys == 0">
368
                     <span v-if="is_sys == 0">
369
                       <span v-if="scope.row.child.length == 1">{{item.retail_price}}</span> 
369
                       <span v-if="scope.row.child.length == 1">{{item.retail_price}}</span> 
371
                     </span>
371
                     </span>
372
                     </span>
372
                     </span>
373
 
373
 
374
-                    <span v-if="org_id==0 || org_id ==10480 || org_id==10210">
374
+                    <span v-if="org_id==0 || org_id ==10480 || org_id==10210 || org_id ==10188 || org_id ==10217">
375
                       <!-- {{(item.count * item.price).toFixed(2)}} -->
375
                       <!-- {{(item.count * item.price).toFixed(2)}} -->
376
                      <span v-if="is_sys == 1 || is_sys == 5 || is_sys == 12">{{(getOutCountNightTen(item.warehousing_detail_id,scope.row.max_unit,scope.row.min_unit,scope.row.min_number,scope.row.drug_id)*item.price).toFixed(2)}}</span>  
376
                      <span v-if="is_sys == 1 || is_sys == 5 || is_sys == 12">{{(getOutCountNightTen(item.warehousing_detail_id,scope.row.max_unit,scope.row.min_unit,scope.row.min_number,scope.row.drug_id)*item.price).toFixed(2)}}</span>  
377
                      <span v-if="is_sys==0"> {{(getOutCountNightTenOne(item.batch_number,scope.row.max_unit,scope.row.min_unit,scope.row.min_number,scope.row.drug_id)*item.price).toFixed(2)}}</span>
377
                      <span v-if="is_sys==0"> {{(getOutCountNightTenOne(item.batch_number,scope.row.max_unit,scope.row.min_unit,scope.row.min_number,scope.row.drug_id)*item.price).toFixed(2)}}</span>