|
Lines 55-61
Link Here
|
| 55 |
<td>[% invoice.description | html %]</td> |
55 |
<td>[% invoice.description | html %]</td> |
| 56 |
<td>[% invoice.default_amount | $Price %]</td> |
56 |
<td>[% invoice.default_amount | $Price %]</td> |
| 57 |
<td> |
57 |
<td> |
| 58 |
<button class="add_button" data-invoice-code="[% invoice.code | html %]" data-invoice-title="[% invoice.description | html %]" data-invoice-price="[% invoice.default_amount | html %]"><i class="fa fa-plus"></i> Add</button> |
58 |
<button type="button" class="add_button" data-invoice-code="[% invoice.code | html %]" data-invoice-title="[% invoice.description | html %]" data-invoice-price="[% invoice.default_amount | html %]"><i class="fa fa-plus"></i> Add</button> |
| 59 |
</td> |
59 |
</td> |
| 60 |
</tr> |
60 |
</tr> |
| 61 |
[% END %] |
61 |
[% END %] |
|
Lines 161-167
Link Here
|
| 161 |
</div> |
161 |
</div> |
| 162 |
<div class="modal-footer"> |
162 |
<div class="modal-footer"> |
| 163 |
<button class="btn btn-default approve" id="modal_submit" type="button"><i class="fa fa-check"></i> Yes</button> |
163 |
<button class="btn btn-default approve" id="modal_submit" type="button"><i class="fa fa-check"></i> Yes</button> |
| 164 |
<button class="btn btn-default deny cancel" href="#" data-dismiss="modal" aria-hidden="true"><i class="fa fa-times"></i> No</button> |
164 |
<button class="btn btn-default deny cancel" href="#" data-dismiss="modal" aria-hidden="true" type="button"><i class="fa fa-times"></i> No</button> |
| 165 |
</div> |
165 |
</div> |
| 166 |
</div> |
166 |
</div> |
| 167 |
</div> |
167 |
</div> |
|
Lines 234-240
Link Here
|
| 234 |
defaultPrice.value, |
234 |
defaultPrice.value, |
| 235 |
1, |
235 |
1, |
| 236 |
null, |
236 |
null, |
| 237 |
'<button class="drop"><i class="fa fa-trash"></i> Remove</button>', |
237 |
'<button class="drop" type="button"><i class="fa fa-trash"></i> Remove</button>', |
| 238 |
invoiceCode |
238 |
invoiceCode |
| 239 |
] |
239 |
] |
| 240 |
); |
240 |
); |
| 241 |
- |
|
|