diff options
| author | Ivan Kohler <ivan@freeside.biz> | 2015-07-09 22:18:55 -0700 |
|---|---|---|
| committer | Ivan Kohler <ivan@freeside.biz> | 2015-07-09 22:18:55 -0700 |
| commit | 1c538bfabc2cd31f27067505f0c3d1a46cba6ef0 (patch) | |
| tree | 96922ad4459eda1e649327fd391d60c58d454c53 /rt/t/data/initialdata/transaction-cfs | |
| parent | 4f5619288413a185e9933088d9dd8c5afbc55dfa (diff) | |
RT 4.2.11, ticket#13852
Diffstat (limited to 'rt/t/data/initialdata/transaction-cfs')
| -rw-r--r-- | rt/t/data/initialdata/transaction-cfs | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/rt/t/data/initialdata/transaction-cfs b/rt/t/data/initialdata/transaction-cfs new file mode 100644 index 000000000..25c8274ff --- /dev/null +++ b/rt/t/data/initialdata/transaction-cfs @@ -0,0 +1,52 @@ +use strict; +use warnings; + +our @Queues = ( + { Name => "Blues" }, + { Name => "Purples" }, +); + +our @CustomFields = ( + map +{ + LookupType => RT::Transaction->CustomFieldLookupType, + MaxValues => 1, + Type => "Freeform", + %$_ + }, + { Name => "Billable", + Type => "Select", + Values => [ + { Name => "Yes", SortOrder => 1 }, + { Name => "No", SortOrder => 2 }, + ], + }, + { Name => "Who", + Type => "SelectMultiple", + Values => [ + map +{ Name => $_ }, + "Facilities", + "Information Technology", + "Library", + "Telecom", + ], + }, + { Name => "When", + Type => "Date", + }, + + # Two CFs named the same, but each applied to only one queue + # Note: Queue => ref forces RT::Handle to apply rather than + # RT::CustomField->Create; the former respects LookupType, the latter + # doesn't. + { Name => "Color", + Queue => ["Blues"], + }, + { Name => "Color", + Queue => ["Purples"], + }, + + # Some ticket CFs to test mixed searches + { Name => "Location", + LookupType => RT::Ticket->CustomFieldLookupType, + }, +); |
