sale-client 3.6.468 → 3.6.469

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
@@ -0,0 +1,2 @@
1
+ #Thu Dec 12 12:54:07 CST 2024
2
+ gradle.version=5.2.1
Binary file
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sale-client",
3
- "version": "3.6.468",
3
+ "version": "3.6.469",
4
4
  "description": "收费模块前台组件",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -60,7 +60,7 @@
60
60
  <td style="text-align:center"><nobr>{{row.f_hand_date}}</nobr></td>
61
61
  <th style="text-align:center"><nobr>{{row.f_jval}}</nobr></th>
62
62
  <th style="text-align:center"><nobr>{{row.f_tablebase}}</nobr></th>
63
- <th style="text-align:center"><nobr>{{row.f_valvestate == 0 ? '开阀' : '关阀'}}</nobr></th>
63
+ <th style="text-align:center"><nobr>{{row.f_valvestate == 0 ? '开阀' : row.f_valvestate === '1' ? '关阀' : '未上报'}}</nobr>
64
64
  <th style="text-align:center"><nobr>{{row.f_upload_type}}</nobr></th>
65
65
  <th style="text-align:center"><nobr>{{row.f_insert_date}}</nobr></th>
66
66
  <th style="text-align:center"><nobr>{{row.f_meterdebitamt}}</nobr></th>
@@ -697,8 +697,11 @@ export default {
697
697
  }
