@neutron.co.id/operasional-interfaces 1.17.36 → 1.17.37

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.
@@ -278,13 +278,13 @@
278
278
  :query="Query.define(roleStaffOptions)"
279
279
  :is-disabled="
280
280
  values.status === 'processed' ||
281
- values.status === 'waitForAudit' ||
281
+ (values.status === 'waitForAudit' &&
282
+ values.hasProcessStaffIds?.includes(staff?.id || '')) ||
282
283
  values.status === 'approved' ||
283
284
  values.status === 'delay' ||
284
285
  values.status === 'monitored' ||
285
286
  values.status === 'discontinued' ||
286
- values.status === 'resolved' ||
287
- values.hasProcessStaffIds?.length
287
+ values.status === 'resolved'
288
288
  ? true
289
289
  : false
290
290
  "
@@ -440,7 +440,8 @@
440
440
  toolbar="side"
441
441
  :is-readonly="
442
442
  values.status === 'processed' ||
443
- values.status === 'waitForAudit' ||
443
+ (values.status === 'waitForAudit' &&
444
+ values.hasProcessStaffIds?.includes(staff?.id || '')) ||
444
445
  values.status === 'approved' ||
445
446
  values.status === 'monitored' ||
446
447
  values.status === 'discontinued' ||