Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- PlannedAM: {
- type: 'check',
- name: 'plannedAm',
- label: 'Planned AM',
- resourceTypes: [resourceTypes.Person],
- eventType: eventTypes.Resource,
- style: 'font-size:14px;',
- // contractUnits: [101, 102, 103], // ect_granulometry_id
- listeners: {
- action: ({ source, checked }) => {
- source.parent.record.data.planned_am = checked ? 'Y' : 'N';
- }
- }
- },
- PlannedPM: {
- type: 'check',
- name: 'plannedPm',
- label: 'Planned PM',
- resourceTypes: [resourceTypes.Person],
- eventType: eventTypes.Resource,
- style: 'font-size:14px;',
- // contractUnits: [101, 102, 103], // ect_granulometry_id
- listeners: {
- action: ({ source, checked }) => {
- source.parent.record.data.planned_pm = checked ? 'Y' : 'N';
- }
- }
- },
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement