Browse Source

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

yq1 7 months ago
parent
commit
2c5381059d

+ 1 - 1
src/xt_pages/dialysis/batch_print/batch_print_order_forty.vue View File

@@ -490,7 +490,7 @@
490 490
                                 <td width="20">mg</td>
491 491
                                 <td width="10">)</td>
492 492
                                 <td width="100">
493
-                                    <label-box :isChecked="record.prescription.anticoagulant==6?true:record.prescription.anticoagulant==7?true:false" showValue='低分子肝素'></label-box> 
493
+                                    <label-box :isChecked="record.prescription.anticoagulant==3?true:false" showValue='低分子肝素'></label-box> 
494 494
                                 </td>
495 495
                                 
496 496
                                 <td width="10">(</td>

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

@@ -459,7 +459,7 @@
459 459
         <el-row :gutter="20"> -->
460 460
 
461 461
         <el-col :span="8" v-if="isShow('实际置换量')">
462
-          <el-form-item v-if="this.template_id == 20 || this.template_id == 21 || this.org_id ==10702 || this.org_id ==10702" label="实际置换量(ml): " :prop="isName('实际置换量')" :rules="isCheckmust('实际置换量')">
462
+          <el-form-item v-if="this.template_id == 20 || this.template_id == 21" label="实际置换量(ml): " :prop="isName('实际置换量')" :rules="isCheckmust('实际置换量')">
463 463
             <el-input v-model="form.actual_displacement"></el-input>
464 464
           </el-form-item>
465 465
           <el-form-item v-else label="实际置换量(L): " :prop="isName('实际置换量')" :rules="isCheckmust('实际置换量')">

+ 1 - 1
src/xt_pages/dialysis/template/DialysisPrintOrderForty.vue View File

@@ -576,7 +576,7 @@
576 576
                   <td width="20">mg</td>
577 577
                   <td width="10">)</td>
578 578
                   <td width="100">
579
-                      <label-box :isChecked="prescription.anticoagulant==6?true:prescription.anticoagulant==7?true:false" showValue='低分子肝素'></label-box> 
579
+                      <label-box :isChecked="prescription.anticoagulant==3?true:false" showValue='低分子肝素'></label-box> 
580 580
                   </td>
581 581
                   
582 582
                   <td width="10">(</td>

+ 10 - 1
src/xt_pages/stock/drugs/drugStockInOrderAdd.vue View File

@@ -356,9 +356,15 @@
356 356
             </template>
357 357
           </el-table-column>
358 358
 
359
+          <el-table-column label="药品追溯码" width="150" align="center">
360
+            <template slot-scope="scope">
361
+              <el-input v-model="scope.row.drug_code"  placeholder="请输入药品追溯码"></el-input>
362
+            </template>
363
+          </el-table-column>
364
+
359 365
           <el-table-column label="备注" width="150" align="center">
360 366
             <template slot-scope="scope">
361
-              <el-input v-model="scope.row.remark"></el-input>
367
+              <el-input v-model="scope.row.remark"  placeholder="请输入备注"></el-input>
362 368
             </template>
363 369
           </el-table-column>
364 370
 
@@ -706,6 +712,7 @@ export default {
706 712
       tempObj["last_price"] = "";
707 713
       tempObj["count_unit"] = "";
708 714
       tempObj["min_number"] = "";
715
+      tempObj["drug_code"] = ""
709 716
       this.recordInfo.recordData.push(tempObj);
710 717
     },
711 718
     handleDelete: function (index, row) {
@@ -919,6 +926,7 @@ export default {
919 926
                 list[i].last_price = list[i].price
920 927
                 list[i].warehousing_count = list[i].warehousing_count.toString()
921 928
                 list[i].unitList = []
929
+                list[i].drug_code = list[i].drug_code
922 930
                 var obj = {id:1,name:""}
923 931
                 obj.name = list[i].drug.max_unit
924 932
                 var objOne = {id:2,name:""}
@@ -1178,6 +1186,7 @@ export default {
1178 1186
     tempObj["number"] = "";
1179 1187
     tempObj["count_unit"] = "";
1180 1188
     tempObj["min_number"] = "";
1189
+    tempObj["drug_code"] = ""
1181 1190
     this.recordInfo.recordData.push(tempObj);
1182 1191
 
1183 1192
     this.GetConfigInfo();

+ 14 - 1
src/xt_pages/stock/drugs/drugStockInOrderEdit.vue View File

@@ -339,12 +339,20 @@
339 339
             </template>
340 340
           </el-table-column>
341 341
 
342
+          <el-table-column label="药品追溯码" width="150" align="center">
343
+            <template slot-scope="scope">
344
+              <el-input v-model="scope.row.drug_code"  placeholder="请输入药品追溯码" :disabled="disabled"></el-input>
345
+            </template>
346
+          </el-table-column>
347
+
342 348
           <el-table-column label="备注" width="150" align="center">
343 349
             <template slot-scope="scope">
344
-              <el-input v-model="scope.row.remark" :disabled="disabled"></el-input>
350
+              <el-input v-model="scope.row.remark"  placeholder="请输入备注" :disabled="disabled"></el-input>
345 351
             </template>
346 352
           </el-table-column>
347 353
 
354
+         
355
+
348 356
           <el-table-column
349 357
             label="操作"
350 358
             fixed="right"
@@ -618,6 +626,7 @@ export default {
618 626
       tempObj['retail_price'] = ""
619 627
       tempObj['drug_name'] = ""
620 628
       tempObj['manufacturer'] = ""
629
+      tempObj["drug_code"] = ""
621 630
       this.recordInfo.recordData.push(tempObj);
622 631
     },
623 632
     handleDelete: function(index, row) {
@@ -764,6 +773,8 @@ export default {
764 773
                 }
765 774
                 list[i].last_price = list[i].price
766 775
                 list[i].warehousing_count = list[i].warehousing_count.toString()
776
+
777
+                list[i].drug_code = list[i].drug_code
767 778
                 list[i].unitList = []
768 779
                 var obj = {id:1,name:""}
769 780
                 obj.name = list[i].drug.max_unit
@@ -829,6 +840,8 @@ export default {
829 840
 
830 841
             response.data.data.info[i].drug_type = response.data.data.info[i].drug.drug_type
831 842
 
843
+            response.data.data.info[i].drug_code = response.data.data.info[i].drug_code
844
+
832 845
            if(response.data.data.info[i].manufacturer == 0){
833 846
                response.data.data.info[i].manufacturer = ""
834 847
             }

+ 2 - 2
src/xt_pages/stock/selfPreparedMedicine/warehouseInfo.vue View File

@@ -954,9 +954,9 @@ export default {
954 954
       },
955 955
       GetDrugTypeName(drug_type){
956 956
         var name = ""
957
-        console.log("drugTypeList---------------",this.drugTypeList)
957
+        // console.log("drugTypeList---------------",this.drugTypeList)
958 958
         for(let i=0;i<this.drugTypeList.length;i++){
959
-          if(drug_type == this.drugTypeList[i].value){
959
+          if(drug_type == this.drugTypeList[i].id){
960 960
              name = this.drugTypeList[i].name
961 961
           }
962 962
         }