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
b8e5d0c5
Commit
b8e5d0c5
authored
19 years ago
by
Rodolphe Quiedeville
Browse files
Options
Downloads
Patches
Plain Diff
Bugfix
parent
159b2739
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/telephonie/script/commande_presel_statut.php
+25
-9
25 additions, 9 deletions
htdocs/telephonie/script/commande_presel_statut.php
with
25 additions
and
9 deletions
htdocs/telephonie/script/commande_presel_statut.php
+
25
−
9
View file @
b8e5d0c5
...
...
@@ -167,14 +167,13 @@ function GetPreselection_byRef($db, $host, $user_login, $user_passwd, $ids)
if
(
$ligne_numero
&&
$ligne_service
&&
$ligne_presel
)
{
$situation_key
=
"
$ligne_service
/
$ligne_presel
"
;
$sql
=
"SELECT
max(
date_traitement
)
, situation"
;
$sql
=
"SELECT date_traitement, situation"
;
$sql
.
=
" FROM "
.
MAIN_DB_PREFIX
.
"telephonie_commande_retour"
;
$sql
.
=
" WHERE fk_fournisseur = 4"
;
$sql
.
=
" AND cli = '"
.
$ligne_numero
.
"'"
;
$sql
.
=
"
GROUP BY cli
;"
;
$sql
.
=
"
ORDER BY date_traitement DESC LIMIT 1
;"
;
$resql
=
$db
->
query
(
$sql
);
...
...
@@ -200,16 +199,29 @@ function GetPreselection_byRef($db, $host, $user_login, $user_passwd, $ids)
_log
(
"
$cli
lecture etat de ligne ERREUR"
,
LOG_ERR
);
}
_log
(
"
$cli
log etat de la ligne"
,
LOG_NOTICE
);
if
(
$insert
==
1
)
{
$sql
=
"INSERT INTO "
.
MAIN_DB_PREFIX
.
"telephonie_commande_retour"
;
$sql
.
=
" (cli,mode,date_traitement,situation,fk_fournisseur) "
;
$sql
.
=
" VALUES ('
$ligne_numero
','PRESELECTION',now(),'
$situation_key
',4);"
;
if
(
$situation_key
==
'TRAITE_OK / EN_COURS'
)
{
$sql
.
=
" (cli,mode,date_traitement,situation,fk_fournisseur,traite) "
;
$sql
.
=
" VALUES ('
$ligne_numero
','PRESELECTION',now(),'
$situation_key
',4,1);"
;
}
elseif
(
$situation_key
==
'ATTENTE / EN_COURS'
)
{
$sql
.
=
" (cli,mode,date_traitement,situation,fk_fournisseur,traite) "
;
$sql
.
=
" VALUES ('
$ligne_numero
','PRESELECTION',now(),'
$situation_key
',4,1);"
;
}
else
{
$sql
.
=
" (cli,mode,date_traitement,situation,fk_fournisseur) "
;
$sql
.
=
" VALUES ('
$ligne_numero
','PRESELECTION',now(),'
$situation_key
',4);"
;
}
$resql
=
$db
->
query
(
$sql
);
_log
(
"
$cli
log etat de la ligne"
,
LOG_NOTICE
);
if
(
$resql
)
{
_log
(
"
$cli
log etat de la ligne SUCCESS"
,
LOG_NOTICE
);
...
...
@@ -219,6 +231,10 @@ function GetPreselection_byRef($db, $host, $user_login, $user_passwd, $ids)
_log
(
"
$cli
log etat de la ligne ERREUR"
,
LOG_ERR
);
}
}
else
{
_log
(
"
$cli
log etat de la ligne IDENTIQUE"
,
LOG_NOTICE
);
}
}
else
{
...
...
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