diff options
| author | Jonathan Prykop <jonathan@freeside.biz> | 2016-01-29 20:24:46 -0600 |
|---|---|---|
| committer | Jonathan Prykop <jonathan@freeside.biz> | 2016-01-30 14:48:17 -0600 |
| commit | 0ef2dee417147582084f925bc5d62cf13d41801d (patch) | |
| tree | d5c3e40b6354886788556957e9beeb9e4355cc37 /httemplate/edit/process | |
| parent | 98298f640d54b04f93e702a80a58e10525193b1e (diff) | |
RT#39831 Quotation extra information for line items
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> |
