diff options
author | levinse <levinse> | 2011-06-08 05:38:55 +0000 |
---|---|---|
committer | levinse <levinse> | 2011-06-08 05:38:55 +0000 |
commit | 9a59cc9d51350d7eefb25697cd0d99188f686ea5 (patch) | |
tree | 76323a99701f5bd702663b228813c7b1b6a79c3b /httemplate/edit/did_order.html | |
parent | c647fbae23dc64cdecb1c6fa6fee671cca7e8e7a (diff) |
DID inventory/import / bulk DID orders - phase 2, RT12754
Diffstat (limited to 'httemplate/edit/did_order.html')
-rw-r--r-- | httemplate/edit/did_order.html | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/httemplate/edit/did_order.html b/httemplate/edit/did_order.html index 5837d438c..6912117de 100644 --- a/httemplate/edit/did_order.html +++ b/httemplate/edit/did_order.html @@ -12,6 +12,12 @@ { field => 'confirmed', type => 'hidden', }, + { field => 'received', + type => 'hidden', + }, + { field => 'submitted', + type => 'hidden', + }, { field => 'stock_or_customer', type => 'radio', options => [ 'Stock', 'Customer', ], @@ -104,12 +110,12 @@ my $javascript = <<END; if ( f.stock_or_customer_Stock.checked ) { custnum_search.disabled = true; custnum_select.disabled = true; + custnum.value = ''; } else if ( f.stock_or_customer_Customer.checked ) { custnum_search.disabled = false; custnum_select.disabled = false; } - custnum.value = ''; } /* o2m or something else is broken, can't put this in the actual |