Browse Source

Merge remote-tracking branch 'origin/20230223_pc_vue_new_branch' into 20230223_pc_vue_new_branch

yq1 1 year ago
parent
commit
4fded2715a

+ 3 - 3
src/xt_pages/dialysis/batch_print/batch_print_order_thirtyTwo.vue View File

@@ -687,11 +687,11 @@
687 687
                          {{ monitor.symptom }}  {{ monitor.dispose }}  {{ monitor.result }}
688 688
                     </td>
689 689
                     <td>
690
-                        <span v-if="setAdminUserES(monitor.monitoring_nurse) == ''">
691
-                        {{ getAdminUser(monitor.monitoring_nurse) }}
690
+                        <span v-if="setAdminUserES(monitor,'monitoring_nurse') == ''">
691
+                        {{ getAdminUser(monitor,'monitoring_nurse') }}
692 692
                         </span>
693 693
                         <span v-else style="display:flex;align-items:center;justify-content:space-around;height:36px;">
694
-                        <img style="height:30px;" :src="setAdminUserES(monitor.monitoring_nurse)" alt srcset />
694
+                        <img style="height:30px;" :src="setAdminUserES(monitor,'monitoring_nurse')" alt srcset />
695 695
                         </span>
696 696
                     </td>
697 697
                     </tr>

+ 3 - 3
src/xt_pages/hospitalStation/components/prescriptionTable.vue View File

@@ -551,9 +551,9 @@
551 551
           { name: '透析1h一次', count: 1 },
552 552
           { name: '透析2h一次', count: 1 },
553 553
           { name: '透析3h一次', count: 1 },
554
-          { name: '每日一次', count: 1 },
555
-          { name: '每日两次', count: 2 },
556
-          { name: '每日三次', count: 3 },
554
+          { name: '每日一次', count: 12 },
555
+          { name: '每日两次', count: 6 },
556
+          { name: '每日三次', count: 4 },
557 557
           { name: '每晚一次', count: 1 },
558 558
           { name: '每晚', count: 1 },
559 559
           { name: '上机前', count: 1 },

+ 3 - 1
src/xt_pages/management/components/EditMachineForm.vue View File

@@ -212,7 +212,9 @@ export default {
212 212
         { id: 6, name: "0.2%过氧化乙酸" },
213 213
         { id: 7, name: "10%冰醋酸" },
214 214
         { id: 8, name: "50%冰醋酸" },
215
-        { id: 9, name: "5%次氯酸钠" }
215
+        { id: 9, name: "5%次氯酸钠" },
216
+        { id: 10,name:"25%的柠檬酸+5%次氯酸钠"},
217
+        { id: 11, name: "20%柠檬酸 + 5%次氯酸钠"},
216 218
       ]
217 219
     };
218 220
   },

+ 1 - 0
src/xt_pages/management/components/PlanForm.vue View File

@@ -244,6 +244,7 @@ export default {
244 244
         { id: 8, name: "50%冰醋酸" },
245 245
         { id: 9, name: "5%次氯酸钠" },
246 246
         { id: 10,name:"25%的柠檬酸+5%次氯酸钠"},
247
+        { id: 11, name: "20%柠檬酸 + 5%次氯酸钠" },
247 248
       ],
248 249
       // 床单位更换
