This commit was generated by cvs2svn to compensate for changes in r4888,
[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 % if ( $cgi->param('error') ) { 
24
25   <FONT SIZE="+1" COLOR="#ff0000">Error: <% $cgi->param('error') %></FONT>
26 % } 
27
28
29 <FORM ACTION="<% popurl(1) %>process/agent_type.cgi" METHOD=POST>
30 <INPUT TYPE="hidden" NAME="typenum" VALUE="<% $agent_type->typenum %>">
31 Agent Type #<% $agent_type->typenum || "(NEW)" %>
32 <BR>
33
34 Agent Type
35 <INPUT TYPE="text" NAME="atype" SIZE=32 VALUE="<% $agent_type->atype %>">
36 <BR><BR>
37
38 Select which packages agents of this type may sell to customers<BR>
39 <% ntable("#cccccc", 2) %><TR><TD>
40 <% include('/elements/checkboxes-table.html',
41               'source_obj'    => $agent_type,
42               'link_table'    => 'type_pkgs',
43               'target_table'  => 'part_pkg',
44               'name_callback' => sub { $_[0]->pkg. ' - '. $_[0]->comment; },
45               'target_link'   => $p.'edit/part_pkg.cgi?',
46               'disable-able'  => 1,
47
48            )
49 %>
50 </TD></TR></TABLE>
51 <BR>
52
53 <INPUT TYPE="submit" VALUE="<% $agent_type->typenum ? "Apply changes" : "Add agent type" %>">
54
55     </FORM>
56
57 <% include('/elements/footer.html') %>