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
1c43e655
Commit
1c43e655
authored
16 years ago
by
Laurent Destailleur
Browse files
Options
Downloads
Patches
Plain Diff
Fix: Numbering for terre
parent
fda9eb1c
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/terre/terre.modules.php
+5
-24
5 additions, 24 deletions
htdocs/includes/modules/facture/terre/terre.modules.php
with
5 additions
and
24 deletions
htdocs/includes/modules/facture/terre/terre.modules.php
+
5
−
24
View file @
1c43e655
...
...
@@ -120,16 +120,17 @@ class mod_facture_terre extends ModeleNumRefFactures
else
$prefix
=
$this
->
prefixinvoice
;
// D'abord on rcupre la valeur max (rponse immdiate car champ indx)
$
fayymm
=
''
;
$sql
=
"SELECT MAX(facnumber
)
"
;
$
posindice
=
8
;
$sql
=
"SELECT MAX(facnumber
+SUBSTRING(facnumber,"
.
$posindice
.
")) as ref
"
;
$sql
.
=
" FROM "
.
MAIN_DB_PREFIX
.
"facture"
;
$sql
.
=
" WHERE facnumber like '"
.
$prefix
.
"%'"
;
$resql
=
$db
->
query
(
$sql
);
if
(
$resql
)
{
$row
=
$db
->
fetch_row
(
$resql
);
if
(
$row
)
$fayymm
=
substr
(
$row
[
0
],
0
,
6
);
$obj
=
$db
->
fetch_object
(
$resql
);
if
(
$obj
)
$max
=
$obj
->
ref
;
else
$max
=
0
;
}
else
{
...
...
@@ -137,26 +138,6 @@ class mod_facture_terre extends ModeleNumRefFactures
return
-
1
;
}
// Si champ respectant le modle a t trouve
if
(
eregi
(
'^'
.
$prefix
.
'[0-9][0-9][0-9][0-9]'
,
$fayymm
))
{
// Recherche rapide car restreint par un like sur champ index
$posindice
=
8
;
$sql
=
"SELECT MAX(0+SUBSTRING(facnumber,"
.
$posindice
.
"))"
;
$sql
.
=
" FROM "
.
MAIN_DB_PREFIX
.
"facture"
;
$sql
.
=
" WHERE facnumber like '"
.
$fayymm
.
"%'"
;
$resql
=
$db
->
query
(
$sql
);
if
(
$resql
)
{
$row
=
$db
->
fetch_row
(
$resql
);
$max
=
$row
[
0
];
}
}
else
{
$max
=
0
;
}
//$date=time();
$date
=
$facture
->
date
;
$yymm
=
strftime
(
"%y%m"
,
$date
);
...
...
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