249 250
        bedType: [

+ 1 - 0
src/xt_pages/management/home.vue View File

@@ -3025,6 +3025,7 @@ export default {
3025 3025
           { id: 8, name: '50%冰醋酸' },
3026 3026
           { id: 9, name: '5%次氯酸钠' },
3027 3027
           { id: 10,name:"25%的柠檬酸+5%次氯酸钠"},
3028
+          { id: 11, name: "20%柠檬酸 + 5%次氯酸钠"},
3028 3029
         ],
3029 3030
 
3030 3031
         userform: {

+ 3 - 3
src/xt_pages/outpatientDoctorStation/components/prescriptionTemplateTable.vue View File

@@ -664,9 +664,9 @@
664 664
           { name: '透析1h一次', count: 1 },
665 665
           { name: '透析2h一次', count: 1 },
666 666
           { name: '透析3h一次', count: 1 },
667
-          { name: '每日一次', count: 1 },
668
-          { name: '每日两次', count: 2 },
669
-          { name: '每日三次', count: 3 },
667
+          { name: '每日一次', count: 12 },
668
+          { name: '每日两次', count: 6 },
669
+          { name: '每日三次', count: 4 },
670 670
           { name: '每晚一次', count: 1 },
671 671
           { name: '每晚', count: 1 },
672 672
           { name: '上机前', count: 1 },

+ 6 - 5
src/xt_pages/stock/drugs/drugDamaged.vue View File

@@ -53,11 +53,7 @@
53 53
     </div>
54 54
     <el-table :data="tableList" border :header-cell-style="{ backgroundColor: 'rgb(245, 247, 250)' }" >
55 55
         <!-- <el-table-column type="selection" width="55" align="center"> </el-table-column> -->
56
-        <el-table-column  prop="date" label="报损日期" align="center">
57
-            <template slot-scope="scope">
58
-              {{getTime(scope.row.start_time)}}
59
-            </template>
60
-        </el-table-column>
56
+      
61 57
         <el-table-column prop="name" label="药品名称" align="center">
62 58
             <template slot-scope="scope">
63 59
               {{scope.row.drug_name}}
@@ -151,6 +147,11 @@
151 147
                   {{scope.row.warehousing_order}}
152 148
                 </template>
153 149
               </el-table-column>
150
+              <el-table-column  prop="date" label="报损日期" align="center">
151
+                <template slot-scope="scope">
152
+                  {{getTime(scope.row.start_time)}}
153
+                </template>
154
+              </el-table-column>
154 155
               <el-table-column prop="address" label="损耗数量" align="center">
155 156
                 <template slot-scope="scope">
156 157
                   <span v-if="scope.row.count>0">{{scope.row.count}}{{scope.row.min_unit}}</span>

+ 1 - 10
src/xt_pages/stock/query/purchaseNewStockQuery.vue View File

@@ -268,24 +268,15 @@ export default {
268 268
                list[i].stockIn = list[i].GoodStartFlowInfo.over_count
269 269
                list[i].stock_in_price = "/"
270 270
                list[i].stockMoney = "/"
271
-              // list[i].stockIn = this.getWarehouseInfoStart(list[i].StartFlowInfo,list[i].StartOutFlowInfo,list[i].WareStartStockInventoryProfit,list[i].WareStartStockInventoryLosses,list[i].StartCancelFlowInfo) //期初结余
272
-              // list[i].stock_in_price = this.getWarehouseInfoStartPrice(list[i].StartFlowInfo,list[i].StartOutFlowInfo,list[i].WareStartStockInventoryProfit,list[i].WareStartStockInventoryLosses,list[i].StartCancelFlowInfo)
273
-              // list[i].stockMoney = this.getWarehouseInfoStartMoney(list[i].StartFlowInfo,list[i].StartOutFlowInfo,list[i].WareStartStockInventoryProfit,list[i].WareStartStockInventoryLosses,list[i].StartCancelFlowInfo)
271
+              
274 272
               
275 273
               list[i].stockAdd = this.getWarehouseInfoOne(list[i].StartFlowWarehouseInfo,list[i].WareStartEndStockInventoryProfit)//期间增加
276
-              // list[i].addStockMoney = this.getAddStockMony(list[i].StartFlowWarehouseInfo,list[i].WareStartEndStockInventoryProfit)
277
-              // list[i].saleStockMoney = this.getSaleStockMony(list[i].StartFlowWarehouseInfo,list[i].WareStartEndStockInventoryProfit)
278 274
               list[i].addStockMoney = "/"
279 275
               list[i].saleStockMoney = "/"
280 276
 
281 277
               list[i].outStock = this.getWarehosueOutInfo(list[i].WarehouseOutInfoStart,list[i].WareStartEndStockInventoryLosses,list[i].StartEndCancelFLowInfo)//本期减少
282
-              // list[i].stockOutprice = this.stockOutprice(list[i].WarehouseOutInfoStart,list[i].WareStartEndStockInventoryLosses,list[i].StartEndCancelFLowInfo)
283
-              // list[i].saleOutMoney = this.getSaleStockMony(list[i].WarehouseOutInfoStart,list[i].WareStartEndStockInventoryLosses,list[i].StartEndCancelFLowInfo)
284 278
               list[i].stockOutprice = "/"
285 279
               list[i].saleOutMoney = "/"
286
-              // list[i].overStock= this.getEndWarehouseInfo(list[i].EndFlowInfo,list[i].EndFlowOutInfo,list[i].WareEndStockInventoryProfit,list[i].WareEndStockInventoryLosses,list[i].EndCancelFLowInfo)
287
-              // list[i].overPrice= this.getEndOverPrice(list[i].EndFlowInfo,list[i].EndFlowOutInfo,list[i].WareEndStockInventoryProfit,list[i].WareEndStockInventoryLosses,list[i].EndCancelFLowInfo)
288
-              // list[i].overMoney = this.getEndSalePrice(list[i].EndFlowInfo,list[i].EndFlowOutInfo,list[i].WareEndStockInventoryProfit,list[i].WareEndStockInventoryLosses,list[i].EndCancelFLowInfo)
289 280
               if(this.org_id == 10265 || this.org_id == 0){
290 281
                 list[i].overStock = list[i].GoodEndFlowInfo.over_count
291 282
               }else{

+ 7 - 2
src/xt_pages/stock/stockDamaged.vue View File

@@ -51,11 +51,11 @@
51 51
   
52 52
     <el-table :data="tableList" border :header-cell-style="{ backgroundColor: 'rgb(245, 247, 250)' }">
53 53
         <!-- <el-table-column type="selection" width="55" align="center"> </el-table-column> -->
54
-        <el-table-column  prop="date" label="报损日期" align="center">
54
+        <!-- <el-table-column  prop="date" label="报损日期" align="center">
55 55
             <template slot-scope="scope">
56 56
               {{getTime(scope.row.ctime)}}
57 57
             </template>
58
-        </el-table-column>
58
+        </el-table-column> -->
59 59
         <el-table-column prop="date" label="耗材名称"  align="center">
60 60
           <template  slot-scope="scope">
61 61
             {{scope.row.good_name}}
@@ -351,6 +351,11 @@
351 351
                    {{scope.row.warehousing_order}}
352 352
                 </template>
353 353
               </el-table-column>
354
+              <el-table-column  prop="date" label="报损日期" align="center">
355
+                <template slot-scope="scope">
356
+                  {{getTime(scope.row.ctime)}}
357
+                </template>
358
+              </el-table-column> 
354 359
               <el-table-column prop="address" label="损耗数量" align="center">
355 360
                 <template slot-scope="scope">
356 361
                   {{scope.row.count}}