123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777 |
- class FixedAdminUserPermission920 < ActiveRecord::Migration[4.2]
- def up
- # return if it's a new setup
- return if !Setting.find_by(name: 'system_init_done')
- ObjectManager::Attribute.add(
- force: true,
- object: 'Ticket',
- name: 'customer_id',
- display: 'Customer',
- data_type: 'user_autocompletion',
- data_option: {
- relation: 'User',
- autocapitalize: false,
- multiple: false,
- guess: true,
- null: false,
- limit: 200,
- placeholder: 'Enter Person or Organization/Company',
- minLengt: 2,
- translate: false,
- permission: ['ticket.agent'],
- },
- editable: false,
- active: true,
- screens: {
- create_top: {
- '-all-' => {
- null: false,
- },
- },
- edit: {},
- },
- to_create: false,
- to_migrate: false,
- to_delete: false,
- position: 10,
- )
- ObjectManager::Attribute.add(
- force: true,
- object: 'Ticket',
- name: 'type',
- display: 'Type',
- data_type: 'select',
- data_option: {
- default: '',
- options: {
- 'Incident' => 'Incident',
- 'Problem' => 'Problem',
- 'Request for Change' => 'Request for Change',
- },
- nulloption: true,
- multiple: false,
- null: true,
- translate: true,
- },
- editable: true,
- active: false,
- screens: {
- create_middle: {
- '-all-' => {
- null: false,
- item_class: 'column',
- },
- },
- edit: {
- 'ticket.agent' => {
- null: false,
- },
- },
- },
- to_create: false,
- to_migrate: false,
- to_delete: false,
- position: 20,
- )
- ObjectManager::Attribute.add(
- force: true,
- object: 'Ticket',
- name: 'group_id',
- display: 'Group',
- data_type: 'select',
- data_option: {
- default: '',
- relation: 'Group',
- relation_condition: { access: 'full' },
- nulloption: true,
- multiple: false,
- null: false,
- translate: false,
- only_shown_if_selectable: true,
- permission: ['ticket.agent', 'ticket.customer'],
- },
- editable: false,
- active: true,
- screens: {
- create_middle: {
- '-all-' => {
- null: false,
- item_class: 'column',
- },
- },
- edit: {
- 'ticket.agent' => {
- null: false,
- },
- },
- },
- to_create: false,
- to_migrate: false,
- to_delete: false,
- position: 25,
- )
- ObjectManager::Attribute.add(
- force: true,
- object: 'Ticket',
- name: 'owner_id',
- display: 'Owner',
- data_type: 'select',
- data_option: {
- default: '',
- relation: 'User',
- relation_condition: { roles: 'Agent' },
- nulloption: true,
- multiple: false,
- null: true,
- translate: false,
- permission: ['ticket.agent'],
- },
- editable: false,
- active: true,
- screens: {
- create_middle: {
- '-all-' => {
- null: true,
- item_class: 'column',
- },
- },
- edit: {
- '-all-' => {
- null: true,
- },
- },
- },
- to_create: false,
- to_migrate: false,
- to_delete: false,
- position: 30,
- )
- ObjectManager::Attribute.add(
- force: true,
- object: 'Ticket',
- name: 'state_id',
- display: 'State',
- data_type: 'select',
- data_option: {
- relation: 'TicketState',
- nulloption: true,
- multiple: false,
- null: false,
- default: Ticket::State.find_by(default_follow_up: true).id,
- translate: true,
- filter: Ticket::State.by_category(:viewable).pluck(:id),
- },
- editable: false,
- active: true,
- screens: {
- create_middle: {
- 'ticket.agent' => {
- null: false,
- item_class: 'column',
- filter: Ticket::State.by_category(:viewable_agent_new).pluck(:id),
- },
- 'ticket.customer' => {
- item_class: 'column',
- nulloption: false,
- null: true,
- filter: Ticket::State.by_category(:viewable_customer_new).pluck(:id),
- default: Ticket::State.find_by(name: 'new').id,
- },
- },
- edit: {
- 'ticket.agent' => {
- nulloption: false,
- null: false,
- filter: Ticket::State.by_category(:viewable_agent_edit).pluck(:id),
- },
- 'ticket.customer' => {
- nulloption: false,
- null: true,
- filter: Ticket::State.by_category(:viewable_customer_edit).pluck(:id),
- default: Ticket::State.find_by(name: 'open').id,
- },
- },
- },
- to_create: false,
- to_migrate: false,
- to_delete: false,
- position: 40,
- )
- ObjectManager::Attribute.add(
- force: true,
- object: 'Ticket',
- name: 'pending_time',
- display: 'Pending till',
- data_type: 'datetime',
- data_option: {
- future: true,
- past: false,
- diff: 24,
- null: true,
- translate: true,
- required_if: {
- state_id: Ticket::State.by_category(:pending).pluck(:id),
- },
- shown_if: {
- state_id: Ticket::State.by_category(:pending).pluck(:id),
- },
- },
- editable: false,
- active: true,
- screens: {
- create_middle: {
- '-all-' => {
- null: false,
- item_class: 'column',
- },
- },
- edit: {
- '-all-' => {
- null: false,
- },
- },
- },
- to_create: false,
- to_migrate: false,
- to_delete: false,
- position: 41,
- )
- ObjectManager::Attribute.add(
- force: true,
- object: 'Ticket',
- name: 'priority_id',
- display: 'Priority',
- data_type: 'select',
- data_option: {
- relation: 'TicketPriority',
- nulloption: false,
- multiple: false,
- null: false,
- default: Ticket::Priority.find_by(default_create: true).id,
- translate: true,
- },
- editable: false,
- active: true,
- screens: {
- create_middle: {
- 'ticket.agent' => {
- null: false,
- item_class: 'column',
- },
- },
- edit: {
- 'ticket.agent' => {
- null: false,
- },
- },
- },
- to_create: false,
- to_migrate: false,
- to_delete: false,
- position: 80,
- )
- ObjectManager::Attribute.add(
- force: true,
- object: 'Ticket',
- name: 'tags',
- display: 'Tags',
- data_type: 'tag',
- data_option: {
- type: 'text',
- null: true,
- translate: false,
- },
- editable: false,
- active: true,
- screens: {
- create_bottom: {
- 'ticket.agent' => {
- null: true,
- },
- },
- edit: {},
- },
- to_create: false,
- to_migrate: false,
- to_delete: false,
- position: 900,
- )
- ObjectManager::Attribute.add(
- force: true,
- object: 'TicketArticle',
- name: 'type_id',
- display: 'Type',
- data_type: 'select',
- data_option: {
- relation: 'TicketArticleType',
- nulloption: false,
- multiple: false,
- null: false,
- default: Ticket::Article::Type.lookup(name: 'note').id,
- translate: true,
- },
- editable: false,
- active: true,
- screens: {
- create_middle: {},
- edit: {
- 'ticket.agent' => {
- null: false,
- },
- },
- },
- to_create: false,
- to_migrate: false,
- to_delete: false,
- position: 100,
- )
- # rubocop:disable Lint/BooleanSymbol
- ObjectManager::Attribute.add(
- force: true,
- object: 'TicketArticle',
- name: 'internal',
- display: 'Visibility',
- data_type: 'select',
- data_option: {
- options: {
- true: 'internal',
- false: 'public'
- },
- nulloption: false,
- multiple: false,
- null: true,
- default: false,
- translate: true,
- },
- editable: false,
- active: true,
- screens: {
- create_middle: {},
- edit: {
- 'ticket.agent' => {
- null: false,
- },
- },
- },
- to_create: false,
- to_migrate: false,
- to_delete: false,
- position: 200,
- )
- # rubocop:enable Lint/BooleanSymbol
- ObjectManager::Attribute.add(
- force: true,
- object: 'TicketArticle',
- name: 'to',
- display: 'To',
- data_type: 'input',
- data_option: {
- type: 'text',
- maxlength: 1000,
- null: true,
- },
- editable: false,
- active: true,
- screens: {
- create_middle: {},
- edit: {
- 'ticket.agent' => {
- null: true,
- },
- },
- },
- to_create: false,
- to_migrate: false,
- to_delete: false,
- position: 300,
- )
- ObjectManager::Attribute.add(
- force: true,
- object: 'TicketArticle',
- name: 'cc',
- display: 'Cc',
- data_type: 'input',
- data_option: {
- type: 'text',
- maxlength: 1000,
- null: true,
- },
- editable: false,
- active: true,
- screens: {
- create_top: {},
- create_middle: {},
- edit: {
- 'ticket.agent' => {
- null: true,
- },
- },
- },
- to_create: false,
- to_migrate: false,
- to_delete: false,
- position: 400,
- )
- ObjectManager::Attribute.add(
- force: true,
- object: 'TicketArticle',
- name: 'body',
- display: 'Text',
- data_type: 'richtext',
- data_option: {
- type: 'richtext',
- maxlength: 20_000,
- upload: true,
- rows: 8,
- null: true,
- },
- editable: false,
- active: true,
- screens: {
- create_top: {
- '-all-' => {
- null: false,
- },
- },
- edit: {
- '-all-' => {
- null: true,
- },
- },
- },
- to_create: false,
- to_migrate: false,
- to_delete: false,
- position: 600,
- )
- ObjectManager::Attribute.add(
- force: true,
- object: 'User',
- name: 'password',
- display: 'Password',
- data_type: 'input',
- data_option: {
- type: 'password',
- maxlength: 100,
- null: true,
- autocomplete: 'off',
- item_class: 'formGroup--halfSize',
- },
- editable: false,
- active: true,
- screens: {
- signup: {
- '-all-' => {
- null: false,
- },
- },
- invite_agent: {},
- invite_customer: {},
- edit: {
- 'admin.user' => {
- null: true,
- },
- },
- view: {}
- },
- to_create: false,
- to_migrate: false,
- to_delete: false,
- position: 1400,
- )
- # rubocop:disable Lint/BooleanSymbol
- ObjectManager::Attribute.add(
- force: true,
- object: 'User',
- name: 'vip',
- display: 'VIP',
- data_type: 'boolean',
- data_option: {
- null: true,
- default: false,
- item_class: 'formGroup--halfSize',
- options: {
- false: 'no',
- true: 'yes',
- },
- translate: true,
- permission: ['admin.user', 'ticket.agent'],
- },
- editable: false,
- active: true,
- screens: {
- edit: {
- '-all-' => {
- null: true,
- },
- },
- view: {
- '-all-' => {
- shown: false,
- },
- },
- },
- to_create: false,
- to_migrate: false,
- to_delete: false,
- position: 1490,
- )
- # rubocop:enable Lint/BooleanSymbol
- ObjectManager::Attribute.add(
- force: true,
- object: 'User',
- name: 'role_ids',
- display: 'Permissions',
- data_type: 'user_permission',
- data_option: {
- null: false,
- item_class: 'checkbox',
- permission: ['admin.user'],
- },
- editable: false,
- active: true,
- screens: {
- signup: {},
- invite_agent: {
- '-all-' => {
- null: false,
- default: [Role.lookup(name: 'Agent').id],
- },
- },
- invite_customer: {},
- edit: {
- '-all-' => {
- null: true,
- },
- },
- view: {
- '-all-' => {
- shown: false,
- },
- },
- },
- to_create: false,
- to_migrate: false,
- to_delete: false,
- position: 1600,
- )
- ObjectManager::Attribute.add(
- force: true,
- object: 'User',
- name: 'active',
- display: 'Active',
- data_type: 'active',
- data_option: {
- null: true,
- default: true,
- permission: ['admin.user', 'ticket.agent'],
- },
- editable: false,
- active: true,
- screens: {
- signup: {},
- invite_agent: {},
- invite_customer: {},
- edit: {
- '-all-' => {
- null: false,
- },
- },
- view: {
- '-all-' => {
- shown: false,
- },
- },
- },
- to_create: false,
- to_migrate: false,
- to_delete: false,
- position: 1800,
- )
- # rubocop:disable Lint/BooleanSymbol
- ObjectManager::Attribute.add(
- force: true,
- object: 'Organization',
- name: 'shared',
- display: 'Shared organization',
- data_type: 'boolean',
- data_option: {
- null: true,
- default: true,
- note: 'Customers in the organization can view each other items.',
- item_class: 'formGroup--halfSize',
- options: {
- true: 'yes',
- false: 'no',
- },
- translate: true,
- permission: ['admin.organization'],
- },
- editable: false,
- active: true,
- screens: {
- edit: {
- '-all-' => {
- null: false,
- },
- },
- view: {
- '-all-' => {
- shown: true,
- },
- },
- },
- to_create: false,
- to_migrate: false,
- to_delete: false,
- position: 1400,
- )
- ObjectManager::Attribute.add(
- force: true,
- object: 'Organization',
- name: 'domain_assignment',
- display: 'Domain based assignment',
- data_type: 'boolean',
- data_option: {
- null: true,
- default: false,
- note: 'Assign Users based on users domain.',
- item_class: 'formGroup--halfSize',
- options: {
- true: 'yes',
- false: 'no',
- },
- translate: true,
- permission: ['admin.organization'],
- },
- editable: false,
- active: true,
- screens: {
- edit: {
- '-all-' => {
- null: false,
- },
- },
- view: {
- '-all-' => {
- shown: true,
- },
- },
- },
- to_create: false,
- to_migrate: false,
- to_delete: false,
- position: 1410,
- )
- # rubocop:enable Lint/BooleanSymbol
- ObjectManager::Attribute.add(
- force: true,
- object: 'Organization',
- name: 'active',
- display: 'Active',
- data_type: 'active',
- data_option: {
- null: true,
- default: true,
- permission: ['admin.organization'],
- },
- editable: false,
- active: true,
- screens: {
- edit: {
- '-all-' => {
- null: false,
- },
- },
- view: {
- '-all-' => {
- shown: false,
- },
- },
- },
- to_create: false,
- to_migrate: false,
- to_delete: false,
- position: 1800,
- )
- ObjectManager::Attribute.add(
- force: true,
- object: 'Group',
- name: 'active',
- display: 'Active',
- data_type: 'active',
- data_option: {
- null: true,
- default: true,
- permission: ['admin.group'],
- },
- editable: false,
- active: true,
- screens: {
- create: {
- '-all-' => {
- null: true,
- },
- },
- edit: {
- '-all-': {
- null: false,
- },
- },
- view: {
- '-all-' => {
- shown: false,
- },
- },
- },
- to_create: false,
- to_migrate: false,
- to_delete: false,
- position: 1800,
- )
- map = {
- Admin: 'admin',
- Agent: 'ticket.agent',
- Customer: 'ticket.customer',
- }
- ObjectManager::Attribute.all.each do |attribute|
- next if attribute.screens.blank?
- screens = {}
- attribute.screens.each do |screen, role_value|
- if role_value.blank?
- screens[screen] = role_value
- else
- screens[screen] = {}
- role_value.each do |role, value|
- if map[role.to_sym]
- screens[screen][map[role.to_sym]] = value
- else
- screens[screen][role] = value
- end
- end
- end
- end
- attribute.screens = screens
- attribute.save!
- end
- end
- end
|