diff options
author | Mark Wells <mark@freeside.biz> | 2013-08-09 13:36:27 -0700 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2013-08-09 13:36:27 -0700 |
commit | 188ea70e3966bb70cf5b112428671473ed9f9580 (patch) | |
tree | 335a47103432289ffdd87477c076deeacc641e4a /httemplate/edit/process | |
parent | 5f25f76ab660040203be626ce62128af021d6185 (diff) |
preserve quantity when changing package type/location, #24259
Diffstat (limited to 'httemplate/edit/process')
-rw-r--r-- | httemplate/edit/process/change-cust_pkg.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/edit/process/change-cust_pkg.html b/httemplate/edit/process/change-cust_pkg.html index 9d06d8e1a..0d571defd 100644 --- a/httemplate/edit/process/change-cust_pkg.html +++ b/httemplate/edit/process/change-cust_pkg.html @@ -27,7 +27,7 @@ my $cust_pkg = qsearchs({ die 'unknown pkgnum' unless $cust_pkg; my %change = map { $_ => scalar($cgi->param($_)) } - qw( locationnum pkgpart ); + qw( locationnum pkgpart quantity ); $change{'keep_dates'} = 1; |