manage-client-xy 3.2.27 → 3.2.28
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
CHANGED
|
@@ -11,16 +11,14 @@ var compiler = webpack(config)
|
|
|
11
11
|
// Define HTTP proxies to your custom API backend
|
|
12
12
|
// https://github.com/chimurai/http-proxy-middleware
|
|
13
13
|
// var bendi = 'http://127.0.0.1:8089/manage', fuwu = 'http://36.103.224.217:6300/'
|
|
14
|
-
var bendi = 'http://
|
|
14
|
+
var bendi = 'http://127.0.0.1:9014/'
|
|
15
15
|
, fuwu = 'http://172.16.16.162:8300/'
|
|
16
16
|
// ,fuwu = 'http://172.16.16.162:8300/'
|
|
17
17
|
var proxyTable = {
|
|
18
18
|
'/resource': {
|
|
19
19
|
target: 'http://192.168.13.135:31577/'
|
|
20
20
|
},
|
|
21
|
-
|
|
22
|
-
target: 'http://222.16.16.161:8405/'
|
|
23
|
-
},
|
|
21
|
+
|
|
24
22
|
'/rs/logic/exportfile': {
|
|
25
23
|
target: bendi
|
|
26
24
|
},
|
package/package.json
CHANGED
|
@@ -1,241 +1,241 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div class="basic-main">
|
|
3
|
-
<criteria-paged :model="model" :pager='false' v-ref:paged>
|
|
4
|
-
<criteria partial='criteria' @condition-changed='$parent.selfSearch' v-ref:criteria>
|
|
5
|
-
<p class="bg-info text-center" style="padding: 8px;">收费结账报表</p>
|
|
6
|
-
<div class="form-group" v-if="!$parent.$parent.data.f_files_path"></div>
|
|
7
|
-
<div novalidate class="form-horizontal select-overspread container-fluid auto" partial >
|
|
8
|
-
<div class="row">
|
|
9
|
-
<div class="col-sm-4" >
|
|
10
|
-
<label class="font_normal_body" for="startDate">开始日期:</label>
|
|
11
|
-
<datepicker id="startDate" placeholder="开始日期" style="width: 60%"
|
|
12
|
-
v-model="model.startDate"
|
|
13
|
-
:value.sync="model.startDate"
|
|
14
|
-
:disabled-days-of-Week="[]"
|
|
15
|
-
:format="'yyyy-MM-dd HH:mm:ss'"
|
|
16
|
-
:show-reset-button="reset">
|
|
17
|
-
</datepicker>
|
|
18
|
-
</div>
|
|
19
|
-
<div class="col-sm-4" >
|
|
20
|
-
<label class="font_normal_body" for="endDate">结束日期:</label>
|
|
21
|
-
<datepicker id="endDate" placeholder="结束日期" style="width: 60%"
|
|
22
|
-
v-model="model.endDate"
|
|
23
|
-
:value.sync="model.endDate"
|
|
24
|
-
:disabled-days-of-Week="[]"
|
|
25
|
-
:format="'yyyy-MM-dd HH:mm:ss'"
|
|
26
|
-
:show-reset-button="reset">
|
|
27
|
-
</datepicker>
|
|
28
|
-
</div>
|
|
29
|
-
<div class="col-sm-4">
|
|
30
|
-
<label class="font_normal_body"> 公司 </label>
|
|
31
|
-
<right-tree @re-res="$parent.$parent.getRes"></right-tree>
|
|
32
|
-
</div>
|
|
33
|
-
<div class="col-sm-4">
|
|
34
|
-
<label class="font_normal_body"> 部门 </label>
|
|
35
|
-
<res-select restype='department'
|
|
36
|
-
is-mul="false"
|
|
37
|
-
@res-select="$parent.$parent.getdep"
|
|
38
|
-
:parentresid="$parent.$parent.depresid"
|
|
39
|
-
:initresid='$parent.$parent.depid'>
|
|
40
|
-
</res-select>
|
|
41
|
-
|
|
42
|
-
</div>
|
|
43
|
-
<div class="col-sm-4">
|
|
44
|
-
<label class="font_normal_body"> 人员 </label>
|
|
45
|
-
<res-select restype='user'
|
|
46
|
-
is-mul="false"
|
|
47
|
-
@res-select="$parent.$parent.getuser"
|
|
48
|
-
:parentresid="$parent.$parent.userresid"
|
|
49
|
-
:initresid='$parent.$parent.operatorid'>
|
|
50
|
-
</res-select>
|
|
51
|
-
</div>
|
|
52
|
-
</div>
|
|
53
|
-
<div class="span" style = "float:right;">
|
|
54
|
-
<button class="button_search" @click="$parent.$parent.searchData()">查询</button>
|
|
55
|
-
<report-print id='gasprice' top='3cm' left='0' width='100%' height='100%'></report-print>
|
|
56
|
-
<report-excel id='gasprice'></report-excel>
|
|
57
|
-
</div>
|
|
58
|
-
</div>
|
|
59
|
-
</criteria>
|
|
60
|
-
<div partial='list' v-el:handcollect id='gasprice'>
|
|
61
|
-
<table class='tableprint' style="margin: 0px auto" v-if="!$parent.data.f_files_path">
|
|
62
|
-
<thead>
|
|
63
|
-
<tr>
|
|
64
|
-
<th colspan='9' style="font-weight: normal; text-align: left;">
|
|
65
|
-
<h3 style="text-align: center">收费结账报表</h3>
|
|
66
|
-
</th>
|
|
67
|
-
</tr>
|
|
68
|
-
<tr>
|
|
69
|
-
<th colspan='9' style="font-weight: normal; text-align: center;">
|
|
70
|
-
开始时间:{{model.model.startDate}}
|
|
71
|
-
结束时间:{{ model.model.endDate }}
|
|
72
|
-
打印时间:{{{$parent.printTime}}}
|
|
73
|
-
</th>
|
|
74
|
-
</tr>
|
|
75
|
-
<tr>
|
|
76
|
-
<th colspan='9' style="font-weight: normal; text-align: center;">
|
|
77
|
-
<div>
|
|
78
|
-
<span v-show="$parent.orgname.trim()!=''">公司:{{$parent.orgname}}</span>
|
|
79
|
-
<span v-show="$parent.depname.trim()!=''"> 部门:{{$parent.depname}}</span>
|
|
80
|
-
<span v-show="$parent.operatorname.trim()!=''">人员:{{$parent.operatorname}}</span>
|
|
81
|
-
</div>
|
|
82
|
-
</th>
|
|
83
|
-
</tr>
|
|
84
|
-
</thead>
|
|
85
|
-
<tr>
|
|
86
|
-
<td colspan='9'>
|
|
87
|
-
{{{ model.data.substring(26,model.data.length-8) }}}
|
|
88
|
-
</td>
|
|
89
|
-
</tr>
|
|
90
|
-
<tfoot>
|
|
91
|
-
<tr style="text-align: left">
|
|
92
|
-
<th colspan='3'>财务审核:</th>
|
|
93
|
-
<th colspan='3'>收款审核:</th>
|
|
94
|
-
<th colspan='3'>收款员:</th>
|
|
95
|
-
</tr>
|
|
96
|
-
</tfoot>
|
|
97
|
-
</table>
|
|
98
|
-
{{{ $parent.reportStr}}}
|
|
99
|
-
</div>
|
|
100
|
-
</criteria-paged>
|
|
101
|
-
<modal :show.sync="show" v-ref:modal small backdrop="false">
|
|
102
|
-
<header slot="modal-header" class="modal-header">
|
|
103
|
-
<h4 class="modal-title">输入文件名称</h4>
|
|
104
|
-
</header>
|
|
105
|
-
<article slot="modal-body" class="modal-body">
|
|
106
|
-
<div class="form-group">
|
|
107
|
-
<input type="text" class="form-control" v-model="filename" placeholder='保存的文件名'>
|
|
108
|
-
</div>
|
|
109
|
-
</article>
|
|
110
|
-
<footer slot="modal-footer" class="modal-footer">
|
|
111
|
-
<button v-show="show" type="button" class="btn btn-default" @click='close'>取消</button>
|
|
112
|
-
<button v-show="show" type="button" class="btn btn-success" @click='confirm(filename)'>确认</button>
|
|
113
|
-
</footer>
|
|
114
|
-
</modal>
|
|
115
|
-
</div>
|
|
116
|
-
</template>
|
|
117
|
-
|
|
118
|
-
<script>
|
|
119
|
-
import { DataModel } from 'vue-client'
|
|
120
|
-
import co from 'co'
|
|
121
|
-
let saveFile = function * (self) {
|
|
122
|
-
// 线验证文件是否重名
|
|
123
|
-
let count = yield self.$resetpost('rs/sql/manageSingleTable',
|
|
124
|
-
{data: {tablename: 't_report_record', condition: `f_files_name = '${self.filename}'`}},
|
|
125
|
-
{resolveMsg: null, rejectMsg: null})
|
|
126
|
-
if (count.data.length > 0) {
|
|
127
|
-
self.$showAlert('无法保存,文件名重名', 'warning', 3000)
|
|
128
|
-
return
|
|
129
|
-
}
|
|
130
|
-
let saveBack = yield self.$resetpost('rs/logic/saveReport', {f_files_content: self.$refs.paged.$els.handcollect.innerHTML,
|
|
131
|
-
f_files_name: self.filename, f_files_type: self.data.f_report_type, f_component_name: 'manage-bus-summary',
|
|
132
|
-
f_operator: this.$login.f.name, f_query_month: `${self.model.model.startDate}-${self.model.model.endDate}`,
|
|
133
|
-
f_outlets: this.$login.f.depname})
|
|
134
|
-
if (saveBack.data.status === 'succeed') {
|
|
135
|
-
self.show = false
|
|
136
|
-
self.filename = ''
|
|
137
|
-
// 后台保存完成,通知刷新
|
|
138
|
-
self.$dispatch('save-success', self.filename)
|
|
139
|
-
}
|
|
140
|
-
}
|
|
141
|
-
export default {
|
|
142
|
-
title: '收费结账报表',
|
|
143
|
-
props: ['data'],
|
|
144
|
-
data () {
|
|
145
|
-
return {
|
|
146
|
-
printTime: this.$login.toStandardTimeString(),
|
|
147
|
-
depresid: [],
|
|
148
|
-
userresid: [],
|
|
149
|
-
f_orgid: this.$login.f.orgid,
|
|
150
|
-
f_depid: this.$login.f.depids,
|
|
151
|
-
f_operatorid: this.$login.f.id,
|
|
152
|
-
operatorid: [],
|
|
153
|
-
depid: [],
|
|
154
|
-
orgname: '',
|
|
155
|
-
depname: '',
|
|
156
|
-
operatorname: '',
|
|
157
|
-
orgCondtionStr: '1=1',
|
|
158
|
-
model: new DataModel('rs/report/getmoneyall', {startDate: 'this.model.startDate', endDate: 'this.model.endDate',
|
|
159
|
-
f_orgid: 'this.model.f_orgid'}),
|
|
160
|
-
reportStr: null,
|
|
161
|
-
show: false,
|
|
162
|
-
}
|
|
163
|
-
},
|
|
164
|
-
ready () {
|
|
165
|
-
this.$refs.paged.$refs.criteria.model.startDate = this.$login.toStandardDateString() + ' 00:00:00'
|
|
166
|
-
this.$refs.paged.$refs.criteria.model.endDate = this.$login.toStandardDateString() + ' 23:59:59'
|
|
167
|
-
this.$refs.paged.$refs.criteria.search()
|
|
168
|
-
console.log(this.$login.f)
|
|
169
|
-
},
|
|
170
|
-
methods: {
|
|
171
|
-
searchData () {
|
|
172
|
-
this.$refs.paged.$refs.criteria.search()
|
|
173
|
-
},
|
|
174
|
-
selfSearch (args) {
|
|
175
|
-
this.printTime = this.$login.toStandardTimeString()
|
|
176
|
-
let orgcondition = 'f_orgid = ' + this.f_orgid
|
|
177
|
-
if (this.f_depid[0]) {
|
|
178
|
-
orgcondition += ' and f_depid = ' + this.f_depid
|
|
179
|
-
}
|
|
180
|
-
if(this.f_operatorid[0]) {
|
|
181
|
-
orgcondition += ' and f_operatorid = ' + this.f_operatorid
|
|
182
|
-
}
|
|
183
|
-
this.$refs.paged.$refs.criteria.model.f_orgid = orgcondition
|
|
184
|
-
this.$refs.paged.search(args)
|
|
185
|
-
},
|
|
186
|
-
getRes (obj) {
|
|
187
|
-
this.orgname = obj.res[0]
|
|
188
|
-
this.depresid = obj.resids
|
|
189
|
-
this.f_orgid = obj.resids
|
|
190
|
-
},
|
|
191
|
-
getdep (obj, val) {
|
|
192
|
-
// this.depname = val[0]
|
|
193
|
-
this.userresid = obj
|
|
194
|
-
this.f_depid = obj
|
|
195
|
-
},
|
|
196
|
-
getuser ( obj, val) {
|
|
197
|
-
this.operatorname = val[0]
|
|
198
|
-
this.f_operatorid = obj
|
|
199
|
-
},
|
|
200
|
-
|
|
201
|
-
// 根据文件路径获取储存的报表内容
|
|
202
|
-
getFileContent (path) {
|
|
203
|
-
this.$resetpost('rs/logic/getReportFileContent', {f_files_path: path}, {resolveMsg: null, rejectMsg: null}).then((res) => {
|
|
204
|
-
this.reportStr = res.data.filecontent
|
|
205
|
-
this.model.state = '正确'
|
|
206
|
-
})
|
|
207
|
-
},
|
|
208
|
-
confirm () {
|
|
209
|
-
if (!this.filename || this.filename === '') {
|
|
210
|
-
this.$showAlert('无法保存,文件名不能为空', 'warning', 3000)
|
|
211
|
-
}
|
|
212
|
-
let saveGen = saveFile(this)
|
|
213
|
-
co(saveGen)
|
|
214
|
-
},
|
|
215
|
-
close () {
|
|
216
|
-
this.show = false
|
|
217
|
-
},
|
|
218
|
-
// 将报表保存成文件
|
|
219
|
-
confirmReport () {
|
|
220
|
-
this.show = true
|
|
221
|
-
this.filename = this.data.f_report_name + this.$login.toStandardDateString()
|
|
222
|
-
},
|
|
223
|
-
},
|
|
224
|
-
watch: {
|
|
225
|
-
'data' (val) {
|
|
226
|
-
if (val.f_files_path) {
|
|
227
|
-
this.getFileContent(val.f_files_path)
|
|
228
|
-
} else {
|
|
229
|
-
this.reportStr = null
|
|
230
|
-
}
|
|
231
|
-
}
|
|
232
|
-
},
|
|
233
|
-
computed: {
|
|
234
|
-
}
|
|
235
|
-
}
|
|
236
|
-
</script>
|
|
237
|
-
<style scoped>
|
|
238
|
-
.noborder{
|
|
239
|
-
border: none;
|
|
240
|
-
}
|
|
241
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<div class="basic-main">
|
|
3
|
+
<criteria-paged :model="model" :pager='false' v-ref:paged>
|
|
4
|
+
<criteria partial='criteria' @condition-changed='$parent.selfSearch' v-ref:criteria>
|
|
5
|
+
<p class="bg-info text-center" style="padding: 8px;">收费结账报表</p>
|
|
6
|
+
<div class="form-group" v-if="!$parent.$parent.data.f_files_path"></div>
|
|
7
|
+
<div novalidate class="form-horizontal select-overspread container-fluid auto" partial >
|
|
8
|
+
<div class="row">
|
|
9
|
+
<div class="col-sm-4" >
|
|
10
|
+
<label class="font_normal_body" for="startDate">开始日期:</label>
|
|
11
|
+
<datepicker id="startDate" placeholder="开始日期" style="width: 60%"
|
|
12
|
+
v-model="model.startDate"
|
|
13
|
+
:value.sync="model.startDate"
|
|
14
|
+
:disabled-days-of-Week="[]"
|
|
15
|
+
:format="'yyyy-MM-dd HH:mm:ss'"
|
|
16
|
+
:show-reset-button="reset">
|
|
17
|
+
</datepicker>
|
|
18
|
+
</div>
|
|
19
|
+
<div class="col-sm-4" >
|
|
20
|
+
<label class="font_normal_body" for="endDate">结束日期:</label>
|
|
21
|
+
<datepicker id="endDate" placeholder="结束日期" style="width: 60%"
|
|
22
|
+
v-model="model.endDate"
|
|
23
|
+
:value.sync="model.endDate"
|
|
24
|
+
:disabled-days-of-Week="[]"
|
|
25
|
+
:format="'yyyy-MM-dd HH:mm:ss'"
|
|
26
|
+
:show-reset-button="reset">
|
|
27
|
+
</datepicker>
|
|
28
|
+
</div>
|
|
29
|
+
<div class="col-sm-4">
|
|
30
|
+
<label class="font_normal_body"> 公司 </label>
|
|
31
|
+
<right-tree @re-res="$parent.$parent.getRes"></right-tree>
|
|
32
|
+
</div>
|
|
33
|
+
<div class="col-sm-4">
|
|
34
|
+
<label class="font_normal_body"> 部门 </label>
|
|
35
|
+
<res-select restype='department'
|
|
36
|
+
is-mul="false"
|
|
37
|
+
@res-select="$parent.$parent.getdep"
|
|
38
|
+
:parentresid="$parent.$parent.depresid"
|
|
39
|
+
:initresid='$parent.$parent.depid'>
|
|
40
|
+
</res-select>
|
|
41
|
+
|
|
42
|
+
</div>
|
|
43
|
+
<div class="col-sm-4">
|
|
44
|
+
<label class="font_normal_body"> 人员 </label>
|
|
45
|
+
<res-select restype='user'
|
|
46
|
+
is-mul="false"
|
|
47
|
+
@res-select="$parent.$parent.getuser"
|
|
48
|
+
:parentresid="$parent.$parent.userresid"
|
|
49
|
+
:initresid='$parent.$parent.operatorid'>
|
|
50
|
+
</res-select>
|
|
51
|
+
</div>
|
|
52
|
+
</div>
|
|
53
|
+
<div class="span" style = "float:right;">
|
|
54
|
+
<button class="button_search" @click="$parent.$parent.searchData()">查询</button>
|
|
55
|
+
<report-print id='gasprice' top='3cm' left='0' width='100%' height='100%'></report-print>
|
|
56
|
+
<report-excel id='gasprice'></report-excel>
|
|
57
|
+
</div>
|
|
58
|
+
</div>
|
|
59
|
+
</criteria>
|
|
60
|
+
<div partial='list' v-el:handcollect id='gasprice'>
|
|
61
|
+
<table class='tableprint' style="margin: 0px auto" v-if="!$parent.data.f_files_path">
|
|
62
|
+
<thead>
|
|
63
|
+
<tr>
|
|
64
|
+
<th colspan='9' style="font-weight: normal; text-align: left;">
|
|
65
|
+
<h3 style="text-align: center">收费结账报表</h3>
|
|
66
|
+
</th>
|
|
67
|
+
</tr>
|
|
68
|
+
<tr>
|
|
69
|
+
<th colspan='9' style="font-weight: normal; text-align: center;">
|
|
70
|
+
开始时间:{{model.model.startDate}}
|
|
71
|
+
结束时间:{{ model.model.endDate }}
|
|
72
|
+
打印时间:{{{$parent.printTime}}}
|
|
73
|
+
</th>
|
|
74
|
+
</tr>
|
|
75
|
+
<tr>
|
|
76
|
+
<th colspan='9' style="font-weight: normal; text-align: center;">
|
|
77
|
+
<div>
|
|
78
|
+
<span v-show="$parent.orgname.trim()!=''">公司:{{$parent.orgname}}</span>
|
|
79
|
+
<span v-show="$parent.depname.trim()!=''"> 部门:{{$parent.depname}}</span>
|
|
80
|
+
<span v-show="$parent.operatorname.trim()!=''">人员:{{$parent.operatorname}}</span>
|
|
81
|
+
</div>
|
|
82
|
+
</th>
|
|
83
|
+
</tr>
|
|
84
|
+
</thead>
|
|
85
|
+
<tr>
|
|
86
|
+
<td colspan='9'>
|
|
87
|
+
{{{ model.data.substring(26,model.data.length-8) }}}
|
|
88
|
+
</td>
|
|
89
|
+
</tr>
|
|
90
|
+
<tfoot>
|
|
91
|
+
<tr style="text-align: left">
|
|
92
|
+
<th colspan='3'>财务审核:</th>
|
|
93
|
+
<th colspan='3'>收款审核:</th>
|
|
94
|
+
<th colspan='3'>收款员:</th>
|
|
95
|
+
</tr>
|
|
96
|
+
</tfoot>
|
|
97
|
+
</table>
|
|
98
|
+
{{{ $parent.reportStr}}}
|
|
99
|
+
</div>
|
|
100
|
+
</criteria-paged>
|
|
101
|
+
<modal :show.sync="show" v-ref:modal small backdrop="false">
|
|
102
|
+
<header slot="modal-header" class="modal-header">
|
|
103
|
+
<h4 class="modal-title">输入文件名称</h4>
|
|
104
|
+
</header>
|
|
105
|
+
<article slot="modal-body" class="modal-body">
|
|
106
|
+
<div class="form-group">
|
|
107
|
+
<input type="text" class="form-control" v-model="filename" placeholder='保存的文件名'>
|
|
108
|
+
</div>
|
|
109
|
+
</article>
|
|
110
|
+
<footer slot="modal-footer" class="modal-footer">
|
|
111
|
+
<button v-show="show" type="button" class="btn btn-default" @click='close'>取消</button>
|
|
112
|
+
<button v-show="show" type="button" class="btn btn-success" @click='confirm(filename)'>确认</button>
|
|
113
|
+
</footer>
|
|
114
|
+
</modal>
|
|
115
|
+
</div>
|
|
116
|
+
</template>
|
|
117
|
+
|
|
118
|
+
<script>
|
|
119
|
+
import { DataModel } from 'vue-client'
|
|
120
|
+
import co from 'co'
|
|
121
|
+
let saveFile = function * (self) {
|
|
122
|
+
// 线验证文件是否重名
|
|
123
|
+
let count = yield self.$resetpost('rs/sql/manageSingleTable',
|
|
124
|
+
{data: {tablename: 't_report_record', condition: `f_files_name = '${self.filename}'`}},
|
|
125
|
+
{resolveMsg: null, rejectMsg: null})
|
|
126
|
+
if (count.data.length > 0) {
|
|
127
|
+
self.$showAlert('无法保存,文件名重名', 'warning', 3000)
|
|
128
|
+
return
|
|
129
|
+
}
|
|
130
|
+
let saveBack = yield self.$resetpost('rs/logic/saveReport', {f_files_content: self.$refs.paged.$els.handcollect.innerHTML,
|
|
131
|
+
f_files_name: self.filename, f_files_type: self.data.f_report_type, f_component_name: 'manage-bus-summary',
|
|
132
|
+
f_operator: this.$login.f.name, f_query_month: `${self.model.model.startDate}-${self.model.model.endDate}`,
|
|
133
|
+
f_outlets: this.$login.f.depname})
|
|
134
|
+
if (saveBack.data.status === 'succeed') {
|
|
135
|
+
self.show = false
|
|
136
|
+
self.filename = ''
|
|
137
|
+
// 后台保存完成,通知刷新
|
|
138
|
+
self.$dispatch('save-success', self.filename)
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
export default {
|
|
142
|
+
title: '收费结账报表',
|
|
143
|
+
props: ['data'],
|
|
144
|
+
data () {
|
|
145
|
+
return {
|
|
146
|
+
printTime: this.$login.toStandardTimeString(),
|
|
147
|
+
depresid: [],
|
|
148
|
+
userresid: [],
|
|
149
|
+
f_orgid: this.$login.f.orgid,
|
|
150
|
+
f_depid: this.$login.f.depids,
|
|
151
|
+
f_operatorid: this.$login.f.id,
|
|
152
|
+
operatorid: [],
|
|
153
|
+
depid: [],
|
|
154
|
+
orgname: '',
|
|
155
|
+
depname: '',
|
|
156
|
+
operatorname: '',
|
|
157
|
+
orgCondtionStr: '1=1',
|
|
158
|
+
model: new DataModel('rs/report/getmoneyall', {startDate: 'this.model.startDate', endDate: 'this.model.endDate',
|
|
159
|
+
f_orgid: 'this.model.f_orgid'}),
|
|
160
|
+
reportStr: null,
|
|
161
|
+
show: false,
|
|
162
|
+
}
|
|
163
|
+
},
|
|
164
|
+
ready () {
|
|
165
|
+
this.$refs.paged.$refs.criteria.model.startDate = this.$login.toStandardDateString() + ' 00:00:00'
|
|
166
|
+
this.$refs.paged.$refs.criteria.model.endDate = this.$login.toStandardDateString() + ' 23:59:59'
|
|
167
|
+
this.$refs.paged.$refs.criteria.search()
|
|
168
|
+
console.log(this.$login.f)
|
|
169
|
+
},
|
|
170
|
+
methods: {
|
|
171
|
+
searchData () {
|
|
172
|
+
this.$refs.paged.$refs.criteria.search()
|
|
173
|
+
},
|
|
174
|
+
selfSearch (args) {
|
|
175
|
+
this.printTime = this.$login.toStandardTimeString()
|
|
176
|
+
let orgcondition = 'f_orgid = ' + this.f_orgid
|
|
177
|
+
if (this.f_depid[0]) {
|
|
178
|
+
orgcondition += ' and f_depid = ' + this.f_depid
|
|
179
|
+
}
|
|
180
|
+
if(this.f_operatorid[0]) {
|
|
181
|
+
orgcondition += ' and f_operatorid = ' + this.f_operatorid
|
|
182
|
+
}
|
|
183
|
+
this.$refs.paged.$refs.criteria.model.f_orgid = orgcondition
|
|
184
|
+
this.$refs.paged.search(args)
|
|
185
|
+
},
|
|
186
|
+
getRes (obj) {
|
|
187
|
+
this.orgname = obj.res[0]
|
|
188
|
+
this.depresid = obj.resids
|
|
189
|
+
this.f_orgid = obj.resids
|
|
190
|
+
},
|
|
191
|
+
getdep (obj, val) {
|
|
192
|
+
// this.depname = val[0]
|
|
193
|
+
this.userresid = obj
|
|
194
|
+
this.f_depid = obj
|
|
195
|
+
},
|
|
196
|
+
getuser ( obj, val) {
|
|
197
|
+
this.operatorname = val[0]
|
|
198
|
+
this.f_operatorid = obj
|
|
199
|
+
},
|
|
200
|
+
|
|
201
|
+
// 根据文件路径获取储存的报表内容
|
|
202
|
+
getFileContent (path) {
|
|
203
|
+
this.$resetpost('rs/logic/getReportFileContent', {f_files_path: path}, {resolveMsg: null, rejectMsg: null}).then((res) => {
|
|
204
|
+
this.reportStr = res.data.filecontent
|
|
205
|
+
this.model.state = '正确'
|
|
206
|
+
})
|
|
207
|
+
},
|
|
208
|
+
confirm () {
|
|
209
|
+
if (!this.filename || this.filename === '') {
|
|
210
|
+
this.$showAlert('无法保存,文件名不能为空', 'warning', 3000)
|
|
211
|
+
}
|
|
212
|
+
let saveGen = saveFile(this)
|
|
213
|
+
co(saveGen)
|
|
214
|
+
},
|
|
215
|
+
close () {
|
|
216
|
+
this.show = false
|
|
217
|
+
},
|
|
218
|
+
// 将报表保存成文件
|
|
219
|
+
confirmReport () {
|
|
220
|
+
this.show = true
|
|
221
|
+
this.filename = this.data.f_report_name + this.$login.toStandardDateString()
|
|
222
|
+
},
|
|
223
|
+
},
|
|
224
|
+
watch: {
|
|
225
|
+
'data' (val) {
|
|
226
|
+
if (val.f_files_path) {
|
|
227
|
+
this.getFileContent(val.f_files_path)
|
|
228
|
+
} else {
|
|
229
|
+
this.reportStr = null
|
|
230
|
+
}
|
|
231
|
+
}
|
|
232
|
+
},
|
|
233
|
+
computed: {
|
|
234
|
+
}
|
|
235
|
+
}
|
|
236
|
+
</script>
|
|
237
|
+
<style scoped>
|
|
238
|
+
.noborder{
|
|
239
|
+
border: none;
|
|
240
|
+
}
|
|
241
|
+
</style>
|
|
@@ -127,14 +127,14 @@ import { DataModel } from 'vue-client'
|
|
|
127
127
|
import co from 'co'
|
|
128
128
|
let saveFile = function * (self) {
|
|
129
129
|
// 线验证文件是否重名
|
|
130
|
-
let count = yield self.$resetpost('
|
|
130
|
+
let count = yield self.$resetpost('rs/sql/manageSingleTable',
|
|
131
131
|
{data: {tablename: 't_report_record', condition: `f_files_name = '${self.filename}'`}},
|
|
132
132
|
{resolveMsg: null, rejectMsg: null})
|
|
133
133
|
if (count.data.length > 0) {
|
|
134
134
|
self.$showAlert('无法保存,文件名重名', 'warning', 3000)
|
|
135
135
|
return
|
|
136
136
|
}
|
|
137
|
-
let saveBack = yield self.$resetpost('
|
|
137
|
+
let saveBack = yield self.$resetpost('rs/logic/saveReport', {f_files_content: self.$refs.paged.$els.handcollect.innerHTML,
|
|
138
138
|
f_files_name: self.filename, f_files_type: self.data.f_report_type, f_component_name: 'manage-bus-summary',
|
|
139
139
|
f_operator: this.$login.f.name, f_query_month: `${self.model.model.startDate}-${self.model.model.endDate}`,
|
|
140
140
|
f_outlets: this.$login.f.depname})
|
|
@@ -165,7 +165,7 @@ export default {
|
|
|
165
165
|
f_inputtor:[],
|
|
166
166
|
f_user_type:'',
|
|
167
167
|
orgCondtionStr: '1=1',
|
|
168
|
-
model: new DataModel('
|
|
168
|
+
model: new DataModel('rs/report/smartKitchenReport', {startDate: 'this.model.startDate', endDate: 'this.model.endDate',
|
|
169
169
|
f_orgid: 'this.model.f_orgid'}),
|
|
170
170
|
reportStr: null,
|
|
171
171
|
show: false
|
|
@@ -228,7 +228,7 @@ export default {
|
|
|
228
228
|
},
|
|
229
229
|
// 根据文件路径获取储存的报表内容
|
|
230
230
|
getFileContent (path) {
|
|
231
|
-
this.$resetpost('
|
|
231
|
+
this.$resetpost('rs/logic/getReportFileContent', {f_files_path: path}, {resolveMsg: null, rejectMsg: null}).then((res) => {
|
|
232
232
|
this.reportStr = res.data.filecontent
|
|
233
233
|
this.model.state = '正确'
|
|
234
234
|
})
|
|
@@ -144,14 +144,14 @@ import * as Util from "../../Util";
|
|
|
144
144
|
|
|
145
145
|
let saveFile = function* (self) {
|
|
146
146
|
// 线验证文件是否重名
|
|
147
|
-
let count = yield self.$resetpost('
|
|
147
|
+
let count = yield self.$resetpost('rs/sql/manageSingleTable',
|
|
148
148
|
{data: {tablename: 't_report_record', condition: `f_files_name = '${self.filename}'`}},
|
|
149
149
|
{resolveMsg: null, rejectMsg: null})
|
|
150
150
|
if (count.data.length > 0) {
|
|
151
151
|
self.$showAlert('无法保存,文件名重名', 'warning', 3000)
|
|
152
152
|
return
|
|
153
153
|
}
|
|
154
|
-
let saveBack = yield self.$resetpost('
|
|
154
|
+
let saveBack = yield self.$resetpost('rs/logic/saveReport', {
|
|
155
155
|
f_files_content: self.$refs.paged.$els.handcollect.innerHTML,
|
|
156
156
|
f_files_name: self.filename, f_files_type: self.data.f_report_type, f_component_name: 'manage-bus-summary',
|
|
157
157
|
f_operator: this.$login.f.name, f_query_month: `${self.model.model.startDate}-${self.model.model.endDate}`,
|
|
@@ -188,7 +188,7 @@ export default {
|
|
|
188
188
|
f_inputtor: [],
|
|
189
189
|
f_user_type: '',
|
|
190
190
|
orgCondtionStr: '1=1',
|
|
191
|
-
model: new DataModel('
|
|
191
|
+
model: new DataModel('rs/report/咸阳财务收费新报表(总计)', {
|
|
192
192
|
startDate: 'this.model.startDate', endDate: 'this.model.endDate',
|
|
193
193
|
f_orgid: 'this.model.f_orgid',
|
|
194
194
|
f_orgid_other: 'this.model.f_orgid_other',
|
|
@@ -305,7 +305,7 @@ export default {
|
|
|
305
305
|
},
|
|
306
306
|
// 根据文件路径获取储存的报表内容
|
|
307
307
|
getFileContent(path) {
|
|
308
|
-
this.$resetpost('
|
|
308
|
+
this.$resetpost('rs/logic/getReportFileContent', {f_files_path: path}, {
|
|
309
309
|
resolveMsg: null,
|
|
310
310
|
rejectMsg: null
|
|
311
311
|
}).then((res) => {
|