last steps to preview credit request #692

Merged
joan merged 3 commits from 1939-add_client_credit_report into dev 2021-07-19 10:33:20 +00:00
3 changed files with 5 additions and 23 deletions
Showing only changes of commit 724da74204 - Show all commits

View File

@ -179,8 +179,7 @@
<!-- Footer block -->
<report-footer
id="pageFooter"
v-bind:left-text="$t('client', [client.id])"
v-bind:center-text="client.socialName"
v-bind:left-text="dated"
v-bind="$props">
</report-footer>
</td>

View File

@ -4,15 +4,11 @@ const reportFooter = new Component('report-footer');
const rptCreditRequest = {
name: 'credit-request',
async serverPrefetch() {
this.client = await this.fetchClient(this.recipientId);
computed: {
dated: function() {
const filters = this.$options.filters;
if (!this.client)
throw new Error('Something went wrong');
},
methods: {
fetchClient(clientId) {
return this.findOneFromDef('client', [clientId]);
return filters.date(new Date(), '%d-%m-%Y');
}
},
components: {

View File

@ -1,13 +0,0 @@
SELECT
c.id,
c.socialName,
c.street,
c.postcode,
c.city,
c.fi,
p.name AS province,
ct.country
FROM client c
JOIN country ct ON ct.id = c.countryFk
LEFT JOIN province p ON p.id = c.provinceFk
WHERE c.id = ?