sale-client 4.0.38-preview → 4.0.40-preview
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/dev-server.js +1 -1
- package/package.json +1 -1
- package/src/components/revenue/base/rightview/RecordCancel.vue +15 -15
- package/src/filiale/fugou/FileUserFiles.vue +8 -0
- package/src/main.js +1 -1
- package/.gradle/5.2.1/fileChanges/last-build.bin +0 -0
- package/.gradle/5.2.1/fileHashes/fileHashes.lock +0 -0
- package/.gradle/5.2.1/gc.properties +0 -0
- package/.gradle/8.5/fileChanges/last-build.bin +0 -0
- package/.gradle/8.5/gc.properties +0 -0
package/build/dev-server.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
var path = require('path')
|
|
2
2
|
var checkVersion = require('./versionCheck.js')
|
|
3
3
|
checkVersion()
|
|
4
|
-
const [ serverRul, localUrl, v4Url ] = ['http://192.168.50.4:8400/', 'http://
|
|
4
|
+
const [ serverRul, localUrl, v4Url ] = ['http://192.168.50.4:8400/', 'http://localhost:8080', 'http://localhost:9026/']
|
|
5
5
|
var merge = require('webpack-merge')
|
|
6
6
|
var baseConfig = require('./webpack.dev.conf')
|
|
7
7
|
var devConfig = {
|
package/package.json
CHANGED
|
@@ -78,21 +78,21 @@
|
|
|
78
78
|
}
|
|
79
79
|
|
|
80
80
|
// 看看要不要给发票冲掉
|
|
81
|
-
const getEticket = await self.$resetpost('api/af-revenue/
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
}, {resolveMsg: null, rejectMsg: '获取发票信息失败!!'})
|
|
87
|
-
console.log('获取发票信息', getEticket)
|
|
88
|
-
|
|
89
|
-
if (getEticket.length > 0) {
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
}
|
|
81
|
+
// const getEticket = await self.$resetpost('api/af-revenue/sql/singleTable', {
|
|
82
|
+
// data: {
|
|
83
|
+
// tablename: 't_ticketrelated',
|
|
84
|
+
// condition: `f_sell_id = '${res.data.record}' and f_business_type = '${res.data.type}' and f_related_state = '有效'`
|
|
85
|
+
// }
|
|
86
|
+
// }, {resolveMsg: null, rejectMsg: '获取发票信息失败!!'})
|
|
87
|
+
// console.log('获取发票信息', getEticket)
|
|
88
|
+
//
|
|
89
|
+
// if (getEticket.length > 0) {
|
|
90
|
+
// const params = {
|
|
91
|
+
// eticket_id: getEticket[0].f_eticket_id,
|
|
92
|
+
// f_invoice_type: 1
|
|
93
|
+
// }
|
|
94
|
+
// await self.$resetpost('invoice/rs/logic/getInvoice', {data: params}, {resolveMsg: null, rejectMsg: '发票冲红失败!!!'})
|
|
95
|
+
// }
|
|
96
96
|
console.log('准备刷新了!。。', res, self.model)
|
|
97
97
|
self.$dispatch('cancel-success')
|
|
98
98
|
|
|
@@ -449,6 +449,12 @@
|
|
|
449
449
|
<th>
|
|
450
450
|
<nobr>发卡状态</nobr>
|
|
451
451
|
</th>
|
|
452
|
+
<th>
|
|
453
|
+
<nobr>调压箱编号</nobr>
|
|
454
|
+
</th>
|
|
455
|
+
<th>
|
|
456
|
+
<nobr>调压箱名称</nobr>
|
|
457
|
+
</th>
|
|
452
458
|
<th v-if="!$parent.$parent.$parent.createFile">
|
|
453
459
|
<nobr>用气点名称</nobr>
|
|
454
460
|
</th>
|
|
@@ -496,6 +502,8 @@
|
|
|
496
502
|
<td style="text-align: center;">{{row.f_network_valve}}</td>
|
|
497
503
|
<td style="text-align: center;">{{row.f_valvestate}}</td>
|
|
498
504
|
<td style="text-align: center;">{{row.f_whether_hairpin}}</td>
|
|
505
|
+
<td style="text-align: center;">{{row.f_adjustable_id}}</td>
|
|
506
|
+
<td style="text-align: center;">{{row.f_adjustable_name}}</td>
|
|
499
507
|
<td style="text-align: center;" v-if="!$parent.$parent.$parent.createFile">{{row.f_userfiles_address}}</td>
|
|
500
508
|
<td style="text-align: center;" v-if="!$parent.$parent.$parent.createFile">{{row.f_user_state}}</td>
|
|
501
509
|
<td style="text-align: center;" >{{row.f_comments}}</td>
|
package/src/main.js
CHANGED
|
@@ -3,7 +3,7 @@ import all from 'vue-client/src/all'
|
|
|
3
3
|
import App from './App'
|
|
4
4
|
import system from 'system-clients/src/system'
|
|
5
5
|
import sale from './sale'
|
|
6
|
-
import FilialeSale from './filiale/
|
|
6
|
+
import FilialeSale from './filiale/beifangshiye/sale'
|
|
7
7
|
import address from 'address-client/src/address'
|
|
8
8
|
import ldap from 'ldap-clients/src/ldap'
|
|
9
9
|
import VueClipboard from 'vue-clipboard2'
|
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
Binary file
|
|
File without changes
|