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
48262f2d
Commit
48262f2d
authored
14 years ago
by
Laurent Destailleur
Browse files
Options
Downloads
Patches
Plain Diff
Fix: Customer code was not visible
parent
5e199875
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
htdocs/includes/modules/livraison/pdf/pdf_sirocco.modules.php
+11
-3
11 additions, 3 deletions
...cs/includes/modules/livraison/pdf/pdf_sirocco.modules.php
htdocs/includes/modules/livraison/pdf/pdf_typhon.modules.php
+15
-6
15 additions, 6 deletions
htdocs/includes/modules/livraison/pdf/pdf_typhon.modules.php
with
26 additions
and
9 deletions
htdocs/includes/modules/livraison/pdf/pdf_sirocco.modules.php
+
11
−
3
View file @
48262f2d
...
...
@@ -110,6 +110,8 @@ class pdf_sirocco extends ModelePDFDeliveryOrder
}
}
$object
->
fetch_client
();
$nblignes
=
sizeof
(
$object
->
lignes
);
$objectref
=
dol_sanitizeFileName
(
$object
->
ref
);
...
...
@@ -380,8 +382,6 @@ class pdf_sirocco extends ModelePDFDeliveryOrder
* Adresse Client
*/
$object
->
fetch_client
();
// If SHIPPING contact defined on invoice, we use it
$usecontact
=
false
;
$arrayidcontact
=
$object
->
commande
->
getIdContact
(
'external'
,
'SHIPPING'
);
...
...
@@ -419,9 +419,17 @@ class pdf_sirocco extends ModelePDFDeliveryOrder
$pdf
->
SetTextColor
(
200
,
0
,
0
);
$pdf
->
SetFont
(
'Arial'
,
'B'
,
12
);
$pdf
->
Text
(
11
,
88
,
$outputlangs
->
transnoentities
(
"Date"
)
.
" : "
.
dol_print_date
(
$object
->
date_valid
,
"day"
,
false
,
$outputlangs
,
true
));
$pdf
->
Text
(
11
,
88
,
$outputlangs
->
transnoentities
(
"Date"
)
.
" : "
.
dol_print_date
(
(
$object
->
date_
delivery
?
$object
->
date_delivery
:
$date
->
valid
)
,
"day"
,
false
,
$outputlangs
,
true
));
$pdf
->
Text
(
11
,
94
,
$outputlangs
->
transnoentities
(
"DeliveryOrder"
)
.
" "
.
$outputlangs
->
convToOutputCharset
(
$object
->
ref
));
if
(
$object
->
client
->
code_client
)
{
$posy
+=
7
;
$pdf
->
SetXY
(
102
,
$posy
);
$pdf
->
SetTextColor
(
0
,
0
,
60
);
$pdf
->
MultiCell
(
96
,
3
,
$outputlangs
->
transnoentities
(
"CustomerCode"
)
.
" : "
.
$outputlangs
->
transnoentities
(
$object
->
client
->
code_client
),
''
,
'R'
);
}
$pdf
->
SetFont
(
'Arial'
,
'B'
,
9
);
// Add list of linked orders
...
...
This diff is collapsed.
Click to expand it.
htdocs/includes/modules/livraison/pdf/pdf_typhon.modules.php
+
15
−
6
View file @
48262f2d
...
...
@@ -132,6 +132,8 @@ class pdf_typhon extends ModelePDFDeliveryOrder
}
}
$object
->
fetch_client
();
$nblignes
=
sizeof
(
$object
->
lignes
);
$objectref
=
dol_sanitizeFileName
(
$object
->
ref
);
...
...
@@ -509,7 +511,7 @@ class pdf_typhon extends ModelePDFDeliveryOrder
{
if
(
is_readable
(
$logo
))
{
$pdf
->
Image
(
$logo
,
$this
->
marge_gauche
,
$posy
,
0
,
2
4
);
$pdf
->
Image
(
$logo
,
$this
->
marge_gauche
,
$posy
,
0
,
2
2
);
}
else
{
...
...
@@ -521,18 +523,19 @@ class pdf_typhon extends ModelePDFDeliveryOrder
}
else
$pdf
->
MultiCell
(
100
,
4
,
$this
->
emetteur
->
nom
,
0
,
'L'
);
$pdf
->
SetFont
(
'Arial'
,
'B'
,
1
3
);
$pdf
->
SetFont
(
'Arial'
,
'B'
,
1
2
);
$pdf
->
SetXY
(
100
,
$posy
);
$pdf
->
SetTextColor
(
0
,
0
,
60
);
$pdf
->
MultiCell
(
100
,
4
,
$outputlangs
->
transnoentities
(
"DeliveryOrder"
)
.
" "
.
$outputlangs
->
convToOutputCharset
(
$object
->
ref
),
''
,
'R'
);
$pdf
->
SetFont
(
'Arial'
,
''
,
12
);
$posy
+=
6
;
$posy
+=
5
;
$pdf
->
SetXY
(
100
,
$posy
);
$pdf
->
SetTextColor
(
0
,
0
,
60
);
if
(
$object
->
date_valid
)
{
$pdf
->
MultiCell
(
100
,
4
,
$outputlangs
->
transnoentities
(
"Date"
)
.
" : "
.
dol_print_date
(
$object
->
date_valid
,
"%d %b %Y"
,
false
,
$outputlangs
,
true
),
''
,
'R'
);
$pdf
->
MultiCell
(
100
,
4
,
$outputlangs
->
transnoentities
(
"Date"
)
.
" : "
.
dol_print_date
(
(
$object
->
date_
delivery
?
$object
->
date_delivery
:
$date
->
valid
)
,
"%d %b %Y"
,
false
,
$outputlangs
,
true
),
''
,
'R'
);
}
else
{
...
...
@@ -541,6 +544,14 @@ class pdf_typhon extends ModelePDFDeliveryOrder
$pdf
->
SetTextColor
(
0
,
0
,
60
);
}
if
(
$object
->
client
->
code_client
)
{
$posy
+=
5
;
$pdf
->
SetXY
(
100
,
$posy
);
$pdf
->
SetTextColor
(
0
,
0
,
60
);
$pdf
->
MultiCell
(
100
,
3
,
$outputlangs
->
transnoentities
(
"CustomerCode"
)
.
" : "
.
$outputlangs
->
transnoentities
(
$object
->
client
->
code_client
),
''
,
'R'
);
}
$pdf
->
SetTextColor
(
0
,
0
,
60
);
// Add list of linked orders
...
...
@@ -612,8 +623,6 @@ class pdf_typhon extends ModelePDFDeliveryOrder
// Cadre client destinataire
$pdf
->
rect
(
100
,
$posy
,
100
,
$hautcadre
);
$object
->
fetch_client
();
// If SHIPPING contact defined on invoice, we use it
$usecontact
=
false
;
$arrayidcontact
=
$object
->
commande
->
getIdContact
(
'external'
,
'SHIPPING'
);
...
...
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