123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199 |
- class OnlyOneGroup < ActiveRecord::Migration
- def up
- ObjectManager::Attribute.add(
- force: true,
- object: 'Ticket',
- name: 'group_id',
- display: 'Group',
- data_type: 'select',
- data_option: {
- default: '',
- relation: 'Group',
- relation_condition: { access: 'rw' },
- nulloption: true,
- multiple: false,
- null: false,
- translate: false,
- only_shown_if_selectable: true,
- },
- editable: false,
- active: true,
- screens: {
- create_middle: {
- '-all-' => {
- null: false,
- item_class: 'column',
- },
- },
- edit: {
- Agent: {
- null: false,
- },
- },
- },
- to_create: false,
- to_migrate: false,
- to_delete: false,
- position: 25,
- created_by_id: 1,
- updated_by_id: 1,
- )
- ObjectManager::Attribute.add(
- force: true,
- object: 'User',
- name: 'street',
- display: 'Street',
- data_type: 'input',
- data_option: {
- type: 'text',
- maxlength: 100,
- null: true,
- },
- editable: true,
- active: false,
- screens: {
- signup: {},
- invite_agent: {},
- invite_customer: {},
- edit: {
- '-all-' => {
- null: true,
- },
- },
- view: {
- '-all-' => {
- shown: true,
- },
- },
- },
- to_create: false,
- to_migrate: false,
- to_delete: false,
- position: 1100,
- created_by_id: 1,
- updated_by_id: 1,
- )
- ObjectManager::Attribute.add(
- force: true,
- object: 'User',
- name: 'zip',
- display: 'Zip',
- data_type: 'input',
- data_option: {
- type: 'text',
- maxlength: 100,
- null: true,
- item_class: 'formGroup--halfSize',
- },
- editable: true,
- active: false,
- screens: {
- signup: {},
- invite_agent: {},
- invite_customer: {},
- edit: {
- '-all-' => {
- null: true,
- },
- },
- view: {
- '-all-' => {
- shown: true,
- },
- },
- },
- to_create: false,
- to_migrate: false,
- to_delete: false,
- position: 1200,
- created_by_id: 1,
- updated_by_id: 1,
- )
- ObjectManager::Attribute.add(
- force: true,
- object: 'User',
- name: 'city',
- display: 'City',
- data_type: 'input',
- data_option: {
- type: 'text',
- maxlength: 100,
- null: true,
- item_class: 'formGroup--halfSize',
- },
- editable: true,
- active: false,
- screens: {
- signup: {},
- invite_agent: {},
- invite_customer: {},
- edit: {
- '-all-' => {
- null: true,
- },
- },
- view: {
- '-all-' => {
- shown: true,
- },
- },
- },
- to_create: false,
- to_migrate: false,
- to_delete: false,
- position: 1300,
- created_by_id: 1,
- updated_by_id: 1,
- )
- ObjectManager::Attribute.add(
- force: true,
- object: 'User',
- name: 'address',
- display: 'Address',
- data_type: 'textarea',
- data_option: {
- type: 'text',
- maxlength: 500,
- null: true,
- item_class: 'formGroup--halfSize',
- },
- editable: true,
- active: true,
- screens: {
- signup: {},
- invite_agent: {},
- invite_customer: {},
- edit: {
- '-all-' => {
- null: true,
- },
- },
- view: {
- '-all-' => {
- shown: true,
- },
- },
- },
- to_create: false,
- to_migrate: false,
- to_delete: false,
- position: 1350,
- created_by_id: 1,
- updated_by_id: 1,
- )
- list = []
- User.all { |user|
- next if !user.zip.empty? && !user.city.empty? && !user.street.empty?
- #next if !user.address.empty?
- list.push user
- }
- list
- end
- end
|