|
@@ -588,8 +588,9 @@ export default {
|
588
|
588
|
},
|
589
|
589
|
|
590
|
590
|
exportList(){
|
591
|
|
-
|
592
|
591
|
|
|
592
|
+
|
|
593
|
+
|
593
|
594
|
for(let i=0;i<this.tablePrint.length;i++){
|
594
|
595
|
this.tablePrint[i].index = i+1
|
595
|
596
|
this.tablePrint[i].ctime = this.getTime(this.tablePrint[i].ctime)
|
|
@@ -599,24 +600,26 @@ export default {
|
599
|
600
|
for(let i=0;i<this.tablePrint.length;i++){
|
600
|
601
|
if(this.org_id == 9919 || this.org_id == 9671){
|
601
|
602
|
this.tablePrint[i].min_price = this.tablePrint[i].price
|
602
|
|
- this.tablePrint[i].count = parseInt((this.getCountSix(this.tablePrint[i].drug_id,this.tablePrint[i].child))/this.tablePrint[i].min_number)
|
|
603
|
+ this.tablePrint[i].count_one = parseInt((this.getCountSix(this.tablePrint[i].drug_id,this.tablePrint[i].child))/this.tablePrint[i].min_number)
|
603
|
604
|
this.tablePrint[i].total_price = ((parseInt((this.getCountSix(this.tablePrint[i].drug_id,this.tablePrint[i].child))/this.tablePrint[i].min_number))*this.tablePrint[i].price).toFixed(2)
|
604
|
605
|
this.tablePrint[i].unit = this.tablePrint[i].dose + this.tablePrint[i].dose_unit + "*" + this.tablePrint[i].min_number +this.tablePrint[i].min_unit +"/"+this.tablePrint[i].max_unit
|
605
|
606
|
this.tablePrint[i].total = this.getCountSenvenOne(this.tablePrint.drug_id,this.tablePrint[i].child,this.tablePrint[i].price)/this.tablePrint[i].min_number
|
606
|
607
|
|
607
|
608
|
}else{
|
608
|
|
- this.tablePrint[i].count = this.getCount(this.tablePrint[i].child,this.tablePrint[i].max_unit,this.tablePrint[i].min_unit,this.tablePrint[i].min_number)
|
|
609
|
+ this.tablePrint[i].count_one = this.getCount(this.tablePrint[i].child,this.tablePrint[i].max_unit,this.tablePrint[i].min_unit,this.tablePrint[i].min_number)
|
609
|
610
|
this.tablePrint[i].total_price = this.getTotalPrice(this.tablePrint[i].child,this.tablePrint[i].max_unit,this.tablePrint[i].min_number,this.tablePrint[i].min_price)
|
610
|
611
|
this.tablePrint[i].unit = this.tablePrint[i].dose + this.tablePrint[i].dose_unit + "*" + this.tablePrint[i].min_number +this.tablePrint[i].min_unit +"/"+this.tablePrint[i].max_unit
|
611
|
612
|
this.tablePrint[i].total = this.getTotalPriceOne(this.tablePrint[i].child,this.tablePrint[i].max_unit,this.tablePrint[i].min_number,this.tablePrint[i].min_price)
|
612
|
613
|
}
|
613
|
614
|
}
|
614
|
|
-
|
615
|
|
-
|
|
615
|
+ console.log("wowowoowowowowo",this.tablePrint)
|
|
616
|
+
|
|
617
|
+
|
|
618
|
+
|
616
|
619
|
import('@/vendor/Export2Excel').then(excel => {
|
617
|
620
|
const tHeader = ['序号','药品名称', '规格型号','生产厂商','进销商', '单位','数量','单价','总价','出库时间','备注']
|
618
|
621
|
if(this.org_id == 9919){
|
619
|
|
- const filterVal = ['index','drug_name', 'unit', 'manufacturer_name','dealer_name','max_unit','count','min_price','total_price','ctime','remark']
|
|
622
|
+ const filterVal = ['index','drug_name', 'unit', 'manufacturer_name','dealer_name','max_unit','count_one','min_price','total_price','ctime','remark']
|
620
|
623
|
|
621
|
624
|
let obj = {'index':'合计','total_price':0.00}
|
622
|
625
|
for(let i=0;i<this.tablePrint.length;i++){
|
|
@@ -819,6 +822,7 @@ export default {
|
819
|
822
|
if(response.data.state == 1){
|
820
|
823
|
var list = response.data.data.list
|
821
|
824
|
console.log("很粗扣扣我噢噢",list)
|
|
825
|
+
|
822
|
826
|
this.dealerList = response.data.data.dealerList
|
823
|
827
|
this.manufacturerList = response.data.data.manufacturerList
|
824
|
828
|
let objInfo = {}
|
|
@@ -882,6 +886,8 @@ export default {
|
882
|
886
|
}
|
883
|
887
|
}
|
884
|
888
|
}
|
|
889
|
+
|
|
890
|
+ console.log("newArrwowowowowoowowowowowowow",newArr)
|
885
|
891
|
this.tablePrint = newArr
|
886
|
892
|
|
887
|
893
|
}
|
|
@@ -893,11 +899,14 @@ export default {
|
893
|
899
|
var min_str = ""
|
894
|
900
|
for(let i=0;i<arr.length;i++){
|
895
|
901
|
if(arr[i].count_unit == max_unit){
|
896
|
|
- arr[i].count = arr[i].count * min_number
|
|
902
|
+ arr[i].count_one = 0
|
|
903
|
+ arr[i].count_one = arr[i].count * min_number
|
|
904
|
+ }else{
|
|
905
|
+ arr[i].count_one = arr[i].count
|
897
|
906
|
}
|
898
|
907
|
}
|
899
|
908
|
for(let i=0;i<arr.length;i++){
|
900
|
|
- total+= arr[i].count
|
|
909
|
+ total+= arr[i].count_one
|
901
|
910
|
}
|
902
|
911
|
|
903
|
912
|
if(total<min_number){
|
|
@@ -915,6 +924,8 @@ export default {
|
915
|
924
|
return str + min_str
|
916
|
925
|
},
|
917
|
926
|
getTotalPrice(arr,max_unit,min_number,min_price){
|
|
927
|
+ console.log("arrwoowowow",arr)
|
|
928
|
+
|
918
|
929
|
var total = 0
|
919
|
930
|
for(let i=0;i<arr.length;i++){
|
920
|
931
|
if(arr[i].count_unit == max_unit){
|