refs #5525 mod yml y sql #1491
|
@ -0,0 +1,12 @@
|
||||||
|
ALTER TABLE `vn`.`company` MODIFY COLUMN `supplierAccountFk` mediumint(8) unsigned DEFAULT NULL NULL COMMENT 'Cuenta por defecto para ingresos desde este pais';
|
||||||
|
|
||||||
|
|
||||||
|
ALTER TABLE `vn`.`supplierAccount`
|
||||||
|
ADD COLUMN `countryFk` mediumint(8) unsigned DEFAULT NULL,
|
||||||
|
ADD CONSTRAINT `fk_supplierAccount_country`
|
||||||
|
FOREIGN KEY (`countryFk`) REFERENCES `country` (`id`) ON UPDATE CASCADE;
|
||||||
|
|
||||||
|
ALTER TABLE `vn`.`supplierAccount`
|
||||||
|
ADD UNIQUE KEY `uk_supplier_country` (`supplierFk`, `countryFk`);
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,9 @@
|
||||||
|
UPDATE vn.supplierAccount sa
|
||||||
|
JOIN vn.country c ON sa.countryFk = c.id AND c.code = 'FR'
|
||||||
|
SET countryFk = c.id
|
||||||
|
WHERE iban = 'FR7630003012690002801121597';
|
||||||
|
|
||||||
|
UPDATE vn.supplierAccount sa
|
||||||
|
JOIN vn.country c ON sa.countryFk = c.id AND c.code = 'PT'
|
||||||
|
SET countryFk = c.id
|
||||||
|
WHERE iban = 'PT50001000005813059150168';
|
|
@ -20,6 +20,9 @@
|
||||||
},
|
},
|
||||||
"beneficiary": {
|
"beneficiary": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
|
},
|
||||||
|
"supplierFk": {
|
||||||
|
"type": "string"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"relations": {
|
"relations": {
|
||||||
|
|
|
@ -45,4 +45,4 @@
|
||||||
</attachment>
|
</attachment>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</email-body>
|
</email-body>
|
||||||
|
|
|
@ -1,14 +1,33 @@
|
||||||
const Component = require(`vn-print/core/component`);
|
const Component = require(`vn-print/core/component`);
|
||||||
const emailBody = new Component('email-body');
|
const emailBody = new Component('email-body');
|
||||||
const attachment = new Component('attachment');
|
const attachment = new Component('attachment');
|
||||||
|
const db = require('../../../core/database');
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
name: 'letter-debtor-nd',
|
name: 'letter-debtor-nd',
|
||||||
async serverPrefetch() {
|
async serverPrefetch() {
|
||||||
this.debtor = await this.fetchDebtor(this.id, this.companyId);
|
this.debtor = await db.findOne(`
|
||||||
|
SELECT sa.id,
|
||||||
if (!this.debtor)
|
sa.iban,
|
||||||
throw new Error('Something went wrong');
|
be.name bankName,
|
||||||
|
sa.countryFk,
|
||||||
|
c.countryFk
|
||||||
|
FROM supplierAccount sa
|
||||||
|
JOIN bankEntity be ON sa.bankEntityFk = be.id
|
||||||
|
LEFT JOIN company co ON co.supplierAccountFk = sa.id
|
||||||
|
JOIN client c ON c.countryFk = sa.countryFk
|
||||||
|
WHERE c.id = ?;
|
||||||
|
`, [this.id]);
|
||||||
|
if (!this.debtor) {
|
||||||
|
this.debtor = await db.findOne(`
|
||||||
|
SELECT sa.iban,
|
||||||
|
be.name bankName
|
||||||
|
FROM supplierAccount sa
|
||||||
|
JOIN bankEntity be ON sa.bankEntityFk = be.id
|
||||||
|
JOIN company co ON co.supplierAccountFk = sa.id
|
||||||
|
WHERE co.id = ?;
|
||||||
|
`, [this.companyId]);
|
||||||
|
}
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
|
|
@ -0,0 +1,21 @@
|
||||||
|
subject: Reminder of Outstanding Balance Notice
|
||||||
|
title: Reminder Notice
|
||||||
|
sections:
|
||||||
|
introduction:
|
||||||
|
title: Dear Customer
|
||||||
|
description: We are writing to you once again to inform you that your debt with our company remains unpaid, as you can verify in the attached statement.
|
||||||
|
terms: Since the agreed payment deadlines have significantly passed, there should be no further delay in settling the outstanding amount.
|
||||||
|
payMethod:
|
||||||
|
description: To do so, you have the following payment options
|
||||||
|
options:
|
||||||
|
- Online payment through our website.
|
||||||
|
- Deposit or transfer to the account number provided at the bottom of this letter, indicating your customer number.
|
||||||
|
legalAction:
|
||||||
|
description: If this payment reminder is not heeded, we will be compelled to initiate the necessary legal actions, which may include
|
||||||
|
options:
|
||||||
|
- Inclusion in negative credit and financial solvency records.
|
||||||
|
- Legal proceedings.
|
||||||
|
- Debt assignment to a debt collection agency.
|
||||||
|
contactPhone: For inquiries, you can reach us at <strong>96 324 21 00</strong>.
|
||||||
|
conclusion: We look forward to hearing from you. <br/> Thank you for your attention.
|
||||||
|
transferAccount: Bank Transfer Details
|
|
@ -0,0 +1,26 @@
|
||||||
|
subject: Réitération de l'avis de solde débiteur
|
||||||
|
title: Avis réitéré
|
||||||
|
sections:
|
||||||
|
introduction:
|
||||||
|
title: Cher client
|
||||||
|
description: Nous vous écrivons à nouveau pour vous informer qu'il est toujours en attente
|
||||||
|
votre dette envers notre société, comme vous pouvez le voir dans le relevé ci-joint.
|
||||||
|
terms: Étant donné que les délais de paiement convenus sont largement dépassés, il n'est pas approprié
|
||||||
|
retard plus important dans le règlement du montant dû.
|
||||||
|
payMethod:
|
||||||
|
description: Pour cela, vous disposez des modes de paiement suivants
|
||||||
|
options:
|
||||||
|
- Paiement en ligne depuis notre site internet.
|
||||||
|
- Revenu ou virement sur le numéro de compte que nous détaillons en bas de ce courrier,
|
||||||
|
indiquant le numéro de client.
|
||||||
|
legalAction:
|
||||||
|
description: Si cette obligation de paiement n'est pas remplie, nous serons contraints de
|
||||||
|
d'engager les actions judiciaires qui se déroulent, parmi lesquelles
|
||||||
|
options:
|
||||||
|
- Inclusion dans les dossiers négatifs sur la solvabilité financière et le crédit.
|
||||||
|
- Réclamation judiciaire.
|
||||||
|
- Cession de créance à une société de gestion de recouvrement.
|
||||||
|
contactPhone: Pour toute demande, vous pouvez nous contacter au <strong>96
|
||||||
|
324 21 00</strong>.
|
||||||
|
conclusion: En attente de vos nouvelles. <br/> Merci pour ton attention.
|
||||||
|
transferAccount: Données pour virement bancaire
|
|
@ -0,0 +1,26 @@
|
||||||
|
subject: Reiteração de aviso de saldo devedor
|
||||||
|
title: Aviso reiterado
|
||||||
|
sections:
|
||||||
|
introduction:
|
||||||
|
title: Estimado cliente
|
||||||
|
description: Estamos escrevendo para você novamente para informar que ainda está pendente
|
||||||
|
sua dívida para com nossa empresa, conforme demonstrativo anexo.
|
||||||
|
terms: Dado que os prazos de pagamento acordados são largamente excedidos, não é adequado
|
||||||
|
maior atraso na liquidação do valor devido.
|
||||||
|
payMethod:
|
||||||
|
description: Para isso você tem as seguintes formas de pagamento
|
||||||
|
options:
|
||||||
|
- Pagamento online em nosso site.
|
||||||
|
- Renda ou transferência para o número da conta que detalhamos no final desta carta,
|
||||||
|
indicando o número do cliente.
|
||||||
|
legalAction:
|
||||||
|
description: Se esta obrigação de pagamento não for cumprida, seremos obrigados a
|
||||||
|
para iniciar as ações legais que procedem, entre as quais estão
|
||||||
|
options:
|
||||||
|
- Inclusão em processos negativos de solvência financeira e de crédito.
|
||||||
|
- Reivindicação judicial.
|
||||||
|
- Cessão de dívida a uma empresa de gestão de cobranças.
|
||||||
|
contactPhone: Para consultas, você pode entrar em contato conosco em <strong>96
|
||||||
|
324 21 00</strong>.
|
||||||
|
conclusion: Aguardando suas notícias. <br/> Agradecimentos para sua atenção.
|
||||||
|
transferAccount: Dados para transferência bancária
|
|
@ -1,10 +1,9 @@
|
||||||
SELECT
|
SELECT c.dueDay,
|
||||||
c.dueDay,
|
sa.iban,
|
||||||
c.iban,
|
be.name bankName
|
||||||
sa.iban,
|
FROM client c
|
||||||
be.name AS bankName
|
JOIN supplierAccount sa ON sa.id = cny.supplierAccountFk
|
||||||
FROM client c
|
JOIN bankEntity be ON be.id = sa.bankEntityFk
|
||||||
JOIN company AS cny
|
JOIN company cny
|
||||||
JOIN supplierAccount AS sa ON sa.id = cny.supplierAccountFk
|
WHERE c.id = ?
|
||||||
JOIN bankEntity be ON be.id = sa.bankEntityFk
|
AND cny.id = ?
|
||||||
WHERE c.id = ? AND cny.id = ?
|
|
||||||
|
|
|
@ -28,4 +28,4 @@
|
||||||
</attachment>
|
</attachment>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</email-body>
|
</email-body>
|
||||||
|
|
|
@ -1,14 +1,33 @@
|
||||||
const Component = require(`vn-print/core/component`);
|
const Component = require(`vn-print/core/component`);
|
||||||
const emailBody = new Component('email-body');
|
const emailBody = new Component('email-body');
|
||||||
const attachment = new Component('attachment');
|
const attachment = new Component('attachment');
|
||||||
|
const db = require('../../../core/database');
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
name: 'letter-debtor-st',
|
name: 'letter-debtor-st',
|
||||||
async serverPrefetch() {
|
async serverPrefetch() {
|
||||||
this.debtor = await this.fetchDebtor(this.id, this.companyId);
|
this.debtor = await db.findOne(`
|
||||||
|
SELECT sa.id,
|
||||||
if (!this.debtor)
|
sa.iban,
|
||||||
throw new Error('Something went wrong');
|
be.name bankName,
|
||||||
|
sa.countryFk,
|
||||||
|
c.countryFk
|
||||||
|
FROM supplierAccount sa
|
||||||
|
JOIN bankEntity be ON sa.bankEntityFk = be.id
|
||||||
|
LEFT JOIN company co ON co.supplierAccountFk = sa.id
|
||||||
|
JOIN client c ON c.countryFk = sa.countryFk
|
||||||
|
WHERE c.id = ?;
|
||||||
|
`, [this.id]);
|
||||||
|
if (!this.debtor) {
|
||||||
|
this.debtor = await db.findOne(`
|
||||||
|
SELECT sa.iban,
|
||||||
|
be.name bankName
|
||||||
|
FROM supplierAccount sa
|
||||||
|
JOIN bankEntity be ON sa.bankEntityFk = be.id
|
||||||
|
JOIN company co ON co.supplierAccountFk = sa.id
|
||||||
|
WHERE co.id = ?;
|
||||||
|
`, [this.companyId]);
|
||||||
|
}
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
|
|
@ -0,0 +1,11 @@
|
||||||
|
subject: Initial Notice for Outstanding Balance
|
||||||
|
title: Initial Notice for Outstanding Balance
|
||||||
|
sections:
|
||||||
|
introduction:
|
||||||
|
title: Dear Customer
|
||||||
|
description: Through this letter, we would like to inform you that, according to our accounting records, your account has an outstanding balance that needs to be settled.
|
||||||
|
checkExtract: We kindly request you to verify that the attached statement corresponds to the information you have. Our administration department will be happy to clarify any questions you may have and provide any documents you may request.
|
||||||
|
checkValidData: If, upon reviewing the provided information, everything appears to be accurate, we kindly ask you to proceed with rectifying your situation.
|
||||||
|
payMethod: If you prefer not to visit our offices in person, you can make the payment through a bank transfer to the account listed at the bottom of this communication, indicating your customer number. Alternatively, you can make the payment online through our website.
|
||||||
|
conclusion: We sincerely appreciate your kind cooperation.
|
||||||
|
transferAccount: Bank Transfer Details
|
|
@ -1,10 +1,9 @@
|
||||||
SELECT
|
SELECT c.dueDay,
|
||||||
c.dueDay,
|
sa.iban,
|
||||||
c.iban,
|
be.name bankName
|
||||||
sa.iban,
|
FROM client c
|
||||||
be.name AS bankName
|
JOIN supplierAccount sa ON sa.id = cny.supplierAccountFk
|
||||||
FROM client c
|
JOIN bankEntity be ON be.id = sa.bankEntityFk
|
||||||
JOIN company AS cny
|
JOIN company cny
|
||||||
JOIN supplierAccount AS sa ON sa.id = cny.supplierAccountFk
|
WHERE c.id = ?
|
||||||
JOIN bankEntity be ON be.id = sa.bankEntityFk
|
AND cny.id = ?
|
||||||
WHERE c.id = ? AND cny.id = ?
|
|
||||||
|
|
|
@ -45,4 +45,4 @@ instructions:
|
||||||
title: Instrucciones
|
title: Instrucciones
|
||||||
accountFields: Rellenar los campos relativos a la cuenta bancaria
|
accountFields: Rellenar los campos relativos a la cuenta bancaria
|
||||||
signDocument: Firmar y sellar el documento. Para que tenga validez, en el sello debe aparecer el CIF/NIF. De no ser así, deberá acompañarse la solicitud de un certificado de titularidad de la cuenta.
|
signDocument: Firmar y sellar el documento. Para que tenga validez, en el sello debe aparecer el CIF/NIF. De no ser así, deberá acompañarse la solicitud de un certificado de titularidad de la cuenta.
|
||||||
thanks: ¡Gracias por su colaboración!
|
thanks: ¡Gracias por su colaboración!
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
reportName: direct-debit
|
reportName: direct-debit
|
||||||
title: Direct Debit
|
title: Direct Debit
|
||||||
description: En signant ce formulaire de mandat, vous autorisez VERDNATURA LEVANTE SL
|
description: En signant ce formulaire de mandat, vous autorisez VERDNATURA LEVANTE SL
|
||||||
à envoyer des instructions à votre banque pour débiter votre compte, et (B) votre banque
|
à envoyer des instructions à votre banque pour débiter votre compte, et (B) votre banque
|
||||||
à débiter votre compte conformément aux instructions de VERDNATURA LEVANTE SL.
|
à débiter votre compte conformément aux instructions de VERDNATURA LEVANTE SL.
|
||||||
Vous bénéficiez d’un droit au remboursement par votre banque selon les conditions décrites
|
Vous bénéficiez d’un droit au remboursement par votre banque selon les conditions décrites
|
||||||
dans la convention que vous avez passée avec elle. Toute demande de remboursement doit être
|
dans la convention que vous avez passée avec elle. Toute demande de remboursement doit être
|
||||||
présentée dans les 8 semaines suivant la date de débit de votre compte.
|
présentée dans les 8 semaines suivant la date de débit de votre compte.
|
||||||
Votre banque peut vous renseigner au sujet de vos droits relatifs à ce mandat.
|
Votre banque peut vous renseigner au sujet de vos droits relatifs à ce mandat.
|
||||||
documentCopy: Veuillez dater, signer et retourner ce document à votre banque.
|
documentCopy: Veuillez dater, signer et retourner ce document à votre banque.
|
||||||
mandatoryFields: TOUS LES CHAMPS DOIVENT ÊTRE REINSEGNÉS IMPÉRATIVEMENT.
|
mandatoryFields: TOUS LES CHAMPS DOIVENT ÊTRE REINSEGNÉS IMPÉRATIVEMENT.
|
||||||
|
@ -42,4 +42,4 @@ instructions:
|
||||||
title: instructions
|
title: instructions
|
||||||
accountFields: Remplissez les champs relatifs au compte bancaire
|
accountFields: Remplissez les champs relatifs au compte bancaire
|
||||||
signDocument: Signez et scellez le document. Pour être valide, le CIF / NIF doit apparaître sur le cachet. Sinon, la demande de certificat de propriété du compte doit être jointe.
|
signDocument: Signez et scellez le document. Pour être valide, le CIF / NIF doit apparaître sur le cachet. Sinon, la demande de certificat de propriété du compte doit être jointe.
|
||||||
thanks: Merci de votre collaboration!
|
thanks: Merci de votre collaboration!
|
||||||
|
|
|
@ -27,8 +27,8 @@
|
||||||
<tr>
|
<tr>
|
||||||
<td>{{$t('supplier.identifier')}}</td>
|
<td>{{$t('supplier.identifier')}}</td>
|
||||||
<th>
|
<th>
|
||||||
<div>ES89000B97367486</div>
|
<div>{{supplier.iban}}</div>
|
||||||
<div>B97367486-000</div>
|
<div>{{supplier.nif}}</div>
|
||||||
</th>
|
</th>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
const vnReport = require('../../../core/mixins/vn-report.js');
|
const vnReport = require('../../../core/mixins/vn-report.js');
|
||||||
|
const db = require('../../../core/database');
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
name: 'sepa-core',
|
name: 'sepa-core',
|
||||||
|
@ -18,5 +19,16 @@ module.exports = {
|
||||||
type: Number,
|
type: Number,
|
||||||
required: true
|
required: true
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
getSupplierCif() {
|
||||||
|
return db.findOne(`
|
||||||
|
SELECT sa.iban, s.nif
|
||||||
|
FROM supplierAccount sa
|
||||||
|
JOIN company co ON co.supplierAccountFk = sa.id
|
||||||
|
JOIN supplier s ON sa.supplierFk = s.id
|
||||||
|
WHERE co.id = ?`) [this.companyId];
|
||||||
carlossa marked this conversation as resolved
Outdated
|
|||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,17 +1,27 @@
|
||||||
SELECT
|
SELECT
|
||||||
m.code mandateCode,
|
m.code mandateCode,
|
||||||
carlossa marked this conversation as resolved
Outdated
jgallego
commented
sin AS sin AS
|
|||||||
s.name,
|
s.name,
|
||||||
s.street,
|
s.street,
|
||||||
sc.country,
|
sc.country,
|
||||||
s.postCode,
|
s.postCode,
|
||||||
s.city,
|
s.city,
|
||||||
sp.name province
|
sp.name province,
|
||||||
FROM client c
|
s.nif,
|
||||||
LEFT JOIN mandate m ON m.clientFk = c.id
|
sa.iban,
|
||||||
AND m.companyFk = ? AND m.finished IS NULL
|
sa.supplierFk,
|
||||||
|
be.name bankName
|
||||||
|
FROM
|
||||||
|
client c
|
||||||
|
LEFT JOIN mandate m ON m.clientFk = c.id AND m.companyFk = ? AND m.finished IS NULL
|
||||||
LEFT JOIN supplier s ON s.id = m.companyFk
|
LEFT JOIN supplier s ON s.id = m.companyFk
|
||||||
LEFT JOIN country sc ON sc.id = s.countryFk
|
LEFT JOIN country sc ON sc.id = s.countryFk
|
||||||
LEFT JOIN province sp ON sp.id = s.provinceFk
|
LEFT JOIN province sp ON sp.id = s.provinceFk
|
||||||
LEFT JOIN province p ON p.id = c.provinceFk
|
LEFT JOIN province p ON p.id = c.provinceFk
|
||||||
WHERE (m.companyFk = ? OR m.companyFk IS NULL) AND c.id = ?
|
LEFT JOIN supplierAccount sa ON sa.supplierFk = s.id
|
||||||
ORDER BY m.created DESC LIMIT 1
|
LEFT JOIN bankEntity be ON sa.bankEntityFk = be.id
|
||||||
|
WHERE
|
||||||
|
(m.companyFk = ? OR m.companyFk IS NULL)
|
||||||
|
AND (c.id = ? OR (c.id IS NULL AND c.countryFk = sa.countryFk))
|
||||||
|
ORDER BY
|
||||||
|
m.created DESC
|
||||||
|
LIMIT 1;
|
||||||
|
|
Loading…
Reference in New Issue
en ese pais puede haber mas de un supplier no?