sale-client 3.6.131 → 3.6.133

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sale-client",
3
- "version": "3.6.131",
3
+ "version": "3.6.133",
4
4
  "description": "收费模块前台组件",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -198,7 +198,7 @@
198
198
  {
199
199
  data: {
200
200
  items: 'count(id) count',
201
- tablename: 't_sellinggas',
201
+ tablename: 't_sellinggas with(nolock)',
202
202
  condition: `f_batch_id = '${row.id}' and f_operate_date >= '${row.f_operate_date}'`
203
203
  }
204
204
  },
@@ -10,7 +10,7 @@
10
10
  <label class="font_normal_body">开始时间</label>
11
11
  <datepicker :format="'yyyy-MM-dd'" :value.sync="model.f_start_date"
12
12
  class="datepicker"
13
- condition="f_changemeter_date >= '{} 00:00:00' "
13
+ condition="f_operate_date >= '{} 00:00:00' "
14
14
  placeholder="起始时间"
15
15
  style="width:60%"
16
16
  v-model="model.f_start_date"
@@ -20,7 +20,7 @@
20
20
  <label class="font_normal_body" >结束时间</label>
21
21
  <datepicker :format="'yyyy-MM-dd'" :value.sync="model.f_end_date"
22
22
  class="datepicker"
23
- condition="f_changemeter_date <= '{} 23:59:59'"
23
+ condition="f_operate_date <= '{} 23:59:59'"
24
24
  placeholder="结束时间"
25
25
  style="width:60%"
26
26
  v-model="model.f_end_date"
@@ -28,12 +28,12 @@
28
28
  </div>
29
29
  <div class="col-sm-2 form-group">
30
30
  <label class="font_normal_body">换表类型</label>
31
- <v-select :options='$parent.$parent.changeType' :value.sync="model.f_change_type"
31
+ <v-select :options='$parent.$parent.changeType' :value.sync="model.f_type"
32
32
  close-on-select
33
- condition="f_change_type='{}'"
33
+ condition="f_type='{}'"
34
34
  placeholder='换表类型'
35
35
  style="width:60%"
36
- v-model="model.f_change_type"
36
+ v-model="model.f_type"
37
37
  ></v-select>
38
38
  </div>
39
39
  <div class="col-sm-2 form-group">
@@ -92,7 +92,6 @@
92
92
  radio: [],
93
93
  // 选中的页
94
94
  all: [],
95
- searchValue: this.$appdata.getSingleValue('综合条件查询') ? this.$appdata.getSingleValue('综合条件查询') : 'f_userfiles_id',
96
95
  // row数据
97
96
  rowsdata: [],
98
97
  fields: {'f_userinfo_code': '用户编号',
@@ -127,7 +126,7 @@
127
126
  },
