This commit is contained in:
parent
0ea30552dd
commit
b51710fb31
|
@ -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;
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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],
|
||||
|
|
Loading…
Reference in New Issue