refs #5525 mod yml y sql #1491

Merged
carlossa merged 41 commits from 5525-ibanSEPA-CORE into dev 2024-01-16 13:14:39 +00:00
5 changed files with 21 additions and 2 deletions
Showing only changes of commit b51710fb31 - Show all commits

View File

@ -0,0 +1,10 @@
-- vn.accountCountry definition
CREATE TABLE `accountCountry` in `vn` (
`supplierAccountFk` mediumint(8) unsigned DEFAULT NULL,
`countryFk` mediumint(8) unsigned DEFAULT NULL,
KEY `supplierAccountFk` (`supplierAccountFk`),
KEY `countryFk` (`countryFk`),
CONSTRAINT `accountCountry_ibfk_1` FOREIGN KEY (`supplierAccountFk`) REFERENCES `supplierAccount` (`id`),
CONSTRAINT `accountCountry_ibfk_2` FOREIGN KEY (`countryFk`) REFERENCES `country` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

View File

@ -17,6 +17,8 @@ supplier:
toCompleteBySupplier: A cumplimentar por el acreedor
orderReference: Referencia de la orden de domiciliación
identifier: Identificador del acreedor
iban: ES89000B97367486
cif: B97367486-000
name: Nombre del acreedor
street: Dirección
location: CP - Población - Provincia

View File

@ -13,6 +13,8 @@ sendOrder: APRÈS SIGNATURA, RENVOYER AU CRÉANCIER ET AU VOTRE ÉTABLISSEMENT F
supplier:
toCompleteBySupplier: Á compléter pour le créancier
orderReference: Numéro de référence du mandat
iban: FR7630003012690002801121597
cif: B97367486-000
identifier: Identifiant créancier
name: Nom du céancier
street: Adresse

View File

@ -27,8 +27,8 @@
<tr>
<td>{{$t('supplier.identifier')}}</td>
<th>
<div>ES89000B97367486</div>
<div>B97367486-000</div>
<div>{{$t('supplier.iban')}}</div>
<div>{{$t('supplier.cif')}}</div>
</th>
</tr>
<tr>

View File

@ -1,5 +1,10 @@
const vnReport = require('../../../core/mixins/vn-report.js');
// class Controller {
// constructor(country, supplier, iban, cif) {
// this.country = countryFk;
// }
// }
module.exports = {
name: 'sepa-core',
mixins: [vnReport],