sale-client 3.6.70 → 3.6.71

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.
@@ -1,5 +1,5 @@
1
1
  var path = require('path')
2
- const [localUrl, serverRul] = ['http://127.0.0.1:8080/', 'http://192.168.50.4:8400/']
2
+ const [localUrl, serverRul] = ['https://qnjtkf.cn:8400/', 'https://qnjtkf.cn:8400/']
3
3
  var merge = require('webpack-merge')
4
4
  var baseConfig = require('./webpack.dev.conf')
5
5
  var devConfig = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sale-client",
3
- "version": "3.6.70",
3
+ "version": "3.6.71",
4
4
  "description": "收费模块前台组件",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -90,6 +90,9 @@
90
90
  <th>
91
91
  <nobr>实收金额</nobr>
92
92
  </th>
93
+ <th>
94
+ <nobr>发票金额</nobr>
95
+ </th>
93
96
  <th>
94
97
  <nobr>不含税金额</nobr>
95
98
  </th>
@@ -99,9 +102,9 @@
99
102
  <th>
100
103
  <nobr>发票代码</nobr>
101
104
  </th>
102
- <th>
103
- <nobr>发票流水号</nobr>
104
- </th>
105
+ <!-- <th>-->
106
+ <!-- <nobr>发票流水号</nobr>-->
107
+ <!-- </th>-->
105
108
  <th>
106
109
  <nobr>发票号码</nobr>
107
110
  </th>
@@ -111,6 +114,9 @@
111
114
  <th>
112
115
  <nobr>发票类型</nobr>
113
116
  </th>
117
+ <th>
118
+ <nobr>收费时间</nobr>
119
+ </th>
114
120
  <th>
115
121
  <nobr>开票时间</nobr>
116
122
  </th>
@@ -127,14 +133,16 @@
127
133
  <th style="text-align:center">{{ row.f_userinfo_code }}</th>
128
134
  <th style="text-align:center">{{ row.f_user_name }}</th>
129
135
  <th style="text-align:center">{{ row.f_buy_address_phone }}</th>
136
+ <th style="text-align:center">{{ row.f_collection }}</th>
130
137
  <th style="text-align:center">{{ row.f_total_money }}</th>
131
138
  <th style="text-align:center">{{ row.f_tax_money }}</th>
132
139
  <th style="text-align:center">{{ row.f_invoice_type }}</th>
133
140
  <th style="text-align:center">{{ row.f_bill_code }}</th>
134
- <th style="text-align:center">{{ row.f_fpqqlsh }}</th>
141
+ <!-- <th style="text-align:center">{{ row.f_fpqqlsh }}</th>-->
135
142
  <th style="text-align:center">{{ row.f_bill_number }}</th>
136
143
  <th style="text-align:center">{{ row.f_bill_state }}</th>
137
144
  <th style="text-align:center">{{ row.f_charge_type }}</th>
145
+ <th style="text-align:center">{{ row.sell_operate_date }}</th>
138
146
  <th style="text-align:center">{{ row.f_operate_date }}</th>
139
147
  <th style="text-align:center">
140
148
  <button class="btn btn-link" v-if="row.f_bill_url"
@@ -166,6 +174,20 @@
166
174
  </data-grid>
167
175
  </criteria-paged>
168
176
  </div>
177
+ <table class="table-hover">
178
+ <tr style="position: relative" class="table-bordered">
179
+ <td
180
+ style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;color: #5CB95C;font-weight: bold">
181
+ 汇总信息
182
+ </td>
183
+ <td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">
184
+ 气量合计:&emsp;{{sumsmodel.f_collection}}
185
+ </td>
186
+ <td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">
187
+ 应交金额合计:&emsp;{{sumsmodel.f_total_money}}
188
+ </td>
189
+ </tr>
190
+ </table>
169
191
  <modal v-if="show" :show.sync="show" v-ref:modal backdrop="false">
170
192
  <header slot="modal-header" class="modal-header">
171
193
  <h4 class="modal-title">撤销原因</h4>
@@ -198,7 +220,10 @@ export default {
198
220
  title: '发票管理',
199
221
  data () {
200
222
  return {
201
- model: new PagedList('rs/sql/eticket_query', 20),
223
+ model: new PagedList('rs/sql/eticket_query', 20, {}, {
224
+ f_collection: 0,
225
+ f_total_money: 0
226
+ }),
202
227
  curorgid: [this.$login.f.orgid],
203
228
  criteriaShow: false,
204
229
  eticket_show: false,
@@ -216,7 +241,11 @@ export default {
216
241
  bz: '',
217
242
  row: {},
218
243
  install_show: false,
219
- f_orgid: ''
244
+ f_orgid: '',
245
+ sumsmodel: {
246
+ f_collection: 0,
247
+ f_total_money: 0
248
+ },
220
249
  }
221
250
  },
222
251
  ready () {
@@ -236,6 +265,7 @@ export default {
236
265
  args.condition = `uf.f_filialeid in ${this.f_orgid} and ${args.condition}`
237
266
  }
238
267
  this.model.search(args.condition, args.model)
268
+ this.sumsmodel = this.$refs.paged.$refs.grid.model.sums
239
269
  },
240
270
  async confirm () {
241
271
  // 修改发票状态
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 wenxi from './filiale/yuansheng/sale'
6
+ import wenxi from './filiale/qianneng/sale'
7
7
  // import FilialeSale from './filiale/yuansheng/sale'
8
8
  import address from 'address-client/src/address'
9
9
  import ldap from 'ldap-clients/src/ldap'