blob: a999e4d74818aab76d89689c7a94a1c9bad6e93b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<% include('elements/process.html',
'table' => 'cust_main',
'error_redirect' => popurl(3). 'edit/cust_payby.html?',
'agent_virt' => 1,
'skip_process' => 1, #we don't want to make any changes to cust_main
'process_o2m' => {
'table' => 'cust_payby',
'fields' => \@payby_fields,
},
'redirect' => popurl(3). 'view/cust_main.cgi?',
)
%>
<%init>
#XXX
my @payby_fields = qw();
}
</%init>
|