diff options
author | ivan <ivan> | 2008-10-19 00:38:09 +0000 |
---|---|---|
committer | ivan <ivan> | 2008-10-19 00:38:09 +0000 |
commit | 51d044c74ff531b744a6b570fe4a178654a0e7da (patch) | |
tree | 62f4435d7032ca93770ba035d1f94f2b0cdba2dc /httemplate/edit/agent.cgi | |
parent | 86a09d3645f2b92ecd735ce8354e5f99a64b050f (diff) |
add a master custnum field to agents, RT#2933 (roundabout)
Diffstat (limited to 'httemplate/edit/agent.cgi')
-rwxr-xr-x | httemplate/edit/agent.cgi | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/httemplate/edit/agent.cgi b/httemplate/edit/agent.cgi index 11bfc5932..0c2520510 100755 --- a/httemplate/edit/agent.cgi +++ b/httemplate/edit/agent.cgi @@ -30,6 +30,18 @@ Agent #<% $agent->agentnum ? $agent->agentnum : "(NEW)" %> </TR> <TR> + <TH ALIGN="right">Master customer</TH> + <TD> + <% include('/elements/search-cust_main.html', + 'field_name' => 'agent_custnum', + 'curr_value' => $agent->agent_custnum, + 'find_button' => 1, + ) + %> + </TD> + </TR> + + <TR> <TD ALIGN="right">Disable</TD> <TD><INPUT TYPE="checkbox" NAME="disabled" VALUE="Y"<% $agent->disabled eq 'Y' ? ' CHECKED' : '' %>></TD> </TR> |