diff options
author | Ivan Kohler <ivan@freeside.biz> | 2016-02-02 09:10:37 -0800 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2016-02-02 09:10:37 -0800 |
commit | 818ae79719404b6b7a665872e0f7b57a6716a193 (patch) | |
tree | 675956a1f04c2d5feafbbf21fa4c44fc602e7632 /httemplate/edit/process | |
parent | b75eefd0de474bc68eb271e122f0895a78dabc28 (diff) | |
parent | 67ca665cce866aff8c4f1fecd700c44c5e63c2a0 (diff) |
Merge branch 'FREESIDE_3_BRANCH' of git.freeside.biz:/home/git/freeside into FREESIDE_3_BRANCH
Diffstat (limited to 'httemplate/edit/process')
-rw-r--r-- | httemplate/edit/process/quotation_pkg_detail.html | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/httemplate/edit/process/quotation_pkg_detail.html b/httemplate/edit/process/quotation_pkg_detail.html index 2fc420280..9e4ac3222 100644 --- a/httemplate/edit/process/quotation_pkg_detail.html +++ b/httemplate/edit/process/quotation_pkg_detail.html @@ -40,6 +40,9 @@ for ( my $row = 0; exists($param->{"detail$row"}); $row++ ) { if $param->{"detail$row"} =~ /\S/; } -my $error = $quotation_pkg->set_details(@details); +my $error = $quotation_pkg->set_details( + details => \@details, + copy_on_order => scalar($cgi->param('copy_on_order')) ? 'Y' : '' + ); </%init> |