summaryrefslogtreecommitdiff
path: root/FS/FS/ConfDefaults.pm
blob: 21da302b821b4c80a5e390c8e1da5d93bbaffa0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
package FS::ConfDefaults;

=head1 NAME

FS::ConfDefaults - Freeside configuration default and available values

=head1 SYNOPSIS

  use FS::ConfDefaults;

  @avail_cust_fields = FS::ConfDefaults->cust_fields_avail();

=head1 DESCRIPTION

Just a small class to keep config default and available values

=head1 METHODS

=over 4

=item cust_fields_avail

Returns a list, suitable for assigning to a hash, of available values and
labels for customer fields values.

=cut

# XXX should use msgcat for "Day phone" and "Night phone", but how?
sub cust_fields_avail { (

  'Cust. Status | Customer' =>
    'Status | Last, First or Company (Last, First)',
  'Cust# | Cust. Status | Customer' =>
    'custnum | Status | Last, First or Company (Last, First)',

  'Cust. Status | Name | Company' =>
    'Status | Last, First | Company',
  'Cust# | Cust. Status | Name | Company' =>
    'custnum | Status | Last, First | Company',

  'Cust. Status | (bill) Customer | (service) Customer' =>
    'Status | Last, First or Company (Last, First) | (same for service contact if present)',
  'Cust# | Cust. Status | (bill) Customer | (service) Customer' =>
    'custnum | Status | Last, First or Company (Last, First) | (same for service contact if present)',

  'Cust. Status | (bill) Name | (bill) Company | (service) Name | (service) Company' =>
    'Status | Last, First | Company | (same for service address if present)',
  'Cust# | Cust. Status | (bill) Name | (bill) Company | (service) Name | (service) Company' =>
    'custnum | Status | Last, First | Company | (same for service address if present)',

  'Cust# | Cust. Status | Name | Company | Address 1 | Address 2 | City | State | Zip | Country | Day phone | Night phone | Invoicing email(s)' => 
    'custnum | Status | Last, First | Company | (all address fields ) | Day phone | Night phone | Invoicing email(s)',

  'Cust# | Name | Address 1 | Address 2 | City | State | Zip | Country | Day phone | Night phone | Fax number | Invoicing email(s) | Payment Type' => 
    'custnum | Last, First | (all address fields ) | ( all phones ) | Invoicing email(s) | Payment Type',

); }

=back

=head1 BUGS

Not yet.

=head1 SEE ALSO

L<FS::Conf>

=cut

1;