summaryrefslogtreecommitdiff
path: root/httemplate/edit/bulk-cust_pkg.html
diff options
context:
space:
mode:
Diffstat (limited to 'httemplate/edit/bulk-cust_pkg.html')
-rw-r--r--httemplate/edit/bulk-cust_pkg.html60
1 files changed, 0 insertions, 60 deletions
diff --git a/httemplate/edit/bulk-cust_pkg.html b/httemplate/edit/bulk-cust_pkg.html
deleted file mode 100644
index 2ff38ca..0000000
--- a/httemplate/edit/bulk-cust_pkg.html
+++ /dev/null
@@ -1,60 +0,0 @@
-<% include('/elements/header-popup.html', 'Bulk package change') %>
-
-<% include('/elements/init_overlib.html') %>
-
-<% include('/elements/progress-init.html',
- 'OneTrueForm',
- [qw( old_pkgpart new_pkgpart )],
- 'process/bulk-cust_pkg.cgi',
- $p.'browse/part_pkg.cgi',
- )
-%>
-
-<SCRIPT TYPE="text/javascript">
-function areyousure() {
- var warning = 'Change these packages?';
- if(confirm(warning)) {
- process();
- }
-}
-</SCRIPT>
-<FORM NAME="OneTrueForm">
-% #false laziness with bulk-cust_svc.html
-% $cgi->param('pkgpart') =~ /^(\d+)$/
-% or die "illegal pkgpart: ". $cgi->param('pkgpart');
-%
-% my $old_pkgpart = $1;
-% my $src_part_pkg = qsearchs('part_pkg', { 'pkgpart' => $old_pkgpart } )
-% or die "unknown pkgpart: $old_pkgpart";
-%
-
-
-<INPUT NAME="old_pkgpart" TYPE="hidden" VALUE="<% $old_pkgpart %>">
-Change <B><% $src_part_pkg->pkg_comment %></B><BR>
-
-to new package definition
-<SELECT NAME="new_pkgpart">
-% foreach my $dest_part_pkg ( qsearch('part_pkg', { 'disabled' => '' } ) ) {
-
- <OPTION VALUE="<% $dest_part_pkg->pkgpart %>"><% $dest_part_pkg->pkgpart %>: <% $dest_part_pkg->pkg %>
-% }
-
-</SELECT>
-<BR>
-<BR>
-%#<INPUT TYPE="checkbox" NAME="keep_dates" CHECKED> Preserve all billing dates <I>(strongly recommended)</I>
-%#<BR>
-%#<BR>
-
-<INPUT TYPE="button" VALUE="Bulk change packages" onclick="areyousure()">
-
-</FORM>
-
-<% include('/elements/footer.html') %>
-
-<%init>
-
-die "access denied"
- unless $FS::CurrentUser::CurrentUser->access_right('Configuration');
-
-</%init>