2974 - Get amount unpaid from customer_risk
gitea/salix/pipeline/head This commit looks good Details

This commit is contained in:
Joan Sanchez 2021-07-01 08:33:56 +02:00
parent 5d38488ac1
commit c8bfc911c2
2 changed files with 5 additions and 2 deletions

View File

@ -60,7 +60,8 @@
<vn-horizontal>
<vn-input-number
ng-model="$ctrl.deliveredAmount"
label="Delivered amount">
label="Delivered amount"
step="0.01">
</vn-input-number>
<vn-input-number
disabled="true"

View File

@ -1,9 +1,11 @@
SELECT
r.id,
r.amountPaid,
r.amountUnpaid,
cr.amount AS amountUnpaid,
r.payed,
r.companyFk
FROM receipt r
JOIN client c ON c.id = r.clientFk
JOIN bi.customer_risk cr ON cr.customer_id = c.id
AND cr.company_id = r.companyFk
WHERE r.id = ?