Advertisement
psi_mmobile

Untitled

Apr 9th, 2024
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. PlannedAM: {
  2. type: 'check',
  3. name: 'plannedAm',
  4. label: 'Planned AM',
  5. resourceTypes: [resourceTypes.Person],
  6. eventType: eventTypes.Resource,
  7. style: 'font-size:14px;',
  8. // contractUnits: [101, 102, 103], // ect_granulometry_id
  9. listeners: {
  10. action: ({ source, checked }) => {
  11. source.parent.record.data.planned_am = checked ? 'Y' : 'N';
  12. }
  13. }
  14. },
  15. PlannedPM: {
  16. type: 'check',
  17. name: 'plannedPm',
  18. label: 'Planned PM',
  19. resourceTypes: [resourceTypes.Person],
  20. eventType: eventTypes.Resource,
  21. style: 'font-size:14px;',
  22. // contractUnits: [101, 102, 103], // ect_granulometry_id
  23. listeners: {
  24. action: ({ source, checked }) => {
  25. source.parent.record.data.planned_pm = checked ? 'Y' : 'N';
  26. }
  27. }
  28. },
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement