diff options
author | Ivan Kohler <ivan@freeside.biz> | 2012-10-09 12:32:39 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2012-10-09 12:32:39 -0700 |
commit | 98460903530ead429f608ba6fce4eac1a8ee3cf3 (patch) | |
tree | 45b9931e70847c830ede208a2aa4ecd15df758ed /httemplate/edit | |
parent | 0f3189c19c3cb41f7daafbc102d692a8426cb427 (diff) | |
parent | a977d27ac2e9d8f8e1adbbdcfc3547bc378dde63 (diff) |
Merge branch 'master' of git.freeside.biz:/home/git/freeside
Diffstat (limited to 'httemplate/edit')
-rw-r--r-- | httemplate/edit/process/quick-cust_pkg.cgi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/httemplate/edit/process/quick-cust_pkg.cgi b/httemplate/edit/process/quick-cust_pkg.cgi index c5eee0cb8..2dadbccdc 100644 --- a/httemplate/edit/process/quick-cust_pkg.cgi +++ b/httemplate/edit/process/quick-cust_pkg.cgi @@ -64,9 +64,9 @@ die 'no custnum or prospectnum' unless $cust_main || $prospect_main; $cgi->param('pkgpart') =~ /^(\d+)$/ or die 'illegal pkgpart '. $cgi->param('pkgpart'); my $pkgpart = $1; -$cgi->param('quantity') =~ /^(\d+)$/ +$cgi->param('quantity') =~ /^(\d*)$/ or die 'illegal quantity '. $cgi->param('quantity'); -my $quantity = $1; +my $quantity = $1 || 1; $cgi->param('refnum') =~ /^(\d*)$/ or die 'illegal refnum '. $cgi->param('refnum'); my $refnum = $1; |