2018-10-19 06:40:32 +00:00
|
|
|
<vn-crud-model
|
|
|
|
vn-id="model"
|
|
|
|
url="/client/api/receipts/filter"
|
2018-11-14 09:55:15 +00:00
|
|
|
params="$ctrl.params"
|
2018-10-19 06:40:32 +00:00
|
|
|
limit="20"
|
2019-10-02 17:24:42 +00:00
|
|
|
data="$ctrl.balances"
|
|
|
|
auto-load="true">
|
2018-10-19 06:40:32 +00:00
|
|
|
</vn-crud-model>
|
|
|
|
<vn-crud-model
|
|
|
|
vn-id="riskModel"
|
|
|
|
url="/client/api/ClientRisks"
|
2019-01-25 07:50:13 +00:00
|
|
|
filter="$ctrl.filter"
|
2019-04-16 11:40:26 +00:00
|
|
|
data="$ctrl.clientRisks">
|
2018-10-19 06:40:32 +00:00
|
|
|
</vn-crud-model>
|
2019-10-02 17:24:42 +00:00
|
|
|
<div class="vn-w-lg">
|
2019-10-04 22:16:57 +00:00
|
|
|
<vn-card class="vn-pa-md vn-mb-md">
|
2019-10-01 14:21:08 +00:00
|
|
|
<vn-horizontal
|
|
|
|
style="align-items: center;">
|
2019-05-01 16:49:39 +00:00
|
|
|
<vn-one></vn-one>
|
2018-11-14 09:55:15 +00:00
|
|
|
<vn-one>
|
2019-05-01 16:49:39 +00:00
|
|
|
<vn-autocomplete
|
2019-04-05 11:20:34 +00:00
|
|
|
vn-id="company"
|
2019-10-09 22:47:29 +00:00
|
|
|
class="dense"
|
|
|
|
ng-model="$ctrl.companyFk"
|
2018-11-14 09:55:15 +00:00
|
|
|
on-change="$ctrl.setOrder(value)"
|
|
|
|
url="/client/api/Companies"
|
|
|
|
show-field="code"
|
|
|
|
value-field="id"
|
2019-10-01 14:17:57 +00:00
|
|
|
label="Company">
|
2018-11-14 09:55:15 +00:00
|
|
|
</vn-autocomplete>
|
|
|
|
</vn-one>
|
|
|
|
<vn-one>
|
2019-04-16 11:40:26 +00:00
|
|
|
<div class="totalBox" ng-if="$ctrl.clientRisks.length">
|
2019-01-15 10:15:30 +00:00
|
|
|
<h6 translate>Total by company</h6>
|
2019-04-16 11:40:26 +00:00
|
|
|
<vn-auto ng-repeat="riskByCompany in $ctrl.clientRisks">
|
2019-01-14 16:26:59 +00:00
|
|
|
<vn-label-value
|
|
|
|
label="{{riskByCompany.company.code}}"
|
2019-01-31 10:44:03 +00:00
|
|
|
value="{{riskByCompany.amount | currency: 'EUR':2}}">
|
2018-11-14 09:55:15 +00:00
|
|
|
</vn-label-value>
|
|
|
|
</vn-auto>
|
|
|
|
</div>
|
|
|
|
</vn-one>
|
2018-10-19 06:40:32 +00:00
|
|
|
</vn-horizontal>
|
|
|
|
</vn-card>
|
2019-10-02 17:24:42 +00:00
|
|
|
<vn-data-viewer model="model">
|
|
|
|
<vn-card>
|
2019-10-01 14:17:57 +00:00
|
|
|
<vn-table model="model">
|
|
|
|
<vn-thead>
|
|
|
|
<vn-tr>
|
2019-10-02 17:24:42 +00:00
|
|
|
<vn-th>Date</vn-th>
|
2019-10-01 14:17:57 +00:00
|
|
|
<vn-th>Creation date</vn-th>
|
|
|
|
<vn-th>Employee</vn-th>
|
|
|
|
<vn-th>Reference</vn-th>
|
|
|
|
<vn-th number>Bank</vn-th>
|
|
|
|
<vn-th number>Debit</vn-th>
|
|
|
|
<vn-th number>Havings</vn-th>
|
|
|
|
<vn-th number>Balance</vn-th>
|
|
|
|
<vn-th center>Conciliated</vn-th>
|
|
|
|
<vn-th></vn-th>
|
|
|
|
</vn-tr>
|
|
|
|
</vn-thead>
|
|
|
|
<vn-tbody>
|
|
|
|
<vn-tr ng-repeat="balance in $ctrl.balances">
|
|
|
|
<vn-td>
|
2019-10-18 23:18:25 +00:00
|
|
|
<span title="{{::balance.payed | date:'dd/MM/yyyy'}}">
|
|
|
|
{{::balance.payed | date:'dd/MM/yyyy'}}
|
2019-10-14 13:20:03 +00:00
|
|
|
</span>
|
|
|
|
</vn-td>
|
|
|
|
<vn-td>
|
2019-10-18 23:18:25 +00:00
|
|
|
<span title="{{::balance.created | date:'dd/MM/yyyy HH:mm'}}">
|
|
|
|
{{::balance.created | date:'dd/MM/yyyy HH:mm'}}
|
2019-10-14 13:20:03 +00:00
|
|
|
</span>
|
|
|
|
</vn-td>
|
|
|
|
<vn-td>
|
|
|
|
<span
|
2019-10-01 14:17:57 +00:00
|
|
|
class="link"
|
|
|
|
ng-click="$ctrl.showWorkerDescriptor($event, balance.workerFk)">
|
|
|
|
{{::balance.userNickname}}
|
|
|
|
</span>
|
|
|
|
</vn-td>
|
2019-10-14 13:20:03 +00:00
|
|
|
<vn-td expand>
|
2019-10-01 14:17:57 +00:00
|
|
|
<span
|
2019-10-14 13:20:03 +00:00
|
|
|
title="{{balance.isInvoice ? 'BILL' : balance.ref | translate: {ref: balance.ref} }}"
|
2019-10-01 14:17:57 +00:00
|
|
|
ng-class="{'link': balance.isInvoice}"
|
|
|
|
ng-click="$ctrl.showInvoiceOutDescriptor($event, balance)"
|
2019-10-14 13:20:03 +00:00
|
|
|
ng-show="balance.ref">
|
|
|
|
{{balance.isInvoice ? 'BILL' : balance.ref | translate: {ref: balance.ref} }}
|
2019-10-01 14:17:57 +00:00
|
|
|
</span>
|
|
|
|
</vn-td>
|
|
|
|
<vn-td number>{{::balance.bankFk}}</vn-td>
|
|
|
|
<vn-td number>{{::balance.debit | currency: 'EUR':2}}</vn-td>
|
|
|
|
<vn-td number>{{::balance.credit | currency: 'EUR':2}}</vn-td>
|
|
|
|
<vn-td number>{{balance.balance | currency: 'EUR':2}}</vn-td>
|
2019-10-14 13:20:03 +00:00
|
|
|
<vn-td center shrink>
|
2019-10-01 14:17:57 +00:00
|
|
|
<vn-check
|
2019-10-09 22:47:29 +00:00
|
|
|
ng-model="balance.isConciliate"
|
2019-10-01 14:17:57 +00:00
|
|
|
disabled="true">
|
|
|
|
</vn-check>
|
|
|
|
</vn-td>
|
2019-10-14 13:20:03 +00:00
|
|
|
<vn-td center shrink>
|
2019-10-01 14:17:57 +00:00
|
|
|
<a ng-show="balance.hasPdf"
|
|
|
|
target="_blank"
|
|
|
|
href="api/InvoiceOuts/{{::balance.id}}/download?access_token={{::$ctrl.accessToken}}">
|
|
|
|
<vn-icon-button
|
|
|
|
icon="cloud_download"
|
|
|
|
title="{{'Download PDF' | translate}}">
|
|
|
|
</vn-icon-button>
|
|
|
|
</a>
|
|
|
|
</vn-td>
|
|
|
|
</vn-tr>
|
|
|
|
</vn-tbody>
|
|
|
|
</vn-table>
|
2019-10-02 17:24:42 +00:00
|
|
|
</vn-card>
|
|
|
|
</vn-data-viewer>
|
2019-10-01 14:17:57 +00:00
|
|
|
</div>
|
2019-02-05 15:46:02 +00:00
|
|
|
<vn-float-button
|
|
|
|
vn-acl="administrative"
|
|
|
|
vn-acl-action="remove"
|
|
|
|
icon="add"
|
2019-01-15 10:15:30 +00:00
|
|
|
vn-tooltip="New payment"
|
|
|
|
vn-bind="+"
|
2019-02-05 15:46:02 +00:00
|
|
|
fixed-bottom-right
|
|
|
|
ng-click="$ctrl.openCreateDialog()">
|
|
|
|
</vn-float-button>
|
2019-10-01 14:17:57 +00:00
|
|
|
<vn-client-balance-create
|
|
|
|
vn-id="balanceCreateDialog">
|
2019-04-16 11:40:26 +00:00
|
|
|
</vn-client-balance-create>
|
2019-04-05 11:20:34 +00:00
|
|
|
<vn-worker-descriptor-popover
|
|
|
|
vn-id="workerDescriptor"
|
2019-04-25 12:24:02 +00:00
|
|
|
worker-fk="$ctrl.selectedWorker">
|
2019-04-05 11:20:34 +00:00
|
|
|
</vn-worker-descriptor-popover>
|
|
|
|
<vn-invoice-out-descriptor-popover
|
|
|
|
vn-id="invoiceOutDescriptor"
|
|
|
|
invoice-out-id="$ctrl.selectedInvoiceOut">
|
|
|
|
</vn-invoice-out-descriptor-popover>
|