|
@@ -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){
|