Merge pull request 'refs #4764 hotfix' (!1780) from 4764-ticketRefundhotFix into master
gitea/salix/pipeline/head This commit looks good
Details
gitea/salix/pipeline/head This commit looks good
Details
Reviewed-on: #1780 Reviewed-by: Javi Gallego <jgallego@verdnatura.es>
This commit is contained in:
commit
e3d23c5c42
|
@ -29,7 +29,7 @@
|
||||||
disabled="watcher.dataChanged() || !$ctrl.checkeds.length"
|
disabled="watcher.dataChanged() || !$ctrl.checkeds.length"
|
||||||
label="Pay"
|
label="Pay"
|
||||||
ng-click="$ctrl.createRefund()"
|
ng-click="$ctrl.createRefund()"
|
||||||
vn-acl="invoicing, claimManager, salesAssistant"
|
vn-acl="invoicing, claimManager, salesAssistant, buyer"
|
||||||
vn-acl-action="remove">
|
vn-acl-action="remove">
|
||||||
</vn-button>
|
</vn-button>
|
||||||
</vn-button-bar>
|
</vn-button-bar>
|
||||||
|
@ -37,7 +37,9 @@
|
||||||
<vn-check
|
<vn-check
|
||||||
tabindex="1"
|
tabindex="1"
|
||||||
on-change="$ctrl.addChecked(service.id)"
|
on-change="$ctrl.addChecked(service.id)"
|
||||||
disabled="!service.id">
|
disabled="!service.id"
|
||||||
|
vn-acl="invoicing, claimManager, salesAssistant, buyer"
|
||||||
|
vn-acl-action="remove">
|
||||||
</vn-check>
|
</vn-check>
|
||||||
<vn-autocomplete vn-two vn-focus
|
<vn-autocomplete vn-two vn-focus
|
||||||
data="ticketServiceTypes"
|
data="ticketServiceTypes"
|
||||||
|
@ -68,7 +70,8 @@
|
||||||
vn-one
|
vn-one
|
||||||
label="Price"
|
label="Price"
|
||||||
ng-model="service.price"
|
ng-model="service.price"
|
||||||
step="0.01">
|
step="0.01"
|
||||||
|
min="0">
|
||||||
</vn-input-number>
|
</vn-input-number>
|
||||||
<vn-auto>
|
<vn-auto>
|
||||||
<vn-icon-button
|
<vn-icon-button
|
||||||
|
|
|
@ -117,7 +117,7 @@
|
||||||
<td class="number">{{service.price | currency('EUR', $i18n.locale)}}</td>
|
<td class="number">{{service.price | currency('EUR', $i18n.locale)}}</td>
|
||||||
<td class="centered" width="5%"></td>
|
<td class="centered" width="5%"></td>
|
||||||
<td class="centered">{{service.taxDescription}}</td>
|
<td class="centered">{{service.taxDescription}}</td>
|
||||||
<td class="number">{{service.price | currency('EUR', $i18n.locale)}}</td>
|
<td class="number">{{service.total | currency('EUR', $i18n.locale)}}</td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
<tfoot>
|
<tfoot>
|
||||||
|
|
|
@ -2,7 +2,8 @@ SELECT
|
||||||
tc.code taxDescription,
|
tc.code taxDescription,
|
||||||
ts.description,
|
ts.description,
|
||||||
ts.quantity,
|
ts.quantity,
|
||||||
ts.price
|
ts.price,
|
||||||
|
ts.quantity * ts.price total
|
||||||
FROM ticketService ts
|
FROM ticketService ts
|
||||||
JOIN taxClass tc ON tc.id = ts.taxClassFk
|
JOIN taxClass tc ON tc.id = ts.taxClassFk
|
||||||
WHERE ts.ticketFk = ?
|
WHERE ts.ticketFk = ?
|
Loading…
Reference in New Issue