system-clients 3.2.56-furuike → 3.2.57-furuike
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
@@ -404,12 +404,12 @@ export default {
|
|
404
404
|
}
|
405
405
|
if (this.$login.f.orgs == '集团公司' || this.$login.f.orgs == '富瑞能源'){
|
406
406
|
data = {
|
407
|
-
condition: `overday >= 0 and defname in ('维修员接单',' 站点接单','派单员接单','话务员派单','催单接收','维护接收','修改接收') and (f_state != '撤销' or f_state is null or f_state = '')
|
407
|
+
condition: `overday >= 0 and defname in ('维修员接单',' 站点接单','派单员接单','话务员派单','催单接收','维护接收','修改接收') and (f_state != '撤销' or f_state is null or f_state = '')`
|
408
408
|
}
|
409
409
|
}else {
|
410
410
|
const f_filialeids = this.$login.f.orgid;
|
411
411
|
data = {
|
412
|
-
condition: `f_filiale_id in ('${f_filialeids}') and overday >= 0 and defname in ('维修员接单',' 站点接单','派单员接单','话务员派单','催单接收','维护接收','修改接收') and (f_state != '撤销' or f_state is null or f_state = '')
|
412
|
+
condition: `f_filiale_id in ('${f_filialeids}') and overday >= 0 and defname in ('维修员接单',' 站点接单','派单员接单','话务员派单','催单接收','维护接收','修改接收') and (f_state != '撤销' or f_state is null or f_state = '')`
|
413
413
|
}
|
414
414
|
}
|
415
415
|
new HttpResetClass().load('POST','rs/sql/serviceDetails/n', {data}, {resolveMsg: null, rejectMsg: null}).then(res=>{
|