|
@@ -168,7 +168,7 @@
|
168
|
168
|
</template>
|
169
|
169
|
</el-table-column>
|
170
|
170
|
|
171
|
|
- <el-table-column align="center" prop="name" label="操作" v-if="$store.getters.xt_user.org_id != 10318">
|
|
171
|
+ <el-table-column align="center" prop="name" label="操作" v-if="$store.getters.xt_user.org_id != 10318 && $store.getters.xt_user.org_id != 0">
|
172
|
172
|
<template slot-scope="scope">
|
173
|
173
|
<el-button v-if="scope.row.result.id == 0" size="mini" type="primary"
|
174
|
174
|
@click="blue(scope.row)">
|
|
@@ -212,10 +212,10 @@
|
212
|
212
|
@click="yulan(scope.row)">
|
213
|
213
|
下载
|
214
|
214
|
</el-button>
|
215
|
|
- <el-button size="mini" type="primary" v-if="scope.row.result.id > 0 && scope.row.result.fapiao_status > 0"
|
216
|
|
- @click="BWchaxun(scope.row)">
|
217
|
|
- 查询并同步发票号码
|
218
|
|
- </el-button>
|
|
215
|
+<!-- <el-button size="mini" type="primary" v-if="scope.row.result.id > 0 && scope.row.result.fapiao_status > 0"-->
|
|
216
|
+<!-- @click="BWchaxun(scope.row)">-->
|
|
217
|
+<!-- 查询并同步发票号码-->
|
|
218
|
+<!-- </el-button>-->
|
219
|
219
|
</template>
|
220
|
220
|
</el-table-column>
|
221
|
221
|
|
|
@@ -441,7 +441,7 @@ export default {
|
441
|
441
|
"admin_user_id":this.$store.getters.xt_user.user.id,
|
442
|
442
|
}
|
443
|
443
|
var that = this;
|
444
|
|
- axios.get('http://127.0.0.1:9532/api/fapiao/query',{params:params}).then(function(response) {
|
|
444
|
+ axios.get('http://127.0.0.1:9532/api/bwfapiao/query',{params:params}).then(function(response) {
|
445
|
445
|
if (response.data.state == 0) {
|
446
|
446
|
that.$message.error(response.data.data.msg);
|
447
|
447
|
return false
|
|
@@ -867,8 +867,38 @@ export default {
|
867
|
867
|
|
868
|
868
|
|
869
|
869
|
}, BWchaxun(row){
|
|
870
|
+ let params = {
|
|
871
|
+ "id": row.result.id,
|
|
872
|
+ "admin_user_id":this.$store.getters.xt_user.user.id,
|
|
873
|
+ }
|
|
874
|
+ var that = this;
|
|
875
|
+ axios.get('http://127.0.0.1:9531/api/bwfapiao/query',{params:params}).then(function(response) {
|
|
876
|
+ if (response.data.state == 0) {
|
|
877
|
+ that.$message.error(response.data.data.msg);
|
|
878
|
+ return false
|
|
879
|
+ } else {
|
|
880
|
+ if(response.data.data.failed_code == -10){
|
|
881
|
+ that.settlementVisible = false
|
|
882
|
+ that.$confirm(response.data.data.msg, '错误信息', {
|
|
883
|
+ confirmButtonText: '确 定',
|
|
884
|
+ type: 'warning'
|
|
885
|
+ }).then(() => {
|
870
|
886
|
|
|
887
|
+ }).catch(() => {
|
|
888
|
+ })
|
|
889
|
+ }else{
|
|
890
|
+ that.getHisOrderList()
|
|
891
|
+ that.$confirm(response.data.data.msg, '信息', {
|
|
892
|
+ confirmButtonText: '确 定',
|
|
893
|
+ type: 'warning'
|
|
894
|
+ }).then(() => {
|
871
|
895
|
|
|
896
|
+ }).catch(() => {
|
|
897
|
+ })
|
|
898
|
+ }
|
|
899
|
+ }
|
|
900
|
+ }).catch(function(error) {
|
|
901
|
+ })
|
872
|
902
|
|
873
|
903
|
|
874
|
904
|
},yulan(row){
|