sale-client 4.3.58 → 4.3.60

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/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  # Change Log
2
2
  所有关于本产品的变化都在该文档里。
3
3
 
4
+ ## **🚀 V4.3.60 -2026-05-26 `@张科科`**
5
+ ### `🌟` 功能调整
6
+ ---洪雅 综合收费界面 增加合同编号的查询条件
7
+
8
+
4
9
  ## **🚀 V4.3.56 -2026-05-18 `@张科科`**
5
10
  ### `🌟` 功能调整
6
11
  ---金煌 物联网表收费 物联收费未开户提示是否开启 这个不要 改成单值表配置控制的
@@ -1,7 +1,7 @@
1
1
  var path = require('path')
2
2
  var checkVersion = require('./versionCheck.js')
3
3
  checkVersion()
4
- const [ serverRul, localUrl ] = ['http://192.168.50.67:31567/', 'http://127.0.0.1:9026/']
4
+ const [ serverRul, localUrl ] = ['http://192.168.50.67:31567/', 'http://192.168.50.67:31567/']
5
5
  var merge = require('webpack-merge')
6
6
  var baseConfig = require('./webpack.dev.conf')
7
7
  var devConfig = {
@@ -25,34 +25,28 @@ var devConfig = {
25
25
  // },
26
26
  // target: localUrl
27
27
  // },
28
- '/api/af-revenue/logic': {
29
- pathRewrite: {
30
- '/api/af-revenue/logic': '/logic'
31
- },
32
- target: localUrl
33
- },
34
- '/api/af-revenue/file': {
35
- pathRewrite: {
36
- '/api/af-revenue/file': '/file'
37
- },
38
- target: localUrl
39
- },
40
- '/api/af-revenue/handPlanAudit': {
41
- pathRewrite: {
42
- '/api/af-revenue/handPlanAudit': '/handPlanAudit'
43
- },
44
- target: localUrl
45
- },
28
+ // '/api/af-revenue/logic': {
29
+ // pathRewrite: {
30
+ // '/api/af-revenue/logic': '/logic'
31
+ // },
32
+ // target: localUrl
33
+ // },
34
+ // '/api/af-revenue/file': {
35
+ // // pathRewrite: {
36
+ // // '/api/af-revenue/file': '/file'
37
+ // // },
38
+ // target: localUrl
39
+ // },
46
40
  // '/weixin2/rs':{
47
41
  //
48
42
  // target: 'http://410663id1ia4.vicp.fun'
49
43
  // },
50
- '/api/af-revenue/sql': {
51
- pathRewrite: {
52
- '/api/af-revenue/sql': '/sql'
53
- },
54
- target: localUrl
55
- },
44
+ // '/api/af-revenue/sql': {
45
+ // pathRewrite: {
46
+ // '/api/af-revenue/sql': '/sql'
47
+ // },
48
+ // target: localUrl
49
+ // },
56
50
  '/rs/pay': {
57
51
  target: 'http://localhost:8080'
58
52
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sale-client",
3
- "version": "4.3.58",
3
+ "version": "4.3.60",
4
4
  "description": "收费模块前台组件",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -139,28 +139,28 @@
139
139
  汇总信息
140
140
  </td>
141
141
  <td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px">
142
- 用气量合计:&emsp;{{model.sums.f_oughtamount}}
142
+ 用气量合计:&emsp;{{round2(model.sums.f_oughtamount)}}
143
143
  </td>
144
144
  <td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px">
145
- 用气金额合计:&emsp;{{model.sums.f_oughtfee}}
145
+ 用气金额合计:&emsp;{{round2(model.sums.f_oughtfee)}}
146
146
  </td>
147
147
  <td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px" v-if="!f_calculation.includes('表端结算')">
148
- 一阶用气量合计:&emsp;{{model.sums.f_stairamount1}}
148
+ 一阶用气量合计:&emsp;{{round2(model.sums.f_stairamount1)}}
149
149
  </td>
150
150
  <td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px" v-if="!f_calculation.includes('表端结算')">
151
- 一阶用气金额合计:&emsp;{{model.sums.f_stair1fee}}
151
+ 一阶用气金额合计:&emsp;{{round2(model.sums.f_stair1fee)}}
152
152
  </td>
153
153
  <td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px" v-if="!f_calculation.includes('表端结算')">
154
- 二阶用气量合计:&emsp;{{model.sums.f_stair2amount}}
154
+ 二阶用气量合计:&emsp;{{round2(model.sums.f_stair2amount)}}
155
155
  </td>
156
156
  <td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px" v-if="!f_calculation.includes('表端结算')">
157
- 二阶用气金额合计:&emsp;{{model.sums.f_stair2fee}}
157
+ 二阶用气金额合计:&emsp;{{round2(model.sums.f_stair2fee)}}
158
158
  </td>
159
159
  <td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px" v-if="!f_calculation.includes('表端结算')">
160
- 三阶用气量合计:&emsp;{{model.sums.f_stair3amount}}
160
+ 三阶用气量合计:&emsp;{{round2(model.sums.f_stair3amount)}}
161
161
  </td>
162
162
  <td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px" v-if="!f_calculation.includes('表端结算')">
163
- 三阶用气金额合计:&emsp;{{model.sums.f_stair3fee}}
163
+ 三阶用气金额合计:&emsp;{{round2(model.sums.f_stair3fee)}}
164
164
  </td>
165
165
  <!--<td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px">-->
166
166
  <!--欠费气量合计:&emsp;{{model.sums.f_totalowe_gas}}-->
@@ -261,6 +261,11 @@
261
261
  }
262
262
  },
263
263
  methods: {
264
+ // 标准四舍五入保留2位小数
265
+ round2 (val) {
266
+ let num = parseFloat(val) || 0
267
+ return Math.round(num * 100) / 100
268
+ },
264
269
  // search() {
265
270
  // this.condition = `${this.$refs.paged.$refs.criteria.condition} and f_user_id = '${this.row.f_user_id}'`
266
271
  // this.model.search(this.condition, this.model)
@@ -125,10 +125,10 @@
125
125
  汇总信息
126
126
  </td>
127
127
  <td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px">
128
- 用气量合计:&emsp;{{model.sums.f_oughtamount}}
128
+ 用气量合计:&emsp;{{round2(model.sums.f_oughtamount)}}
129
129
  </td>
130
130
  <td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px">
131
- 用气金额合计:&emsp;{{model.sums.f_oughtfee}}
131
+ 用气金额合计:&emsp;{{round2(model.sums.f_oughtfee)}}
132
132
  </td>
133
133
  </tr>
134
134
  </table>
@@ -210,6 +210,11 @@ export default {
210
210
  }
211
211
  },
212
212
  methods: {
213
+ // 标准四舍五入保留2位小数
214
+ round2 (val) {
215
+ let num = parseFloat(val) || 0
216
+ return Math.round(num * 100) / 100
217
+ },
213
218
  getotherfooter () {
214
219
  // this.$refs.paged.$refs.cri.$refs.exports.otherData=[];
215
220
  // this.$refs.paged.$refs.cri.$refs.exports.footerData=[];
@@ -137,28 +137,28 @@
137
137
  汇总信息
138
138
  </td>
139
139
  <td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px">
140
- 用气量合计:&emsp;{{model.sums.f_oughtamount}}
140
+ 用气量合计:&emsp;{{round2(model.sums.f_oughtamount)}}
141
141
  </td>
142
142
  <td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px">
143
- 用气金额合计:&emsp;{{model.sums.f_oughtfee}}
143
+ 用气金额合计:&emsp;{{round2(model.sums.f_oughtfee)}}
144
144
  </td>
145
145
  <td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px" v-if="!f_calculation.includes('表端结算')">
146
- 一阶用气量合计:&emsp;{{model.sums.f_stairamount1}}
146
+ 一阶用气量合计:&emsp;{{round2(model.sums.f_stairamount1)}}
147
147
  </td>
148
148
  <td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px" v-if="!f_calculation.includes('表端结算')">
149
- 一阶用气金额合计:&emsp;{{model.sums.f_stair1fee}}
149
+ 一阶用气金额合计:&emsp;{{round2(model.sums.f_stair1fee)}}
150
150
  </td>
151
151
  <td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px" v-if="!f_calculation.includes('表端结算')">
152
- 二阶用气量合计:&emsp;{{model.sums.f_stair2amount}}
152
+ 二阶用气量合计:&emsp;{{round2(model.sums.f_stair2amount)}}
153
153
  </td>
154
154
  <td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px" v-if="!f_calculation.includes('表端结算')">
155
- 二阶用气金额合计:&emsp;{{model.sums.f_stair2fee}}
155
+ 二阶用气金额合计:&emsp;{{round2(model.sums.f_stair2fee)}}
156
156
  </td>
157
157
  <td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px" v-if="!f_calculation.includes('表端结算')">
158
- 三阶用气量合计:&emsp;{{model.sums.f_stair3amount}}
158
+ 三阶用气量合计:&emsp;{{round2(model.sums.f_stair3amount)}}
159
159
  </td>
160
160
  <td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px" v-if="!f_calculation.includes('表端结算')">
161
- 三阶用气金额合计:&emsp;{{model.sums.f_stair3fee}}
161
+ 三阶用气金额合计:&emsp;{{round2(model.sums.f_stair3fee)}}
162
162
  </td>
163
163
  </tr>
164
164
  </table>
@@ -258,6 +258,11 @@
258
258
  }
259
259
  },
260
260
  methods: {
261
+ // 标准四舍五入保留2位小数
262
+ round2 (val) {
263
+ let num = parseFloat(val) || 0
264
+ return Math.round(num * 100) / 100
265
+ },
261
266
  getotherfooter () {
262
267
  // this.$refs.paged.$refs.cri.$refs.exports.otherData=[];
263
268
  // this.$refs.paged.$refs.cri.$refs.exports.footerData=[];
@@ -132,7 +132,12 @@
132
132
  condition="i.f_whether_zbf = '{}'"
133
133
  close-on-select style="width: 60%"></v-select>
134
134
  </div>
135
-
135
+ <div class="form-group col-sm-3">
136
+ <label class="font_normal_body">合同编号</label>
137
+ <input type="text" class="input_search" style="width:60%"
138
+ v-model="model.f_contract_id" placeholder='合同编号'
139
+ condition="i.f_contract_id = '{}'">
140
+ </div>
136
141
  </div>
137
142
  </div>
138
143
  <div class="form-group col-sm-6" style="float:right;white-space: nowrap;width: auto">
package/src/main.js CHANGED
@@ -2,7 +2,7 @@ import Vue from 'vue'
2
2
  import all from 'vue-client/src/all'
3
3
  import App from './App'
4
4
  import system from 'system-clients/src/system'
5
- import FilialeSale from './filiale/dexin/sale'
5
+ import FilialeSale from './filiale/jinhong/sale'
6
6
  import sale from './sale'
7
7
  import address from 'address-client/src/address'
8
8
  import ldap from 'ldap-clients/src/ldap'
File without changes
File without changes
File without changes
@@ -1,2 +0,0 @@
1
- #Wed Mar 18 10:18:57 CST 2026
2
- gradle.version=5.2.1
Binary file
File without changes