manage-client 3.3.202 → 3.3.203
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
|
@@ -340,7 +340,8 @@
|
|
|
340
340
|
props: ['data'],
|
|
341
341
|
data() {
|
|
342
342
|
return {
|
|
343
|
-
model: new PagedList('
|
|
343
|
+
model: new PagedList('/rs/sql/getExceptionList',20,{startDate: 'this.model.startDate', endDate: 'this.model.endDate'}),
|
|
344
|
+
// model: new PagedList('/api/af-revenue/sql/getExceptionList',20,{startDate: 'this.model.startDate', endDate: 'this.model.endDate'}),
|
|
344
345
|
reportStr: null,
|
|
345
346
|
show: false,
|
|
346
347
|
startDate: '',
|
|
@@ -372,9 +373,9 @@
|
|
|
372
373
|
isActiveTotalForm: false,
|
|
373
374
|
GetErrorLevel:[],
|
|
374
375
|
GetErrorType:[],
|
|
375
|
-
condition: '1=1',
|
|
376
|
+
condition: '1=1 and f_error_type IS NOT NULL and f_error_level IS NOT NULL',
|
|
376
377
|
org:[this.$login.f.orgid],
|
|
377
|
-
orgCondtionStr: ` and f_orgid = ${this.$login.f.orgid}`
|
|
378
|
+
orgCondtionStr: ` and f_orgid = ${this.$login.f.orgid} `
|
|
378
379
|
}
|
|
379
380
|
},
|
|
380
381
|
ready() {
|
|
@@ -395,10 +396,10 @@
|
|
|
395
396
|
},
|
|
396
397
|
getorg(obj) {
|
|
397
398
|
if (obj.resids.length>0) {
|
|
398
|
-
this.orgCondtionStr = " and f_orgid in " + plugin.convertToIn(obj.resids)
|
|
399
|
+
this.orgCondtionStr = " and f_orgid in " + plugin.convertToIn(obj.resids) + " and f_error_type IS NOT NULL and f_error_level IS NOT NULL "
|
|
399
400
|
}else
|
|
400
401
|
{
|
|
401
|
-
this.orgCondtionStr = " and f_orgid = " + this.$login.f.orgid
|
|
402
|
+
this.orgCondtionStr = " and f_orgid = " + this.$login.f.orgid + " and f_error_type IS NOT NULL and f_error_level IS NOT NULL "
|
|
402
403
|
}
|
|
403
404
|
},
|
|
404
405
|
initParams () {
|