Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ISPConfig
ISPConfig 3
Commits
7ad91f34
Commit
7ad91f34
authored
Feb 24, 2012
by
Falko Timme
Browse files
- Added bank detail fields to the client form.
parent
dec0dfa3
Changes
6
Hide whitespace changes
Inline
Side-by-side
install/sql/incremental/upd_0030.sql
0 → 100644
View file @
7ad91f34
ALTER
TABLE
`client`
ADD
`bank_account_number`
VARCHAR
(
255
)
NULL
DEFAULT
NULL
AFTER
`notes`
,
ADD
`bank_code`
VARCHAR
(
255
)
NULL
DEFAULT
NULL
AFTER
`bank_account_number`
,
ADD
`bank_name`
VARCHAR
(
255
)
NULL
DEFAULT
NULL
AFTER
`bank_code`
,
ADD
`bank_account_iban`
VARCHAR
(
255
)
NULL
DEFAULT
NULL
AFTER
`bank_name`
,
ADD
`bank_account_swift`
VARCHAR
(
255
)
NULL
DEFAULT
NULL
AFTER
`bank_account_iban`
;
\ No newline at end of file
install/sql/ispconfig3.sql
View file @
7ad91f34
...
...
@@ -93,6 +93,11 @@ CREATE TABLE `client` (
`internet`
varchar
(
255
)
NOT
NULL
,
`icq`
varchar
(
16
)
DEFAULT
NULL
,
`notes`
text
,
`bank_account_number`
varchar
(
255
)
DEFAULT
NULL
,
`bank_code`
varchar
(
255
)
DEFAULT
NULL
,
`bank_name`
varchar
(
255
)
DEFAULT
NULL
,
`bank_account_iban`
varchar
(
255
)
DEFAULT
NULL
,
`bank_account_swift`
varchar
(
255
)
DEFAULT
NULL
,
`default_mailserver`
int
(
11
)
unsigned
NOT
NULL
DEFAULT
'1'
,
`limit_maildomain`
int
(
11
)
NOT
NULL
DEFAULT
'-1'
,
`limit_mailbox`
int
(
11
)
NOT
NULL
DEFAULT
'-1'
,
...
...
interface/web/client/form/client.tform.php
View file @
7ad91f34
...
...
@@ -316,6 +316,61 @@ $form["tabs"]['address'] = array (
'rows'
=>
''
,
'cols'
=>
''
),
'bank_account_number'
=>
array
(
'datatype'
=>
'VARCHAR'
,
'formtype'
=>
'TEXT'
,
'default'
=>
''
,
'value'
=>
''
,
'separator'
=>
''
,
'width'
=>
'30'
,
'maxlength'
=>
'255'
,
'rows'
=>
''
,
'cols'
=>
''
),
'bank_code'
=>
array
(
'datatype'
=>
'VARCHAR'
,
'formtype'
=>
'TEXT'
,
'default'
=>
''
,
'value'
=>
''
,
'separator'
=>
''
,
'width'
=>
'30'
,
'maxlength'
=>
'255'
,
'rows'
=>
''
,
'cols'
=>
''
),
'bank_name'
=>
array
(
'datatype'
=>
'VARCHAR'
,
'formtype'
=>
'TEXT'
,
'default'
=>
''
,
'value'
=>
''
,
'separator'
=>
''
,
'width'
=>
'30'
,
'maxlength'
=>
'255'
,
'rows'
=>
''
,
'cols'
=>
''
),
'bank_account_iban'
=>
array
(
'datatype'
=>
'VARCHAR'
,
'formtype'
=>
'TEXT'
,
'default'
=>
''
,
'value'
=>
''
,
'separator'
=>
''
,
'width'
=>
'30'
,
'maxlength'
=>
'255'
,
'rows'
=>
''
,
'cols'
=>
''
),
'bank_account_swift'
=>
array
(
'datatype'
=>
'VARCHAR'
,
'formtype'
=>
'TEXT'
,
'default'
=>
''
,
'value'
=>
''
,
'separator'
=>
''
,
'width'
=>
'30'
,
'maxlength'
=>
'255'
,
'rows'
=>
''
,
'cols'
=>
''
),
'notes'
=>
array
(
'datatype'
=>
'TEXT'
,
'formtype'
=>
'TEXTAREA'
,
...
...
interface/web/client/lib/lang/de_client.lng
View file @
7ad91f34
...
...
@@ -106,4 +106,9 @@ $wb['limit_openvz_vm_template_id_txt'] = 'Force virtual server template';
$wb
[
'limit_openvz_vm_error_notint'
]
=
'The virtual server limit must be a number.'
;
$wb
[
'web_php_options_notempty'
]
=
'No PHP option(s) selected. Select at least one PHP option.'
;
$wb
[
'ssh_chroot_notempty'
]
=
'No SSH chroot option selected. Select at least one SSH option.'
;
$wb
[
'bank_account_number_txt'
]
=
'Kontonr.'
;
$wb
[
'bank_code_txt'
]
=
'BLZ'
;
$wb
[
'bank_name_txt'
]
=
'Bank'
;
$wb
[
'bank_account_iban_txt'
]
=
'IBAN'
;
$wb
[
'bank_account_swift_txt'
]
=
'BIC'
;
?>
interface/web/client/lib/lang/en_client.lng
View file @
7ad91f34
...
...
@@ -109,4 +109,9 @@ $wb["limit_openvz_vm_template_id_txt"] = 'Force virtual server template';
$wb
[
"limit_openvz_vm_error_notint"
]
=
'The virtual server limit must be a number.'
;
$wb
[
"web_php_options_notempty"
]
=
'No PHP option(s) selected. Select at least one PHP option.'
;
$wb
[
"ssh_chroot_notempty"
]
=
'No SSH chroot option selected. Select at least one SSH option.'
;
$wb
[
"bank_account_number_txt"
]
=
'Bank account no.'
;
$wb
[
"bank_code_txt"
]
=
'Bank code'
;
$wb
[
"bank_name_txt"
]
=
'Bank name'
;
$wb
[
"bank_account_iban_txt"
]
=
'IBAN'
;
$wb
[
"bank_account_swift_txt"
]
=
'BIC / Swift'
;
?>
interface/web/client/templates/client_edit_address.htm
View file @
7ad91f34
...
...
@@ -96,6 +96,26 @@
<label
for=
"company_id"
>
{tmpl_var name='company_id_txt'}
</label>
<input
name=
"company_id"
id=
"company_id"
value=
"{tmpl_var name='company_id'}"
size=
"30"
maxlength=
"255"
type=
"text"
class=
"textInput"
/>
</div>
<div
class=
"ctrlHolder"
>
<label
for=
"bank_account_number"
>
{tmpl_var name='bank_account_number_txt'}
</label>
<input
name=
"bank_account_number"
id=
"bank_account_number"
value=
"{tmpl_var name='bank_account_number'}"
size=
"30"
maxlength=
"255"
type=
"text"
class=
"textInput"
/>
</div>
<div
class=
"ctrlHolder"
>
<label
for=
"bank_code"
>
{tmpl_var name='bank_code_txt'}
</label>
<input
name=
"bank_code"
id=
"bank_code"
value=
"{tmpl_var name='bank_code'}"
size=
"30"
maxlength=
"255"
type=
"text"
class=
"textInput"
/>
</div>
<div
class=
"ctrlHolder"
>
<label
for=
"bank_name"
>
{tmpl_var name='bank_name_txt'}
</label>
<input
name=
"bank_name"
id=
"bank_name"
value=
"{tmpl_var name='bank_name'}"
size=
"30"
maxlength=
"255"
type=
"text"
class=
"textInput"
/>
</div>
<div
class=
"ctrlHolder"
>
<label
for=
"bank_account_iban"
>
{tmpl_var name='bank_account_iban_txt'}
</label>
<input
name=
"bank_account_iban"
id=
"bank_account_iban"
value=
"{tmpl_var name='bank_account_iban'}"
size=
"30"
maxlength=
"255"
type=
"text"
class=
"textInput"
/>
</div>
<div
class=
"ctrlHolder"
>
<label
for=
"bank_account_swift"
>
{tmpl_var name='bank_account_swift_txt'}
</label>
<input
name=
"bank_account_swift"
id=
"bank_account_swift"
value=
"{tmpl_var name='bank_account_swift'}"
size=
"30"
maxlength=
"255"
type=
"text"
class=
"textInput"
/>
</div>
<div
class=
"ctrlHolder"
>
<label
for=
"notes"
>
{tmpl_var name='notes_txt'}
</label>
<textarea
name=
"notes"
id=
"notes"
rows=
'10'
cols=
'30'
>
{tmpl_var name='notes'}
</textarea>
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment