summaryrefslogtreecommitdiff
path: root/httemplate/edit/agent.cgi
blob: 46ab5c705f572c37b6903fea846e3cb113d2469d (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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<% include("/elements/header.html","$action Agent", menubar(
  'Main Menu' => $p,
  'View all agents' => $p. 'browse/agent.cgi',
)) %>

<% include('/elements/error.html') %>

<FORM ACTION="<%popurl(1)%>process/agent.cgi" METHOD=POST>
<INPUT TYPE="hidden" NAME="agentnum" VALUE="<% $agent->agentnum %>">
Agent #<% $agent->agentnum ? $agent->agentnum : "(NEW)" %>

<% &ntable("#cccccc", 2, '') %>

  <TR>
    <TH ALIGN="right">Agent</TH>
    <TD><INPUT TYPE="text" NAME="agent" SIZE=32 VALUE="<% $agent->agent %>"></TD>
  </TR>

  <TR>
    <TH ALIGN="right">Agent type</TH>
    <TD>
      <SELECT NAME="typenum" SIZE=1>
%       foreach my $agent_type (qsearch('agent_type',{})) { 

          <OPTION VALUE="<% $agent_type->typenum %>"<% ( $agent->typenum && ( $agent->typenum == $agent_type->typenum ) ) ? ' SELECTED' : '' %>>
    <% $agent_type->getfield('typenum') %>: <% $agent_type->getfield('atype') %>
%       } 
  
      </SELECT>
    </TD>
  </TR>

  <TR>
    <TD ALIGN="right">Disable</TD>
    <TD><INPUT TYPE="checkbox" NAME="disabled" VALUE="Y"<% $agent->disabled eq 'Y' ? ' CHECKED' : '' %>></TD>
  </TR>

  <% include('/elements/tr-select-invoice_template.html',
               'label'      => 'Invoice template',
               'field'      => 'invoice_template',
               'curr_value' => $agent->invoice_template,
            )
  %>
  
% if ( $conf->config('ticket_system') ) {
%    my $default_queueid = $conf->config('ticket_system-default_queueid');
%    my $default_queue = FS::TicketSystem->queue($default_queueid);
%    $default_queue = "(default) $default_queueid: $default_queue"
%      if $default_queueid;
%    my %queues = FS::TicketSystem->queues();
%    my @queueids = sort { $a <=> $b } keys %queues;
%  

    <TR>
      <TD ALIGN="right">Ticketing queue</TD>
      <TD>
        <SELECT NAME="ticketing_queueid">
          <OPTION VALUE=""><% $default_queue %>
% foreach my $queueid ( @queueids ) { 

            <OPTION VALUE="<% $queueid %>" <% $agent->ticketing_queueid == $queueid ? ' SELECTED' : '' %>><% $queueid %>: <% $queues{$queueid} %>
% } 

        </SELECT>
      </TD>
    </TR>
% } 

</TABLE>

<BR>
<INPUT TYPE="submit" VALUE="<% $agent->agentnum ? "Apply changes" : "Add agent" %>">

</FORM>

<% include('/elements/footer.html') %>

<%init>

my $agent;
if ( $cgi->param('error') ) {
  $agent = new FS::agent ( {
    map { $_, scalar($cgi->param($_)) } fields('agent')
  } );
} elsif ( $cgi->keywords ) {
  my($query) = $cgi->keywords;
  $query =~ /^(\d+)$/;
  $agent = qsearchs( 'agent', { 'agentnum' => $1 } );
} else { #adding
  $agent = new FS::agent {};
}
my $action = $agent->agentnum ? 'Edit' : 'Add';

my $conf = new FS::Conf;

</%init>