698
698
  this.$resetpost(url, {data: data}, {resolveMsg: '生成欠费成功', rejectMsg: '生成欠费失败'}).then((res) => {
699
699
  console.log('成功')
700
- this.$showAlert('换表失败,欠费已生成,清欠后请重新执行换表操作!!', 'error', 3)
700
+
701
701
  if (this.model.metermessage.f_meter_type[0] != '机表') {
702
+ console.log('换表失败,该表已产生欠费,清欠后重新进行换表操作1!')
703
+ this.$showAlert('换表失败,该表已产生欠费,请清欠后,重新进行换表操作!', 'warning', 5000)
704
+ console.log('换表失败,该表已产生欠费,清欠后重新进行换表操作2!')
702
705
  this.$dispatch('refresh')
703
706
  } else {
704
707
  this.saveobj()
@@ -893,8 +896,10 @@ export default {
893
896
  }
894
897
  this.$resetpost(url, {data: data}, {resolveMsg: '生成欠费成功', rejectMsg: '生成欠费失败'}).then((res) => {
895
898
  console.log('成功')
896
- this.$showAlert('换表失败,欠费已生成,清欠后请重新执行换表操作!!', 'error', 3)
897
899
  if (this.row.f_meter_type.includes('物联网表')) {
900
+ console.log('换表失败,该表已产生欠费,清欠后重新进行换表操作1!')
901
+ this.$showAlert('换表失败,该表已产生欠费,请清欠后,重新进行换表操作!', 'warning', 5000)
902
+ console.log('换表失败,该表已产生欠费,清欠后重新进行换表操作2!')
898
903
  this.$dispatch('refresh')
899
904
  } else {
900
905
  this.$dispatch('resflushrowdata')
@@ -0,0 +1,61 @@
1
+ <template>
2
+ <div class="auto">
3
+ <validator name='v'>
4
+ <form novalidate class="form-horizontal">
5
+ <p class="bg-info text-center" style="padding: 8px;font-size: 20px">操作记录</p>
6
+ <!-- <data-grid :model="inData" v-ref:grid partial='list'>
7
+ <template partial='head'>-->
8
+ <table class="list_area table_sy" style="width: 600px">
9
+ <tr>
10
+ <th style="text-align: center">序号</th>
11
+ <th style="text-align: center">修改内容</th>
12
+ <th style="text-align: center">变更前</th>
13
+ <th style="text-align: center">变更后</th>
14
+ <th style="text-align: center">状态</th>
15
+ <th style="text-align: center">修改时间</th>
16
+ <th style="text-align: center">操作人</th>
17
+ </tr>
18
+
19
+ <tr v-for="row in recordlist">
20
+ <td style="text-align: center;">{{$index + 1}}</td>
21
+ <td style="text-align: center;">{{row.chinesename}}</td>
22
+ <td style="text-align: center;">{{row.oldvalue}}</td>
23
+ <td style="text-align: center;">{{row.newvalue}}</td>
24
+ <td style="text-align: center;">{{row.state}}</td>
25
+ <td style="text-align: center;">{{row.modifitime}}</td>
26
+ <td style="text-align: center;">{{row.operator}}</td>
27
+ </tr>
28
+ </table>
29
+ </form>
30
+
31
+ </validator>
32
+ </div>
33
+ </template>
34
+
35
+ <script>
36
+ export default {
37
+ name: 'addwarehouse',
38
+
39
+ data () {
40
+ return {
41
+ inData: [],
42
+ obj: {},
43
+ userid: this.$login.f.id
44
+
45
+ }
46
+ },
47
+ props: {
48
+ recordlist: Array
49
+ },
50
+ created () {
51
+ },
52
+ ready () {
53
+ },
54
+ methods: {
55
+
56
+ }
57
+ }
58
+ </script>
59
+
60
+ <style lang="less">
61
+ </style>
@@ -20,6 +20,36 @@
20
20
  <input type="text" class="input_search" style="width:60%" v-model="model.f_user_name" placeholder='客户名称'
21
21
  @keyup.enter="$parent.$parent.clean()" condition="f_user_name like '%{}%'">
22
22
  </div>
23
+ <div class="col-sm-3 form-group" >
24
+ <label class="font_normal_body">小&emsp;&emsp;区</label>
25
+ <input type="text" class="input_search" v-model="model.f_residential_area" placeholder='小区'
26
+ condition="f_residential_area = '{}'" style="width:60%"
27
+ >
28
+ </div>
29
+ <div class="col-sm-3 form-group" >
30
+ <label class="font_normal_body">楼&emsp;&emsp;号</label>
31
+ <input type="text" class="input_search" v-model="model.f_building" placeholder='楼号'
32
+ condition="f_building = '{}'" style="width:60%"
33
+ >
34
+ </div>
35
+ <div class="col-sm-3 form-group" >
36
+ <label class="font_normal_body" >单&emsp;&emsp;元</label>
37
+ <input type="text" class="input_search" v-model="model.f_unit" placeholder='单元'
38
+ condition="f_unit = '{}'" style="width:60%"
39
+ >
40
+ </div>
41
+ <div class="col-sm-3 form-group" >
42
+ <label class="font_normal_body" >楼&emsp;&emsp;层</label>
43
+ <input type="text" class="input_search" v-model="model.f_floor" placeholder='楼层'
44
+ condition="f_floor = '{}'" style="width:60%"
45
+ >
46
+ </div>
47
+ <div class="col-sm-3 form-group" >
48
+ <label class="font_normal_body">门&ensp;牌&ensp;号</label>
49
+ <input type="text" class="input_search" v-model="model.f_room" placeholder='门牌号'
50
+ condition="f_room = '{}'" style="width:60%"
51
+ >
52
+ </div>
23
53
  <!--<div class="row" >-->
24
54
  <div v-show="$parent.$parent.criteriaShow">
25
55
  <!--<div class="form-group col-sm-4" v-if="$parent.$parent.clientWidth<1600">-->
@@ -77,7 +77,7 @@
77
77
  async getsalerecord () {
78
78
  let http = new HttpResetClass()
79
79
  // this.condition = `1=1 and f_user_id = '${this.searchdata.f_user_id}'`
80
- this.condition = `1=1 and f_userfiles_id = '${this.searchdata.f_userfiles_id}'`
80
+ this.condition = `1=1 and f_userinfo_id = '${this.searchdata.f_userinfo_id}'`
81
81
  let record = await http.load('POST', 'rs/sql/sale_RecordQuery', {data: {condition: this.condition}}, {
82
82
  rejectMsg: '流水查询出错!!',
83
83
  resolveMsg: null