diff options
author | ivan <ivan> | 2008-11-22 07:10:11 +0000 |
---|---|---|
committer | ivan <ivan> | 2008-11-22 07:10:11 +0000 |
commit | 1d84feb7fe821b547e211ad03e5c200c8f218797 (patch) | |
tree | 916cb2455603b97b1092bb76eb82b81cc7ae0ce7 /httemplate/browse/part_event.html | |
parent | 55f178ee7c54120db6447fe91c5cbcaa77494f70 (diff) |
billing event cloning
Diffstat (limited to 'httemplate/browse/part_event.html')
-rw-r--r-- | httemplate/browse/part_event.html | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/httemplate/browse/part_event.html b/httemplate/browse/part_event.html index 4a0582633..674004bc7 100644 --- a/httemplate/browse/part_event.html +++ b/httemplate/browse/part_event.html @@ -144,7 +144,17 @@ my $html_init = #XXX better description 'Events are billing, collection or other actions triggered when certain '. 'customer, invoice, package or other conditions are met.<BR><BR>'. - qq!<A HREF="${p}edit/part_event.html"><I>Add a new event</I></A><BR><BR>!; + qq!<FORM METHOD="POST" ACTION="${p}edit/part_event.html">!. + qq!<A HREF="${p}edit/part_event.html"><I>Add a new event</I></A>!. + ' or <SELECT NAME="clone"><OPTION></OPTION>'; + +foreach my $part_event ( qsearch('part_event', {'diabled'=>''}) ) { + $html_init .= '<OPTION VALUE="'. $part_event->eventpart. '">'. + $part_event->event. '</OPTION>'; +} + +$html_init .= '</SELECT><INPUT TYPE="submit" VALUE="Clone existing event">'. + '</FORM><BR>'; my $count_query = 'SELECT COUNT(*) FROM part_event WHERE '. $FS::CurrentUser::CurrentUser->agentnums_sql( |