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
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software_Artifact_Infrastructure_Repository
dolibarr
Commits
bd4a31c4
Commit
bd4a31c4
authored
9 years ago
by
Laurent Destailleur
Browse files
Options
Downloads
Plain Diff
Merge pull request #3320 from fmarcet/3.7
Fix: Not showing delivery date on rouget pdf (expedition)
parents
c42e952c
e130af80
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
ChangeLog
+1
-0
1 addition, 0 deletions
ChangeLog
htdocs/core/modules/expedition/doc/pdf_rouget.modules.php
+1
-1
1 addition, 1 deletion
htdocs/core/modules/expedition/doc/pdf_rouget.modules.php
with
2 additions
and
1 deletion
ChangeLog
+
1
−
0
View file @
bd4a31c4
...
@@ -16,6 +16,7 @@ FIX [ bug #3055 ] Product image thumbnails were not deleted after deleting the i
...
@@ -16,6 +16,7 @@ FIX [ bug #3055 ] Product image thumbnails were not deleted after deleting the i
FIX [ bug 1634 ] Error deleting a project when it had many linked objects
FIX [ bug 1634 ] Error deleting a project when it had many linked objects
FIX [ bug 1925 ] "Link to order" option in supplier invoices is not working properly
FIX [ bug 1925 ] "Link to order" option in supplier invoices is not working properly
FIX [ bug #3198 ] Trigger LINECONTRACT_INSERT passes Contrat as $object instead of ContratLigne
FIX [ bug #3198 ] Trigger LINECONTRACT_INSERT passes Contrat as $object instead of ContratLigne
FIX: Not showing delivery date on rouget pdf
NEW: Created new ContratLigne::insert function
NEW: Created new ContratLigne::insert function
...
...
This diff is collapsed.
Click to expand it.
htdocs/core/modules/expedition/doc/pdf_rouget.modules.php
+
1
−
1
View file @
bd4a31c4
...
@@ -544,7 +544,7 @@ class pdf_rouget extends ModelePdfExpedition
...
@@ -544,7 +544,7 @@ class pdf_rouget extends ModelePdfExpedition
$posy
+=
4
;
$posy
+=
4
;
$pdf
->
SetXY
(
$posx
,
$posy
);
$pdf
->
SetXY
(
$posx
,
$posy
);
$pdf
->
SetTextColor
(
0
,
0
,
60
);
$pdf
->
SetTextColor
(
0
,
0
,
60
);
$pdf
->
MultiCell
(
100
,
4
,
$outputlangs
->
transnoentities
(
"DateDeliveryPlanned"
)
.
" : "
.
dol_print_date
(
$object
->
date_liv
raison
,
"daytext"
,
false
,
$outputlangs
,
true
),
''
,
'R'
);
$pdf
->
MultiCell
(
100
,
4
,
$outputlangs
->
transnoentities
(
"DateDeliveryPlanned"
)
.
" : "
.
dol_print_date
(
$object
->
date_
de
liv
ery
,
"daytext"
,
false
,
$outputlangs
,
true
),
''
,
'R'
);
if
(
!
empty
(
$object
->
client
->
code_client
))
if
(
!
empty
(
$object
->
client
->
code_client
))
{
{
...
...
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