ho ho ho, merry XSSmas
[freeside.git] / httemplate / edit / agent_type.cgi
1 %
2 %
3 %my($agent_type);
4 %if ( $cgi->param('error') ) {
5 %  $agent_type = new FS::agent_type ( {
6 %    map { $_, scalar($cgi->param($_)) } fields('agent')
7 %  } );
8 %} elsif ( $cgi->keywords ) { #editing
9 %  my( $query ) = $cgi->keywords;
10 %  $query =~ /^(\d+)$/;
11 %  $agent_type=qsearchs('agent_type',{'typenum'=>$1});
12 %} else { #adding
13 %  $agent_type = new FS::agent_type {};
14 %}
15 %my $action = $agent_type->typenum ? 'Edit' : 'Add';
16 %
17 %
18 <% include("/elements/header.html","$action Agent Type", menubar(
19   'Main Menu' => "$p",
20   'View all agent types' => "${p}browse/agent_type.cgi",
21 ))
22 %>
23
24 <% include('/elements/error.html') %>
25
26 <FORM ACTION="<% popurl(1) %>process/agent_type.cgi" METHOD=POST>
27 <INPUT TYPE="hidden" NAME="typenum" VALUE="<% $agent_type->typenum %>">
28 Agent Type #<% $agent_type->typenum || "(NEW)" %>
29 <BR>
30
31 Agent Type
32 <INPUT TYPE="text" NAME="atype" SIZE=32 VALUE="<% $agent_type->atype %>">
33 <BR><BR>
34
35 Select which packages agents of this type may sell to customers<BR>
36 <% ntable("#cccccc", 2) %><TR><TD>
37 <% include('/elements/checkboxes-table.html',
38               'source_obj'    => $agent_type,
39               'link_table'    => 'type_pkgs',
40               'target_table'  => 'part_pkg',
41               'name_callback' => sub { $_[0]->pkg. ' - '. $_[0]->comment; },
42               'target_link'   => $p.'edit/part_pkg.cgi?',
43               'disable-able'  => 1,
44
45            )
46 %>
47 </TD></TR></TABLE>
48 <BR>
49
50 <INPUT TYPE="submit" VALUE="<% $agent_type->typenum ? "Apply changes" : "Add agent type" %>">
51
52     </FORM>
53
54 <% include('/elements/footer.html') %>