MT#7199 add iban and bic fields.

ipeshinskaya/InvoiceTemplate5
Andreas Granig 11 years ago
parent bcab8bf2a0
commit e2e29a3298

@ -17,7 +17,7 @@ has_block 'fields' => (
tag => 'div',
class => [qw/modal-body/],
render_list => [qw/reseller firstname lastname email company
street postcode city country phonenumber/],
street postcode city country iban bic phonenumber/],
);
1;

@ -88,6 +88,27 @@ has_field 'country' => (
},
);
has_field 'iban' => (
type => 'Text',
maxlength => 34,
label => 'IBAN',
element_attr => {
rel => ['tooltip'],
title => ['The IBAN (International Bank Account Number) of the contact bank details.']
},
);
has_field 'bic' => (
type => 'Text',
minlength => 8,
maxlength => 11,
label => 'BIC/SWIFT',
element_attr => {
rel => ['tooltip'],
title => ['The BIC (Business Identifier Code) of the contact bank details.']
},
);
has_field 'phonenumber' => (
type => 'Text',
maxlength => 31,
@ -109,7 +130,7 @@ has_block 'fields' => (
tag => 'div',
class => [qw/modal-body/],
render_list => [qw/firstname lastname email company street postcode city
country phonenumber/],
country iban bic phonenumber/],
);
has_block 'actions' => (

Loading…
Cancel
Save