diff --git a/app/templates/components/forms/orders/order-form.hbs b/app/templates/components/forms/orders/order-form.hbs index a0ffdf4215b..f63725acd9c 100644 --- a/app/templates/components/forms/orders/order-form.hbs +++ b/app/templates/components/forms/orders/order-form.hbs @@ -81,51 +81,45 @@ {{/each}} {{#if isPaidOrder}}
- {{ui-checkbox label=(t 'Enable Billing Information') checked=data.isBillingEnabled - onChange=(action (mut data.isBillingEnabled))}} + + {{input type='text' id='company' value=data.company}} +
+
+ + {{input type='text' id='taxBusinessInfo' value=data.taxBusinessInfo}} +
+
+ + {{textarea rows='2' id='address' value=data.address}} +
+
+ + {{input type='text' id='city' value=data.city}} +
+
+ + {{input type='text' id='state' value=data.state}} +
+
+ + {{input type='text' id='zip_code' value=data.zipcode}} +
+
+ + {{#ui-dropdown class="search selection" selected=data.country + onChange=(action (mut data.country)) as |execute mapper|}} +
{{t 'Select country'}}
+ + + {{/ui-dropdown}}
- {{#if data.isBillingEnabled}} -
- - {{input type='text' id='company' value=data.company}} -
-
- - {{input type='text' id='taxBusinessInfo' value=data.taxBusinessInfo}} -
-
- - {{textarea rows='2' id='address' value=data.address}} -
-
- - {{input type='text' id='city' value=data.city}} -
-
- - {{input type='text' id='state' value=data.state}} -
-
- - {{input type='text' id='zip_code' value=data.zipcode}} -
-
- - {{#ui-dropdown class="search selection" selected=data.country - onChange=(action (mut data.country)) as |execute mapper|}} -
{{t 'Select country'}}
- - - {{/ui-dropdown}} -
- {{/if}}

{{t 'Payment Method'}}