sale-client 4.3.29 → 4.3.31

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.
File without changes
File without changes
@@ -0,0 +1,2 @@
1
+ #Wed Mar 18 10:18:57 CST 2026
2
+ gradle.version=5.2.1
Binary file
File without changes
@@ -50,12 +50,12 @@ var devConfig = {
50
50
  '/rs/pay': {
51
51
  target: 'http://localhost:8080'
52
52
  },
53
- // '/api/af-revenue': {
54
- // pathRewrite: {
55
- // '/api/af-revenue': '/af-revenue'
56
- // },
57
- // target: "http://localhost:8080"
58
- // },
53
+ '/api/af-revenue': {
54
+ pathRewrite: {
55
+ '/api/af-revenue': ''
56
+ },
57
+ target: "http://localhost:9026"
58
+ },
59
59
  '/api': {
60
60
  target: serverRul
61
61
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sale-client",
3
- "version": "4.3.29",
3
+ "version": "4.3.31",
4
4
  "description": "收费模块前台组件",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -325,6 +325,15 @@ let asyncTransferManage = async function (self) {
325
325
  self.model.f_use_type = self.config.billType
326
326
  self.model.f_bill_type = self.model.f_print
327
327
  self.hasValidateBill = self.config.hasBillManage
328
+ if (self.config.checkOwe) {
329
+ self.$resetpost('api/af-revenue/logic/sale_getOwe', {data: {f_userinfo_id: self.row.f_userinfo_id}}, {resolveMsg: null, rejectMsg: '获取欠费出错!!'}).then((res) => {
330
+ if (res.data.length > 0) {
331
+ self.$showMessage('该用户有欠费,请清缴后进行过户操作!!!')
332
+ self.owe = res.data
333
+ console.log(self.owe)
334
+ }
335
+ })
336
+ }
328
337
  }
329
338
 
330
339
  export default {
@@ -336,6 +345,7 @@ export default {
336
345
  showupload: true, // 默认显示上传附件
337
346
  hasPrint: false, // 默认打票
338
347
  hasAcceptance: false,
348
+ checkOwe: true,
339
349
  hasBillManage: false, // 默认不启用发票管理
340
350
  billType: '燃气费', // 票据类型(燃气费,其他费用,调用的发票代码不同)
341
351
  payment: '现金缴费',
@@ -347,6 +357,7 @@ export default {
347
357
  bankinfo: false,
348
358
  numspan: false,
349
359
  namespan: false,
360
+ owe: [],
350
361
  phonespan: false,
351
362
  randomBusinessId: '',
352
363
  resid: [], // 存放新增的f_files表中id
@@ -622,6 +633,9 @@ export default {
622
633
  }
623
634
  },
624
635
  confirm () {
636
+ if (this.owe.length > 0 && this.config.checkOwe) {
637
+ return this.$showMessage('该用户有欠费,请清缴后进行过户操作!!!')
638
+ }
625
639
  this.transferdata = Object.assign({}, this.getOperateInfo())
626
640
  this.newbankname()
627
641
  this.transferdata.userinfo = Object.assign({}, this.getuserinfo())
@@ -44,6 +44,16 @@
44
44
  <input class="input_search" condition="f_user_name = '{}'" placeholder="用户姓名" style="width:60%" type="text" v-model="model.name"
45
45
  />
46
46
  </div>
47
+ <div class="form-group col-sm-3">
48
+ <label class="font_normal_body">保险到期时间</label>
49
+ <datepicker placeholder="保险到期时间"
50
+ style="width: 60%"
51
+ :value.sync="model.f_ins_stop_date"
52
+ v-model="model.f_ins_stop_date"
53
+ :format="'yyyy-MM-dd HH:mm:ss'"
54
+ condition="f_ins_stop_date <= '{}'"
55
+ ></datepicker>
56
+ </div>
47
57
  <div class="form-group col-sm-3 button-range" style="padding-right: 10px">
48
58
  <button @click="$parent.$parent.confirm()" class="button_search button_spacing"
49
59
  style="width:80px;margin-left:30px;" v-el:cx>批量选择
@@ -86,6 +96,7 @@
86
96
  <th style="text-align: center;">卡号</th>
87
97
  <th style="text-align: center;">电话</th>
88
98
  <th style="text-align: center;">地址</th>
99
+ <th style="text-align: center;">保险到期时间</th>
89
100
  </tr>
90
101
  </template>
91
102
  <template partial='body'>
@@ -95,6 +106,7 @@
95
106
  <td style="text-align: center;">{{ row.f_card_id }}</td>
96
107
  <td style="text-align: center;">{{ row.f_user_phone }}</td>
97
108
  <td style="text-align: center;">{{ row.f_address }}</td>
109
+ <td style="text-align: center;">{{ row.f_ins_stop_date }}</td>
98
110
  </template>
99
111
  <template partial='foot'></template>
100
112
  </data-grid>
@@ -125,6 +137,7 @@ export default {
125
137
  props: {
126
138
  },
127
139
  ready () {
140
+ this.$refs.paged.$refs.cri.model.f_ins_stop_date = this.$login.toStandardDateString() + ' 23:59:59'
128
141
  this.search()
129
142
  },
130
143
  methods: {
@@ -142,6 +155,7 @@ export default {
142
155
  condition = `${condition}'${select.f_userinfo_code}',`
143
156
  }
144
157
  condition = condition.substring(0, condition.length - 1) + ')'
158
+ condition = condition + this.f_orgid
145
159
  console.log('选择的用户拼接条件:', condition)
146
160
  this.$dispatch('batch-confirm', condition, selected.length)
147
161
  } else if (this.selectionMode === 'condition') {
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/meihekou/sale'
5
+ import FilialeSale from './filiale/ruihua/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'