Lines 222-235
function submitForm(form) {
Link Here
|
222 |
<h3><label for="billingplace">Billing Place:</label></h3> |
222 |
<h3><label for="billingplace">Billing Place:</label></h3> |
223 |
<select name="billingplace" id="billingplace"> |
223 |
<select name="billingplace" id="billingplace"> |
224 |
[% FOREACH billingplaceloo IN billingplaceloop %] |
224 |
[% FOREACH billingplaceloo IN billingplaceloop %] |
225 |
<option value="[% billingplaceloo.value %]" [% IF ( billingplaceloo.selected ) %]selected[% END %]>[% billingplaceloo.branchname %]</option> |
225 |
<option value="[% billingplaceloo.value %]" [% IF ( billingplaceloo.selected ) %]selected="selected"[% END %]>[% billingplaceloo.branchname %]</option> |
226 |
[% END %] |
226 |
[% END %] |
227 |
</select> |
227 |
</select> |
228 |
<h3><label for="deliveryplace">Delivery Place:</label></h3> |
228 |
<h3><label for="deliveryplace">Delivery Place:</label></h3> |
229 |
<select name="deliveryplace" id="deliveryplace"> |
229 |
<select name="deliveryplace" id="deliveryplace"> |
230 |
<option value="">--</option> |
230 |
<option value="">--</option> |
231 |
[% FOREACH deliveryplaceloo IN deliveryplaceloop %] |
231 |
[% FOREACH deliveryplaceloo IN deliveryplaceloop %] |
232 |
<option value="[% deliveryplaceloo.value %]" [% IF ( deliveryplaceloo.selected ) %]selected[% END %]>[% deliveryplaceloo.branchname %]</option> |
232 |
<option value="[% deliveryplaceloo.value %]" [% IF ( deliveryplaceloo.selected) %]selected="selected"[% END %]>[% deliveryplaceloo.branchname %]</option> |
233 |
[% END %] |
233 |
[% END %] |
234 |
</select> |
234 |
</select> |
235 |
<p>or</p> |
235 |
<p>or</p> |
236 |
- |
|
|