better display/edit of contacts on customer view, RT#16819
[freeside.git] / httemplate / edit / process / cust_main-contacts.html
1 <% include('elements/process.html',
2      'table'          => 'cust_main',
3      'error_redirect' => popurl(3). 'edit/cust_main-contacts.html?',
4      'agent_virt'     => 1,
5      'skip_process'   => 1, #we don't want to make any changes to cust_main
6      'process_o2m' => {
7        'table'  => 'contact',
8        'fields' => \@contact_fields,
9      },
10      'redirect' => popurl(3). 'view/cust_main.cgi?',
11    )
12 %>
13 <%init>
14
15 my @contact_fields = qw( classnum first last title comment emailaddress );
16 foreach my $phone_type ( qsearch({table=>'phone_type', order_by=>'weight'}) ) {
17   push @contact_fields, 'phonetypenum'.$phone_type->phonetypenum;
18 }
19
20 </%init>