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
a830ef94
Commit
a830ef94
authored
14 years ago
by
Laurent Destailleur
Browse files
Options
Downloads
Patches
Plain Diff
Fix: Works with IRPF/RE
parent
c1d61485
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/commande/pdf_einstein.modules.php
+41
-35
41 additions, 35 deletions
htdocs/includes/modules/commande/pdf_einstein.modules.php
htdocs/includes/modules/propale/pdf_propale_azur.modules.php
+43
-37
43 additions, 37 deletions
htdocs/includes/modules/propale/pdf_propale_azur.modules.php
with
84 additions
and
72 deletions
htdocs/includes/modules/commande/pdf_einstein.modules.php
+
41
−
35
View file @
a830ef94
...
...
@@ -552,7 +552,7 @@ class pdf_einstein extends ModelePDFCommandes
function
_tableau_tot
(
&
$pdf
,
$object
,
$deja_regle
,
$posy
,
$outputlangs
)
{
global
$conf
,
$mysoc
;
$tab2_top
=
$posy
;
$tab2_hl
=
5
;
$tab2_height
=
$tab2_hl
*
4
;
...
...
@@ -607,7 +607,7 @@ class pdf_einstein extends ModelePDFCommandes
$pdf
->
MultiCell
(
$largcol2
,
$tab2_hl
,
price
(
$object
->
total_tva
),
0
,
'R'
,
1
);
// Total LocalTax1
if
(
$conf
->
global
->
FACTURE_LOCAL_TAX1_OPTION
==
'localtax1on'
&&
$object
->
total_localtax1
>
0
)
if
(
!
empty
(
$conf
->
global
->
FACTURE_LOCAL_TAX1_OPTION
)
&&
$conf
->
global
->
FACTURE_LOCAL_TAX1_OPTION
==
'localtax1on'
&&
$object
->
total_localtax1
>
0
)
{
$index
++
;
$pdf
->
SetXY
(
$col1x
,
$tab2_top
+
$tab2_hl
*
$index
);
...
...
@@ -617,7 +617,7 @@ class pdf_einstein extends ModelePDFCommandes
}
// Total LocalTax2
if
(
$conf
->
global
->
FACTURE_LOCAL_TAX
1
_OPTION
==
'localtax2on'
&&
$object
->
total_localtax2
>
0
)
if
(
!
empty
(
$conf
->
global
->
FACTURE_LOCAL_TAX
2_OPTION
)
&&
$conf
->
global
->
FACTURE_LOCAL_TAX2
_OPTION
==
'localtax2on'
&&
$object
->
total_localtax2
>
0
)
{
$index
++
;
$pdf
->
SetXY
(
$col1x
,
$tab2_top
+
$tab2_hl
*
$index
);
...
...
@@ -629,52 +629,58 @@ class pdf_einstein extends ModelePDFCommandes
else
{
//Local tax 1
foreach
(
$this
->
lo
c
al
tax1
as
$tvakey
=>
$tvaval
)
if
(
!
empty
(
$conf
->
g
lo
b
al
->
FACTURE_LOCAL_TAX1_OPTION
)
&&
$conf
->
global
->
FACTURE_LOCAL_TAX1_OPTION
==
'localtax1on'
)
{
if
(
$tvakey
>
0
)
// On affiche pas taux 0
foreach
(
$this
->
localtax1
as
$tvakey
=>
$tvaval
)
{
//$this->atleastoneratenotnull++;
if
(
$tvakey
>
0
)
// On affiche pas taux 0
{
//$this->atleastoneratenotnull++;
$index
++
;
$pdf
->
SetXY
(
$col1x
,
$tab2_top
+
$tab2_hl
*
$index
);
$index
++
;
$pdf
->
SetXY
(
$col1x
,
$tab2_top
+
$tab2_hl
*
$index
);
$tvacompl
=
''
;
if
(
preg_match
(
'/\*/'
,
$tvakey
))
{
$tvakey
=
str_replace
(
'*'
,
''
,
$tvakey
);
$tvacompl
=
" ("
.
$outputlangs
->
transnoentities
(
"NonPercuRecuperable"
)
.
")"
;
}
$totalvat
=
$outputlangs
->
transnoentities
(
"TotalLT1"
.
$mysoc
->
pays_code
)
.
' '
;
$totalvat
.
=
vatrate
(
$tvakey
,
1
)
.
$tvacompl
;
$pdf
->
MultiCell
(
$col2x
-
$col1x
,
$tab2_hl
,
$totalvat
,
0
,
'L'
,
1
);
$tvacompl
=
''
;
if
(
preg_match
(
'/\*/'
,
$tvakey
))
{
$tvakey
=
str_replace
(
'*'
,
''
,
$tvakey
);
$tvacompl
=
" ("
.
$outputlangs
->
transnoentities
(
"NonPercuRecuperable"
)
.
")"
;
}
$totalvat
=
$outputlangs
->
transnoentities
(
"TotalLT1"
.
$mysoc
->
pays_code
)
.
' '
;
$totalvat
.
=
vatrate
(
$tvakey
,
1
)
.
$tvacompl
;
$pdf
->
MultiCell
(
$col2x
-
$col1x
,
$tab2_hl
,
$totalvat
,
0
,
'L'
,
1
);
$pdf
->
SetXY
(
$col2x
,
$tab2_top
+
$tab2_hl
*
$index
);
$pdf
->
MultiCell
(
$largcol2
,
$tab2_hl
,
price
(
$tvaval
),
0
,
'R'
,
1
);
$pdf
->
SetXY
(
$col2x
,
$tab2_top
+
$tab2_hl
*
$index
);
$pdf
->
MultiCell
(
$largcol2
,
$tab2_hl
,
price
(
$tvaval
),
0
,
'R'
,
1
);
}
}
}
//Local tax 2
foreach
(
$this
->
lo
c
al
tax2
as
$tvakey
=>
$tvaval
)
if
(
!
empty
(
$conf
->
g
lo
b
al
->
FACTURE_LOCAL_TAX2_OPTION
)
&&
$conf
->
global
->
FACTURE_LOCAL_TAX2_OPTION
==
'localtax2on'
)
{
if
(
$tvakey
>
0
)
// On affiche pas taux 0
foreach
(
$this
->
localtax2
as
$tvakey
=>
$tvaval
)
{
//$this->atleastoneratenotnull++;
if
(
$tvakey
>
0
)
// On affiche pas taux 0
{
//$this->atleastoneratenotnull++;
$index
++
;
$pdf
->
SetXY
(
$col1x
,
$tab2_top
+
$tab2_hl
*
$index
);
$index
++
;
$pdf
->
SetXY
(
$col1x
,
$tab2_top
+
$tab2_hl
*
$index
);
$tvacompl
=
''
;
if
(
preg_match
(
'/\*/'
,
$tvakey
))
{
$tvakey
=
str_replace
(
'*'
,
''
,
$tvakey
);
$tvacompl
=
" ("
.
$outputlangs
->
transnoentities
(
"NonPercuRecuperable"
)
.
")"
;
}
$totalvat
=
$outputlangs
->
transnoentities
(
"TotalLT2"
.
$mysoc
->
pays_code
)
.
' '
;
$totalvat
.
=
vatrate
(
$tvakey
,
1
)
.
$tvacompl
;
$pdf
->
MultiCell
(
$col2x
-
$col1x
,
$tab2_hl
,
$totalvat
,
0
,
'L'
,
1
);
$tvacompl
=
''
;
if
(
preg_match
(
'/\*/'
,
$tvakey
))
{
$tvakey
=
str_replace
(
'*'
,
''
,
$tvakey
);
$tvacompl
=
" ("
.
$outputlangs
->
transnoentities
(
"NonPercuRecuperable"
)
.
")"
;
}
$totalvat
=
$outputlangs
->
transnoentities
(
"TotalLT2"
.
$mysoc
->
pays_code
)
.
' '
;
$totalvat
.
=
vatrate
(
$tvakey
,
1
)
.
$tvacompl
;
$pdf
->
MultiCell
(
$col2x
-
$col1x
,
$tab2_hl
,
$totalvat
,
0
,
'L'
,
1
);
$pdf
->
SetXY
(
$col2x
,
$tab2_top
+
$tab2_hl
*
$index
);
$pdf
->
MultiCell
(
$largcol2
,
$tab2_hl
,
price
(
$tvaval
),
0
,
'R'
,
1
);
$pdf
->
SetXY
(
$col2x
,
$tab2_top
+
$tab2_hl
*
$index
);
$pdf
->
MultiCell
(
$largcol2
,
$tab2_hl
,
price
(
$tvaval
),
0
,
'R'
,
1
);
}
}
}
}
...
...
This diff is collapsed.
Click to expand it.
htdocs/includes/modules/propale/pdf_propale_azur.modules.php
+
43
−
37
View file @
a830ef94
...
...
@@ -635,7 +635,7 @@ class pdf_propale_azur extends ModelePDFPropales
$pdf
->
MultiCell
(
$largcol2
,
$tab2_hl
,
price
(
$object
->
total_tva
),
0
,
'R'
,
1
);
// Total LocalTax1
if
(
$conf
->
global
->
FACTURE_LOCAL_TAX1_OPTION
==
'localtax1on'
&&
$object
->
total_localtax1
>
0
)
if
(
!
empty
(
$conf
->
global
->
FACTURE_LOCAL_TAX1_OPTION
)
&&
$conf
->
global
->
FACTURE_LOCAL_TAX1_OPTION
==
'localtax1on'
&&
$object
->
total_localtax1
>
0
)
{
$index
++
;
$pdf
->
SetXY
(
$col1x
,
$tab2_top
+
$tab2_hl
*
$index
);
...
...
@@ -645,7 +645,7 @@ class pdf_propale_azur extends ModelePDFPropales
}
// Total LocalTax2
if
(
$conf
->
global
->
FACTURE_LOCAL_TAX
1
_OPTION
==
'localtax2on'
&&
$object
->
total_localtax2
>
0
)
if
(
!
empty
(
$conf
->
global
->
FACTURE_LOCAL_TAX
2_OPTION
)
&&
$conf
->
global
->
FACTURE_LOCAL_TAX2
_OPTION
==
'localtax2on'
&&
$object
->
total_localtax2
>
0
)
{
$index
++
;
$pdf
->
SetXY
(
$col1x
,
$tab2_top
+
$tab2_hl
*
$index
);
...
...
@@ -657,55 +657,61 @@ class pdf_propale_azur extends ModelePDFPropales
else
{
//Local tax 1
foreach
(
$this
->
lo
c
al
tax1
as
$tvakey
=>
$tvaval
)
if
(
!
empty
(
$conf
->
g
lo
b
al
->
FACTURE_LOCAL_TAX1_OPTION
)
&&
$conf
->
global
->
FACTURE_LOCAL_TAX1_OPTION
==
'localtax1on'
)
{
if
(
$tvakey
>
0
)
// On affiche pas taux 0
foreach
(
$this
->
localtax1
as
$tvakey
=>
$tvaval
)
{
//$this->atleastoneratenotnull++;
$index
++
;
$pdf
->
SetXY
(
$col1x
,
$tab2_top
+
$tab2_hl
*
$index
);
$tvacompl
=
''
;
if
(
preg_match
(
'/\*/'
,
$tvakey
))
if
(
$tvakey
>
0
)
// On affiche pas taux 0
{
$tvakey
=
str_replace
(
'*'
,
''
,
$tvakey
);
$tvacompl
=
" ("
.
$outputlangs
->
transnoentities
(
"NonPercuRecuperable"
)
.
")"
;
//$this->atleastoneratenotnull++;
$index
++
;
$pdf
->
SetXY
(
$col1x
,
$tab2_top
+
$tab2_hl
*
$index
);
$tvacompl
=
''
;
if
(
preg_match
(
'/\*/'
,
$tvakey
))
{
$tvakey
=
str_replace
(
'*'
,
''
,
$tvakey
);
$tvacompl
=
" ("
.
$outputlangs
->
transnoentities
(
"NonPercuRecuperable"
)
.
")"
;
}
$totalvat
=
$outputlangs
->
transnoentities
(
"TotalLT1"
.
$mysoc
->
pays_code
)
.
' '
;
$totalvat
.
=
vatrate
(
$tvakey
,
1
)
.
$tvacompl
;
$pdf
->
MultiCell
(
$col2x
-
$col1x
,
$tab2_hl
,
$totalvat
,
0
,
'L'
,
1
);
$pdf
->
SetXY
(
$col2x
,
$tab2_top
+
$tab2_hl
*
$index
);
$pdf
->
MultiCell
(
$largcol2
,
$tab2_hl
,
price
(
$tvaval
),
0
,
'R'
,
1
);
}
$totalvat
=
$outputlangs
->
transnoentities
(
"TotalLT1"
.
$mysoc
->
pays_code
)
.
' '
;
$totalvat
.
=
vatrate
(
$tvakey
,
1
)
.
$tvacompl
;
$pdf
->
MultiCell
(
$col2x
-
$col1x
,
$tab2_hl
,
$totalvat
,
0
,
'L'
,
1
);
$pdf
->
SetXY
(
$col2x
,
$tab2_top
+
$tab2_hl
*
$index
);
$pdf
->
MultiCell
(
$largcol2
,
$tab2_hl
,
price
(
$tvaval
),
0
,
'R'
,
1
);
}
}
//Local tax 2
foreach
(
$this
->
lo
c
al
tax2
as
$tvakey
=>
$tvaval
)
{
if
(
$tvakey
>
0
)
// On affiche pas taux 0
if
(
!
empty
(
$conf
->
g
lo
b
al
->
FACTURE_LOCAL_TAX2_OPTION
)
&&
$conf
->
global
->
FACTURE_LOCAL_TAX2_OPTION
==
'localtax2on'
)
{
foreach
(
$this
->
localtax2
as
$tvakey
=>
$tvaval
)
{
//$this->atleastoneratenotnull++;
if
(
$tvakey
>
0
)
// On affiche pas taux 0
{
//$this->atleastoneratenotnull++;
$index
++
;
$pdf
->
SetXY
(
$col1x
,
$tab2_top
+
$tab2_hl
*
$index
);
$index
++
;
$pdf
->
SetXY
(
$col1x
,
$tab2_top
+
$tab2_hl
*
$index
);
$tvacompl
=
''
;
if
(
preg_match
(
'/\*/'
,
$tvakey
))
{
$tvakey
=
str_replace
(
'*'
,
''
,
$tvakey
);
$tvacompl
=
" ("
.
$outputlangs
->
transnoentities
(
"NonPercuRecuperable"
)
.
")"
;
}
$totalvat
=
$outputlangs
->
transnoentities
(
"TotalLT2"
.
$mysoc
->
pays_code
)
.
' '
;
$totalvat
.
=
vatrate
(
$tvakey
,
1
)
.
$tvacompl
;
$pdf
->
MultiCell
(
$col2x
-
$col1x
,
$tab2_hl
,
$totalvat
,
0
,
'L'
,
1
);
$tvacompl
=
''
;
if
(
preg_match
(
'/\*/'
,
$tvakey
))
{
$tvakey
=
str_replace
(
'*'
,
''
,
$tvakey
);
$tvacompl
=
" ("
.
$outputlangs
->
transnoentities
(
"NonPercuRecuperable"
)
.
")"
;
}
$totalvat
=
$outputlangs
->
transnoentities
(
"TotalLT2"
.
$mysoc
->
pays_code
)
.
' '
;
$totalvat
.
=
vatrate
(
$tvakey
,
1
)
.
$tvacompl
;
$pdf
->
MultiCell
(
$col2x
-
$col1x
,
$tab2_hl
,
$totalvat
,
0
,
'L'
,
1
);
$pdf
->
SetXY
(
$col2x
,
$tab2_top
+
$tab2_hl
*
$index
);
$pdf
->
MultiCell
(
$largcol2
,
$tab2_hl
,
price
(
$tvaval
),
0
,
'R'
,
1
);
$pdf
->
SetXY
(
$col2x
,
$tab2_top
+
$tab2_hl
*
$index
);
$pdf
->
MultiCell
(
$largcol2
,
$tab2_hl
,
price
(
$tvaval
),
0
,
'R'
,
1
);
}
}
}
}
}
}
...
...
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