Browse Source

提交代码

陈少旭 1 year ago
parent
commit
f5453661a4

+ 92 - 0
src/xt_pages/outpatientDoctorStation/components/deskPrescription.vue View File

@@ -728,6 +728,98 @@ export default {
728 728
     }
729 729
   },
730 730
   methods: {
731
+    getZuobiaoGoodStock(){
732
+      var that = this
733
+      axios.get("http://127.0.0.1:9532" + '/nmg/coordinate/querystockgood', {
734
+      })
735
+        .then(function(response) {
736
+          if (response.data.state == 0) {
737
+            that.$message.error(response.data.msg)
738
+            that.loadingtwo = false
739
+            return false
740
+          } else {
741
+            if (response.data.data.failed_code == -10) {
742
+              that.$confirm(response.data.data.msg, '医保错误信息', {
743
+                confirmButtonText: '确 定',
744
+                type: 'warning'
745
+              }).then(() => {
746
+
747
+              }).catch(() => {
748
+              })
749
+
750
+            } else {
751
+              that.zuobiao_project  = response.data.data.project
752
+              for (let i = 0; i < that.zuobiao_project.length; i++) {
753
+                for (let b = 0; b < that.tabProject.length; b++) {
754
+                  if (that.zuobiao_project[i].bbx01 == that.tabProject[b].bbx01 &&  that.zuobiao_project[i].bby06 == that.tabProject[b].single_dose){
755
+                    console.log( that.zuobiao_project[i].lsqty)
756
+                    console.log( that.tabProject[b].zuobiao_stock_num)
757
+                    that.tabProject[b].zuobiao_stock_num = that.zuobiao_project[i].lsqty
758
+                    that.tabProject[b].price = that.zuobiao_project[i].price
759
+                  }
760
+                }
761
+              }
762
+
763
+
764
+            }
765
+          }
766
+        })
767
+        .catch(function(error) {
768
+        })
769
+
770
+
771
+
772
+
773
+
774
+    },
775
+    getZuobiaoDrugStock(){
776
+      var that = this
777
+      axios.get('http://127.0.0.1:9532' + '/nmg/coordinate/querystockdrug', {})
778
+        .then(function(response) {
779
+          if (response.data.state == 0) {
780
+            that.$message.error(response.data.msg)
781
+            that.loadingtwo = false
782
+            return false
783
+          } else {
784
+            if (response.data.data.failed_code == -10) {
785
+              that.$confirm(response.data.data.msg, '医保错误信息', {
786
+                confirmButtonText: '确 定',
787
+                type: 'warning'
788
+              }).then(() => {
789
+
790
+              }).catch(() => {
791
+              })
792
+
793
+            } else {
794
+              that.zuobiao_drug = response.data.data.drug
795
+              console.log('坐标~~坐标')
796
+              console.log(that.zuobiao_drug)
797
+              console.log(response.data.data.drug)
798
+              console.log('坐标~~坐标')
799
+
800
+              // that.zuobiao_project  = response.data.data.project
801
+              //跟坐标数据进行匹配,如果bbx01相等的话则,替换库存数量
802
+              for (let i = 0; i < that.zuobiao_drug.length; i++) {
803
+                for (let b = 0; b < that.drugs.length; b++) {
804
+                  if (that.zuobiao_drug[i].bby01 == that.drugs[b].bby01) {
805
+                    that.drugs[b]['zuobiao_stock_num'] = that.zuobiao_drug[i].sysl
806
+                    that.drugs[b].min_price = that.zuobiao_drug[i].lsj
807
+
808
+                  }
809
+
810
+                }
811
+              }
812
+              console.log('坐标~~坐标')
813
+              console.log(that.drugs)
814
+              console.log('坐标~~坐标')
815
+
816
+            }
817
+          }
818
+        })
819
+        .catch(function(error) {
820
+        })
821
+
822
+    },
731 823
     getzuobiao(){
732 824
 
733 825
       if(this.org_id == 10206){

+ 6 - 1
src/xt_pages/outpatientDoctorStation/doctorDesk.vue View File

@@ -115,6 +115,9 @@
115 115
 
116 116
           </el-tabs>
117 117
           <div class="mainCell fixedCell" style="float:right" v-if="titleType == '电子处方'">
118
+            <el-button size="small" ref="button_three" @click="open_four()" type="primary">刷新库存</el-button>
119
+
120
+
118 121
             <el-button size="small" ref="button_one" @click="open(1)" type="primary"
119 122
                        v-loading="saveLoading">保存
120 123
             </el-button>
@@ -655,8 +658,10 @@ export default {
655 658
     openPrint() {
656 659
       // this.centerDialogVisible = true
657 660
       this.getPrescriptionList(this.patientInfo.id, this.record_date)
661
+    },open_four(){
662
+      this.$refs.prescriptions.getZuobiaoGoodStock()
663
+      this.$refs.prescriptions.getZuobiaoDrugStock()
658 664
     },
659
-
660 665
     // 电子病历打印
661 666
     opentwo(index) {
662 667
       if (index == 1) {