Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dolibarr
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software_Artifact_Infrastructure_Repository
dolibarr
Commits
b0f604da
Commit
b0f604da
authored
9 years ago
by
Laurent Destailleur
Browse files
Options
Downloads
Plain Diff
Merge branch '3.7' of git@github.com:Dolibarr/dolibarr.git into 3.7
Conflicts: ChangeLog
parents
de741e41
bd38e2f0
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
ChangeLog
+1
-0
1 addition, 0 deletions
ChangeLog
htdocs/core/lib/pdf.lib.php
+2
-1
2 additions, 1 deletion
htdocs/core/lib/pdf.lib.php
with
3 additions
and
1 deletion
ChangeLog
+
1
−
0
View file @
b0f604da
...
...
@@ -23,6 +23,7 @@ FIX [ bug #3211 ] Outstading bill amount of a client showed wrong amounts
FIX [ bug #3321 ] Users with certain permissions were shown a "forbidden access" page even if they had the rights
FIX [ bug #3426 ] Unable to create an invoice from a contract with extrafields
FIX [ bug #3431 ] Invoice bank account is not respected
FIX [ bug #3432 ] Spaces should be removed from IBAN when formatting it
NEW: Created new ContratLigne::insert function
...
...
This diff is collapsed.
Click to expand it.
htdocs/core/lib/pdf.lib.php
+
2
−
1
View file @
b0f604da
...
...
@@ -631,7 +631,8 @@ function pdf_bank(&$pdf,$outputlangs,$curx,$cury,$account,$onlynumber=0,$default
if
(
$account
->
getCountryCode
()
==
'IN'
)
$ibankey
=
"IFSC"
;
if
(
!
empty
(
$account
->
iban
))
{
$ibanDisplay_temp
=
$outputlangs
->
convToOutputCharset
(
$account
->
iban
);
//Remove whitespaces to ensure we are dealing with the format we expect
$ibanDisplay_temp
=
str_replace
(
' '
,
''
,
$outputlangs
->
convToOutputCharset
(
$account
->
iban
));
$ibanDisplay
=
""
;
for
(
$i
=
0
;
$i
<
dol_strlen
(
$ibanDisplay_temp
);
$i
++
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment