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
fb7e6808
Commit
fb7e6808
authored
19 years ago
by
Laurent Destailleur
Browse files
Options
Downloads
Patches
Plain Diff
New: Ajoute code produit sur facture crabe si parametre FACTURE_CODEPRODUITSERVICE defini.
parent
5229690a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
htdocs/includes/modules/facture/pdf_crabe.modules.php
+17
-10
17 additions, 10 deletions
htdocs/includes/modules/facture/pdf_crabe.modules.php
with
17 additions
and
10 deletions
htdocs/includes/modules/facture/pdf_crabe.modules.php
+
17
−
10
View file @
fb7e6808
...
...
@@ -40,14 +40,15 @@ class pdf_crabe extends ModelePDFFactures
/**
\brief Constructeur
\param db
h
andler accs base de donne
\param db
H
andler accs base de donne
*/
function
pdf_crabe
(
$db
)
{
global
$langs
;
$this
->
db
=
$db
;
$this
->
description
=
"Modle de facture complet (Gre l'option fiscale de facturation TVA, le choix du mode de rglement afficher, logo...)"
;
$this
->
name
=
"crabe"
;
$this
->
description
=
"Modle de facture complet (Gre l'option fiscale de facturation TVA, le choix du mode de rglement afficher, logo...)"
;
$this
->
option_logo
=
1
;
// Affiche logo FAC_PDF_LOGO
$this
->
option_tva
=
1
;
// Gere option tva FACTURE_TVAOPTION
$this
->
option_modereg
=
1
;
// Gere choix mode rglement FACTURE_CHQ_NUMBER, FACTURE_RIB_NUMBER
...
...
@@ -103,7 +104,7 @@ class pdf_crabe extends ModelePDFFactures
if
(
$conf
->
facture
->
dir_output
)
{
$fac
=
new
Facture
(
$this
->
db
,
""
,
$facid
);
$fac
->
fetch
(
$facid
);
$ret
=
$fac
->
fetch
(
$facid
);
$facref
=
sanitize_string
(
$fac
->
ref
);
$dir
=
$conf
->
facture
->
dir_output
.
"/"
.
$facref
;
...
...
@@ -147,29 +148,35 @@ class pdf_crabe extends ModelePDFFactures
$nexY
=
$pdf
->
GetY
();
$nblignes
=
sizeof
(
$fac
->
lignes
);
// Boucle sur les lignes
de factures
// Boucle sur les lignes
for
(
$i
=
0
;
$i
<
$nblignes
;
$i
++
)
{
$curY
=
$nexY
;
// Description produit
$codeproduitservice
=
""
;
$libelleproduitservice
=
$fac
->
lignes
[
$i
]
->
libelle
;
if
(
$fac
->
lignes
[
$i
]
->
desc
&&
$fac
->
lignes
[
$i
]
->
desc
!=
$fac
->
lignes
[
$i
]
->
libelle
)
{
if
(
$libelleproduitservice
)
$libelleproduitservice
.
=
"
\n
"
;
$libelleproduitservice
.
=
$fac
->
lignes
[
$i
]
->
desc
;
}
$pdf
->
SetXY
(
11
,
$curY
);
if
(
defined
(
"FACTURE_CODEPRODUITSERVICE"
)
&&
FACTURE_CODEPRODUITSERVICE
)
{
if
(
$conf
->
global
->
FACTURE_CODEPRODUITSERVICE
&&
$fac
->
lignes
[
$i
]
->
produit_id
)
{
// Affiche code produit si ligne associe un code produit
$prodser
=
new
Product
(
$this
->
db
);
$prodser
->
fetch
(
$fac
->
lignes
[
$i
]
->
produit_id
);
if
(
$prodser
->
ref
)
{
$
cod
eproduitservice
=
" - "
.
$langs
->
trans
(
"ProductCode"
)
.
" "
.
$prodser
->
ref
;
$
libell
eproduitservice
=
$langs
->
trans
(
"ProductCode"
)
.
" "
.
$prodser
->
ref
.
" - "
.
$libelleproduitservice
;
}
}
if
(
$fac
->
lignes
[
$i
]
->
date_start
&&
$fac
->
lignes
[
$i
]
->
date_end
)
{
// Affichage dure si il y en a une
$
cod
eproduitservice
.
=
"
("
.
$langs
->
trans
(
"From"
)
.
" "
.
dolibarr_print_date
(
$fac
->
lignes
[
$i
]
->
date_start
)
.
" "
.
$langs
->
trans
(
"to"
)
.
" "
.
dolibarr_print_date
(
$fac
->
lignes
[
$i
]
->
date_end
)
.
")"
;
$
libell
eproduitservice
.
=
"
\n
("
.
$langs
->
trans
(
"From"
)
.
" "
.
dolibarr_print_date
(
$fac
->
lignes
[
$i
]
->
date_start
)
.
" "
.
$langs
->
trans
(
"to"
)
.
" "
.
dolibarr_print_date
(
$fac
->
lignes
[
$i
]
->
date_end
)
.
")"
;
}
$pdf
->
MultiCell
(
108
,
5
,
$
fac
->
lignes
[
$i
]
->
desc
.
"
$cod
eproduitservice
"
,
0
,
'J'
);
$pdf
->
MultiCell
(
108
,
5
,
$
libell
eproduitservice
,
0
,
'J'
);
$nexY
=
$pdf
->
GetY
();
...
...
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