128
127
  methods: {
129
128
  async search () {
130
- this.condition = `i.${this.searchValue} = '${this.row[this.searchValue]}' and u.f_orgid = '${this.$login.f.orgid}' and ${this.$refs.paged.$refs.criteria.condition}`
129
+ this.condition = `i.f_userinfo_id = '${this.row.f_userinfo_id}' and u.f_orgid = '${this.$login.f.orgid}' and ${this.$refs.paged.$refs.criteria.condition}`
131
130
  this.model.search(this.condition, this.model)
132
131
  let http = new HttpResetClass()
133
132
  let res = await http.load('POST', 'rs/sql/getChangeRecord', {
@@ -99,7 +99,7 @@
99
99
  }, ...this.$appdata.getParam('是否有效')] : [],
100
100
  // row数据
101
101
  rowsdata: [],
102
- searchValue: this.$appdata.getSingleValue('综合条件查询') ? this.$appdata.getSingleValue('综合条件查询') : 'f_userfiles_id',
102
+
103
103
  fields: {'f_userinfo_code': '客户编号', 'f_user_name': '原用户姓名', 'f_newuser_name': '新用户姓名', 'f_transfer_fees': '过户费', 'f_operate_date': '过户日期'},
104
104
  defaultfield: [
105
105
  'f_userinfo_code', 'f_user_name', 'f_newuser_name', 'f_transfer_fees', 'f_operate_date'
@@ -115,7 +115,7 @@
115
115
  },
116
116
  methods: {
117
117
  async search () {
118
- this.condition = `${this.$refs.paged.$refs.criteria.condition} and ${this.searchValue} = '${this.row[this.searchValue]}' and f_orgid = '${this.$login.f.orgid}'`
118
+ this.condition = `${this.$refs.paged.$refs.criteria.condition} and f_userinfo_id = '${this.row.f_userinfo_id}' and f_orgid = '${this.$login.f.orgid}'`
119
119
  this.model.search(this.condition, this.model)
120
120
  let http = new HttpResetClass()
121
121
  let res = await http.load('POST', 'rs/sql/sale_TransferQuery', {
@@ -181,7 +181,7 @@
181
181
  'f_card_id': '卡号',
182
182
  'f_user_phone': '电话',
183
183
  'f_address': '地址',
184
- 'f_offsite_time': '安检日期',
184
+ 'f_last_check_date': '安检日期',
185
185
  'f_parameter_value': '限购日期',
186
186
  'f_comments': '限购原因'
187
187
  }
@@ -10,7 +10,7 @@
10
10
  <label class="font_normal_body">开始时间</label>
11
11
  <datepicker :format="'yyyy-MM-dd'" :value.sync="model.f_start_date"
12
12
  class="datepicker"
13
- condition="f_changemeter_date >= '{} 00:00:00' "
13
+ condition="f_operate_date >= '{} 00:00:00' "
14
14
  placeholder="起始时间"
15
15
  style="width:60%"
16
16
  v-model="model.f_start_date"
@@ -20,7 +20,7 @@
20
20
  <label class="font_normal_body" >结束时间</label>
21
21
  <datepicker :format="'yyyy-MM-dd'" :value.sync="model.f_end_date"
22
22
  class="datepicker"
23
- condition="f_changemeter_date <= '{} 23:59:59'"
23
+ condition="f_operate_date <= '{} 23:59:59'"
24
24
  placeholder="结束时间"
25
25
  style="width:60%"
26
26
  v-model="model.f_end_date"
@@ -28,12 +28,12 @@
28
28
  </div>
29
29
  <div class="col-sm-2 form-group">
30
30
  <label class="font_normal_body">换表类型</label>
31
- <v-select :options='$parent.$parent.changeType' :value.sync="model.f_change_type"
31
+ <v-select :options='$parent.$parent.changeType' :value.sync="model.f_type"
32
32
  close-on-select
33
- condition="f_change_type='{}'"
33
+ condition="f_type='{}'"
34
34
  placeholder='换表类型'
35
35
  style="width:60%"
36
- v-model="model.f_change_type"
36
+ v-model="model.f_type"
37
37
  ></v-select>
38
38
  </div>
39
39
  <div class="col-sm-2 form-group">
@@ -76,10 +76,10 @@
76
76
  <datepicker placeholder="开始日期"
77
77
  style="width:60%"
78
78
  class="datepicker"
79
- v-model="model.f_offsite_time"
80
- :value.sync="model.f_offsite_time"
79
+ v-model="model.f_last_check_date"
80
+ :value.sync="model.f_last_check_date"
81
81
  :format="'yyyy-MM-dd'"
82
- condition="f_offsite_time >= '{} 00:00:00'"
82
+ condition="f_last_check_date >= '{} 00:00:00'"
83
83
  ></datepicker>
84
84
  </div>
85
85
  <div class="form-group" :class="{'col-sm-2':!$parent.$parent.$parent.isdetail, 'col-sm-3':$parent.$parent.$parent.isdetail}">
@@ -117,7 +117,7 @@
117
117
  <td style="text-align: center;">{{row.f_user_name}}</td>
118
118
  <td style="text-align: center;" v-show='!$parent.$parent.$parent.$parent.isdetail'>{{row.f_user_phone}}</td>
119
119
  <td style="text-align: center;">{{row.f_address}}</td>
120
- <td style="text-align: center;" v-show='!$parent.$parent.$parent.$parent.isdetail'>{{row.f_offsite_time}}</td>
120
+ <td style="text-align: center;" v-show='!$parent.$parent.$parent.$parent.isdetail'>{{row.f_last_check_date}}</td>
121
121
  <td style="text-align: center;" v-show='!$parent.$parent.$parent.$parent.isdetail'>{{row.f_parameter_value}}</td>
122
122
  <td style="text-align: center;" v-show='!$parent.$parent.$parent.$parent.isdetail'>{{row.f_comments}}</td>
123
123
  </template>
@@ -149,7 +149,7 @@
149
149
  'f_user_name': '姓名',
150
150
  'f_user_phone': '电话',
151
151
  'f_address': '地址',
152
- 'f_offsite_time': '安检日期',
152
+ 'f_last_check_date': '安检日期',
153
153
  'f_parameter_value': '限购日期',
154
154
  'f_comments': '限购原因'
155
155
  }
@@ -94,10 +94,10 @@
94
94
  <datepicker placeholder="开始日期"
95
95
  style="width:60%"
96
96
  class="datepicker"
97
- v-model="model.f_offsite_time"
98
- :value.sync="model.f_offsite_time"
97
+ v-model="model.f_last_check_date"
98
+ :value.sync="model.f_last_check_date"
99
99
  :format="'yyyy-MM-dd'"
100
- condition="f_offsite_time >= '{} 00:00:00'"
100
+ condition="f_last_check_date >= '{} 00:00:00'"
101
101
  ></datepicker>
102
102
  </div>
103
103
  <div class="form-group" :class="{'col-sm-2':!$parent.$parent.$parent.isdetail, 'col-sm-3':$parent.$parent.$parent.isdetail}">
@@ -139,7 +139,7 @@
139
139
  <td style="text-align: center;" v-show='!$parent.$parent.$parent.$parent.isdetail'>{{row.f_card_id}}</td>
140
140
  <td style="text-align: center;" v-show='!$parent.$parent.$parent.$parent.isdetail'>{{row.f_user_phone}}</td>
141
141
  <td style="text-align: center;">{{row.f_address}}</td>
142
- <td style="text-align: center;" v-show='!$parent.$parent.$parent.$parent.isdetail'>{{row.f_offsite_time}}</td>
142
+ <td style="text-align: center;" v-show='!$parent.$parent.$parent.$parent.isdetail'>{{row.f_last_check_date}}</td>
143
143
  <td style="text-align: center;" v-show='!$parent.$parent.$parent.$parent.isdetail'>{{row.f_parameter_value}}</td>
144
144
  <td style="text-align: center;" v-show='!$parent.$parent.$parent.$parent.isdetail'>{{row.f_comments}}</td>
145
145
  </template>
@@ -173,7 +173,7 @@
173
173
  'f_card_id': '卡号',
174
174
  'f_user_phone': '电话',
175
175
  'f_address': '地址',
176
- 'f_offsite_time': '安检日期',
176
+ 'f_last_check_date': '安检日期',
177
177
  'f_parameter_value': '限购日期',
178
178
  'f_comments': '限购原因'
179
179
  }