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
88e23350
Commit
88e23350
authored
19 years ago
by
Rodolphe Quiedeville
Browse files
Options
Downloads
Patches
Plain Diff
Nouveau fichier
parent
f45e40d2
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
htdocs/telephonie/fournisseur/commande/commande.web.class.php
+179
-0
179 additions, 0 deletions
...cs/telephonie/fournisseur/commande/commande.web.class.php
with
179 additions
and
0 deletions
htdocs/telephonie/fournisseur/commande/commande.web.class.php
0 → 100644
+
179
−
0
View file @
88e23350
<?PHP
/* Copyright (C) 2005 Rodolphe Quiedeville <rodolphe@quiedeville.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
* $Id$
* $Source$
*
* Classe de commande de ligne au format Texte
*
*
*/
require_once
DOL_DOCUMENT_ROOT
.
"/lib/dolibarrmail.class.php"
;
require_once
DOL_DOCUMENT_ROOT
.
"/telephonie/fournisseur/commande/methode.commande.class.php"
;
define
(
'COMMANDETEXT_NOEMAIL'
,
-
3
);
class
CommandeMethodeWeb
extends
CommandeMethode
{
function
CommandeMethodeWeb
(
$DB
,
$USER
=
0
,
$fourn
=
0
)
{
$this
->
nom
=
"Mthode web"
;
$this
->
db
=
$DB
;
$this
->
user
=
$USER
;
$this
->
fourn
=
$fourn
;
}
function
info
()
{
return
"Commande les lignes au travers du web"
;
}
function
Create
()
{
$this
->
date
=
time
();
$this
->
datef
=
"comm-"
.
$this
->
fourn
->
id
.
"-"
.
strftime
(
"%d%b%y-%H:%M:%S"
,
$this
->
date
);
$this
->
filename
=
$this
->
datef
.
".txt"
;
$fname
=
DOL_DATA_ROOT
.
"/telephonie/ligne/commande/"
.
$this
->
filename
;
if
(
strlen
(
trim
(
$this
->
fourn
->
email_commande
))
==
0
)
{
return
-
3
;
}
if
(
file_exists
(
$fname
))
{
return
2
;
}
else
{
$res
=
$this
->
CreateFile
(
$fname
);
if
(
$res
==
0
)
{
$res
=
$res
+
$this
->
LogSql
();
}
return
$res
;
}
}
/**
* Creation du fichier
*
*/
function
CreateFile
(
$fname
)
{
$fp
=
fopen
(
$fname
,
"w"
);
if
(
$fp
)
{
fwrite
(
$fp
,
"Numcli;"
);
fwrite
(
$fp
,
"nomclient;"
);
fwrite
(
$fp
,
"NDI
\n
"
);
$this
->
ligneids
=
array
();
$sqlall
=
"SELECT s.nom, s.idp as socid, l.ligne, l.statut, l.rowid"
;
$sqlall
.
=
" , comm.name, comm.firstname"
;
$sqlall
.
=
" FROM "
.
MAIN_DB_PREFIX
.
"societe as s"
;
$sqlall
.
=
" , "
.
MAIN_DB_PREFIX
.
"telephonie_societe_ligne as l"
;
$sqlall
.
=
" , "
.
MAIN_DB_PREFIX
.
"user as comm"
;
$sqlall
.
=
" , "
.
MAIN_DB_PREFIX
.
"telephonie_fournisseur as f"
;
$sqlall
.
=
" WHERE l.fk_soc = s.idp AND l.fk_fournisseur = f.rowid"
;
$sqlall
.
=
" AND l.fk_commercial = comm.rowid "
;
$sqlall
.
=
" AND f.rowid ="
.
$this
->
fourn
->
id
;
/*
*
*/
$sql
=
$sqlall
;
$sql
.
=
" AND l.statut in (1,8)"
;
$sql
.
=
" ORDER BY l.statut ASC"
;
$resql
=
$this
->
db
->
query
(
$sql
);
if
(
$resql
)
{
$i
=
0
;
$num
=
$this
->
db
->
num_rows
(
$resql
);
while
(
$i
<
$num
)
{
$obj
=
$this
->
db
->
fetch_object
(
$resql
);
if
(
strlen
(
$obj
->
ligne
)
==
10
)
{
$soc
=
new
Societe
(
$this
->
db
);
$soc
->
fetch
(
$obj
->
socid
);
fwrite
(
$fp
,
$this
->
fourn
->
num_client
);
fwrite
(
$fp
,
";"
);
fwrite
(
$fp
,
$obj
->
nom
);
fwrite
(
$fp
,
";"
);
fwrite
(
$fp
,
$obj
->
ligne
);
fwrite
(
$fp
,
"
\n
"
);
array_push
(
$this
->
ligneids
,
$obj
->
rowid
);
}
$i
++
;
}
$this
->
db
->
free
(
$resql
);
}
else
{
print
$this
->
db
->
error
()
.
' '
.
$sql
;
}
fclose
(
$fp
);
/*
*
*
*/
foreach
(
$this
->
ligneids
as
$lid
)
{
$lint
=
new
LigneTel
(
$this
->
db
);
$lint
->
fetch_by_id
(
$lid
);
if
(
$lint
->
statut
==
1
)
{
$lint
->
set_statut
(
$this
->
user
,
9
);
}
if
(
$lint
->
statut
==
8
)
{
$lint
->
set_statut
(
$this
->
user
,
9
);
}
}
return
0
;
}
else
{
return
-
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