summaryrefslogtreecommitdiff
path: root/httemplate/elements/tr-input-pkg-quantity.html
diff options
context:
space:
mode:
authorMark Wells <mark@freeside.biz>2013-08-09 13:36:43 -0700
committerMark Wells <mark@freeside.biz>2013-08-09 13:36:43 -0700
commit98ea745e4b55a38ad8b5ba3749c56327d641d65d (patch)
treee7a1f0a2c4e3bc6c77f111c67f7994a6b61b1714 /httemplate/elements/tr-input-pkg-quantity.html
parent2a49a712c97e5b5a012a91ff4bc2c0518c2af6d6 (diff)
preserve quantity when changing package type/location, #24259
Diffstat (limited to 'httemplate/elements/tr-input-pkg-quantity.html')
-rw-r--r--httemplate/elements/tr-input-pkg-quantity.html15
1 files changed, 15 insertions, 0 deletions
diff --git a/httemplate/elements/tr-input-pkg-quantity.html b/httemplate/elements/tr-input-pkg-quantity.html
new file mode 100644
index 000000000..7ade57399
--- /dev/null
+++ b/httemplate/elements/tr-input-pkg-quantity.html
@@ -0,0 +1,15 @@
+% if ( FS::Conf->new->exists('invoice-unitprice') or $curr_value > 1 ) {
+ <TR>
+ <TH ALIGN="right"><% mt('Quantity') |h %>
+ </TH>
+ <TD>
+ <INPUT TYPE="text" NAME="quantity" SIZE=4 VALUE="<% $curr_value |h %>">
+ </TD>
+ </TR>
+% } else {
+ <INPUT TYPE="hidden" NAME="quantity" VALUE="1">
+% }
+<%init>
+my %opt = @_;
+my $curr_value = $cgi->param('quantity') || $opt{'curr_value'} || 1;
+</%init>