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
3804461a
Commit
3804461a
authored
19 years ago
by
Laurent Destailleur
Browse files
Options
Downloads
Patches
Plain Diff
Affichage de la référence du contrat sur le fiche contrat.
parent
f7e6d0e5
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
htdocs/contrat/contrat.class.php
+160
-143
160 additions, 143 deletions
htdocs/contrat/contrat.class.php
htdocs/contrat/fiche.php
+19
-3
19 additions, 3 deletions
htdocs/contrat/fiche.php
htdocs/contrat/ligne.php
+9
-0
9 additions, 0 deletions
htdocs/contrat/ligne.php
with
188 additions
and
146 deletions
htdocs/contrat/contrat.class.php
+
160
−
143
View file @
3804461a
...
...
@@ -36,107 +36,122 @@
class
Contrat
{
var
$id
;
var
$db
;
/**
* \brief Constructeur de la classe
* \param DB handler accès base de données
*/
function
Contrat
(
$DB
)
{
$this
->
db
=
$DB
;
$this
->
product
=
new
Product
(
$DB
);
$this
->
societe
=
new
Societe
(
$DB
);
$this
->
user_service
=
new
User
(
$DB
);
$this
->
user_cloture
=
new
User
(
$DB
);
}
/**
* \brief Modifie date de mise en service d'un contrat
* Si la duree est renseignée, date_start=date_start et date_end=date_start+duree
* sinon date_start=date_start et date_end=date_end
*/
function
mise_en_service
(
$user
,
$date_start
,
$duree
=
0
,
$date_end
)
{
if
(
$duree
)
{
// Si duree renseignee
$duree_value
=
substr
(
$duree
,
0
,
strlen
(
$duree
)
-
1
);
$duree_unit
=
substr
(
$duree
,
-
1
);
$month
=
date
(
"m"
,
$date_start
);
$day
=
date
(
"d"
,
$date_start
);
$year
=
date
(
"Y"
,
$date_start
);
switch
(
$duree_unit
)
{
case
"d"
:
$day
=
$day
+
$duree_value
;
break
;
case
"w"
:
$day
=
$day
+
(
$duree_value
*
7
);
break
;
case
"m"
:
$month
=
$month
+
$duree_value
;
break
;
case
"y"
:
$year
=
$year
+
$duree_value
;
break
;
}
$date_end
=
mktime
(
date
(
"H"
,
$date_start
),
date
(
"i"
,
$date_start
),
0
,
$month
,
$day
,
$year
);
var
$db
;
var
$id
;
var
$ref
;
var
$product
;
var
$societe
;
var
$user_service
;
var
$user_cloture
;
var
$statuts
=
array
();
/**
* \brief Constructeur de la classe
* \param DB handler accès base de données
*/
function
Contrat
(
$DB
)
{
global
$langs
;
$this
->
db
=
$DB
;
$this
->
product
=
new
Product
(
$DB
);
$this
->
societe
=
new
Societe
(
$DB
);
$this
->
user_service
=
new
User
(
$DB
);
$this
->
user_cloture
=
new
User
(
$DB
);
// Statut 0=ouvert, 1=actif, 2=cloturé
$this
->
statuts
=
array
(
$langs
->
trans
(
"Opened"
),
$langs
->
trans
(
"Running"
),
$langs
->
trans
(
"Closed"
));
}
$sql
=
"UPDATE "
.
MAIN_DB_PREFIX
.
"contrat SET statut = 1"
;
$sql
.
=
" , mise_en_service = "
.
$this
->
db
->
idate
(
$date_start
)
.
", fk_user_mise_en_service = "
.
$user
->
id
;
$sql
.
=
" , fin_validite = "
.
$this
->
db
->
idate
(
$date_end
);
$sql
.
=
" WHERE rowid = "
.
$this
->
id
.
" AND statut = 0"
;
$result
=
$this
->
db
->
query
(
$sql
)
;
if
(
$result
)
/**
* \brief Modifie date de mise en service d'un contrat
* Si la duree est renseignée, date_start=date_start et date_end=date_start+duree
* sinon date_start=date_start et date_end=date_end
*/
function
mise_en_service
(
$user
,
$date_start
,
$duree
=
0
,
$date_end
)
{
return
1
;
if
(
$duree
)
{
// Si duree renseignee
$duree_value
=
substr
(
$duree
,
0
,
strlen
(
$duree
)
-
1
);
$duree_unit
=
substr
(
$duree
,
-
1
);
$month
=
date
(
"m"
,
$date_start
);
$day
=
date
(
"d"
,
$date_start
);
$year
=
date
(
"Y"
,
$date_start
);
switch
(
$duree_unit
)
{
case
"d"
:
$day
=
$day
+
$duree_value
;
break
;
case
"w"
:
$day
=
$day
+
(
$duree_value
*
7
);
break
;
case
"m"
:
$month
=
$month
+
$duree_value
;
break
;
case
"y"
:
$year
=
$year
+
$duree_value
;
break
;
}
$date_end
=
mktime
(
date
(
"H"
,
$date_start
),
date
(
"i"
,
$date_start
),
0
,
$month
,
$day
,
$year
);
}
$sql
=
"UPDATE "
.
MAIN_DB_PREFIX
.
"contrat SET statut = 1"
;
$sql
.
=
" , mise_en_service = "
.
$this
->
db
->
idate
(
$date_start
)
.
", fk_user_mise_en_service = "
.
$user
->
id
;
$sql
.
=
" , fin_validite = "
.
$this
->
db
->
idate
(
$date_end
);
$sql
.
=
" WHERE rowid = "
.
$this
->
id
.
" AND statut = 0"
;
$result
=
$this
->
db
->
query
(
$sql
)
;
if
(
$result
)
{
return
1
;
}
else
{
$this
->
error
=
$this
->
db
->
error
();
return
-
1
;
}
}
else
/**
* \brief Active une ligne detail d'un contrat
* \param user Objet User qui avtice le contrat
* \param line_id Id de la ligne de detail à activer
* \param date Date d'ouverture
*/
function
active_line
(
$user
,
$line_id
,
$date
)
{
$this
->
error
=
$this
->
db
->
error
();
return
-
1
;
// statut actif : 4
$sql
=
"UPDATE "
.
MAIN_DB_PREFIX
.
"contratdet SET statut = 4"
;
$sql
.
=
" , date_ouverture = '"
.
$this
->
db
->
idate
(
$date
)
.
"', fk_user_ouverture = "
.
$user
->
id
;
$sql
.
=
" WHERE rowid = "
.
$line_id
.
" AND (statut = 0 OR statut = 3) "
;
$result
=
$this
->
db
->
query
(
$sql
)
;
if
(
$result
)
{
// Appel des triggers
include_once
(
DOL_DOCUMENT_ROOT
.
"/interfaces.class.php"
);
$interface
=
new
Interfaces
(
$this
->
db
);
$interface
->
run_triggers
(
'CONTRACT_SERVICE_ACTIVATE'
,
$this
,
$user
,
$lang
,
$conf
);
// Fin appel triggers
return
0
;
}
else
{
$this
->
error
=
$this
->
db
->
error
();
return
-
1
;
}
}
}
/**
* \brief Active une ligne detail d'un contrat
* \param user Objet User qui avtice le contrat
* \param line_id Id de la ligne de detail à activer
* \param date Date d'ouverture
*/
function
active_line
(
$user
,
$line_id
,
$date
)
{
// statut actif : 4
$sql
=
"UPDATE "
.
MAIN_DB_PREFIX
.
"contratdet SET statut = 4"
;
$sql
.
=
" , date_ouverture = '"
.
$this
->
db
->
idate
(
$date
)
.
"', fk_user_ouverture = "
.
$user
->
id
;
$sql
.
=
" WHERE rowid = "
.
$line_id
.
" AND (statut = 0 OR statut = 3) "
;
$result
=
$this
->
db
->
query
(
$sql
)
;
if
(
$result
)
{
// Appel des triggers
include_once
(
DOL_DOCUMENT_ROOT
.
"/interfaces.class.php"
);
$interface
=
new
Interfaces
(
$this
->
db
);
$interface
->
run_triggers
(
'CONTRACT_SERVICE_ACTIVATE'
,
$this
,
$user
,
$lang
,
$conf
);
// Fin appel triggers
return
0
;
}
else
{
$this
->
error
=
$this
->
db
->
error
();
return
-
1
;
}
}
/**
* \brief Cloture un contrat
...
...
@@ -184,61 +199,63 @@ class Contrat
// Fin appel triggers
}
/**
* \brief Charge de la base les données du contrat
* \param id id du contrat à charger
* \return int <0 si KO, >0 si OK
*/
function
fetch
(
$id
)
{
$sql
=
"SELECT rowid, statut, fk_soc, "
.
$this
->
db
->
pdate
(
"mise_en_service"
)
.
" as datemise"
;
$sql
.
=
", fk_user_mise_en_service, "
.
$this
->
db
->
pdate
(
"date_contrat"
)
.
" as datecontrat"
;
$sql
.
=
" , fk_user_author"
;
$sql
.
=
", fk_commercial_signature, fk_commercial_suivi "
;
$sql
.
=
" FROM "
.
MAIN_DB_PREFIX
.
"contrat WHERE rowid =
$id
"
;
$resql
=
$this
->
db
->
query
(
$sql
)
;
if
(
$resql
)
/**
* \brief Charge de la base les données du contrat
* \param id id du contrat à charger
* \return int <0 si KO, >0 si OK
*/
function
fetch
(
$id
)
{
$result
=
$this
->
db
->
fetch_array
(
$resql
);
$sql
=
"SELECT rowid, statut, fk_soc, "
.
$this
->
db
->
pdate
(
"mise_en_service"
)
.
" as datemise"
;
$sql
.
=
", fk_user_mise_en_service, "
.
$this
->
db
->
pdate
(
"date_contrat"
)
.
" as datecontrat"
;
$sql
.
=
" , fk_user_author"
;
$sql
.
=
", fk_commercial_signature, fk_commercial_suivi "
;
$sql
.
=
" FROM "
.
MAIN_DB_PREFIX
.
"contrat WHERE rowid =
$id
"
;
$this
->
id
=
$result
[
"rowid"
];
$this
->
statut
=
$result
[
"statut"
];
$this
->
factureid
=
$result
[
"fk_facture"
];
$this
->
facturedetid
=
$result
[
"fk_facturedet"
];
$this
->
mise_en_service
=
$result
[
"datemise"
];
$this
->
date_fin_validite
=
$result
[
"datefin"
];
$this
->
date_contrat
=
$result
[
"datecontrat"
];
$resql
=
$this
->
db
->
query
(
$sql
)
;
$this
->
user_author_id
=
$result
[
"fk_user_author"
];
if
(
$resql
)
{
$result
=
$this
->
db
->
fetch_array
(
$resql
);
$this
->
commercial_signature_id
=
$result
[
"fk_commercial_signature"
];
$this
->
commercial_suivi_id
=
$result
[
"fk_commercial_suivi"
];
$this
->
id
=
$result
[
"rowid"
];
$this
->
ref
=
$result
[
"rowid"
];
$this
->
statut
=
$result
[
"statut"
];
$this
->
factureid
=
$result
[
"fk_facture"
];
$this
->
facturedetid
=
$result
[
"fk_facturedet"
];
$this
->
mise_en_service
=
$result
[
"datemise"
];
$this
->
date_fin_validite
=
$result
[
"datefin"
];
$this
->
date_contrat
=
$result
[
"datecontrat"
];
$this
->
user_service
->
id
=
$result
[
"fk_user_mise_en_service"
];
$this
->
user_cloture
->
id
=
$result
[
"fk_user_cloture"
];
$this
->
user_author_id
=
$result
[
"fk_user_author"
];
$this
->
societe
->
fetch
(
$result
[
"fk_soc"
]);
$this
->
commercial_signature_id
=
$result
[
"fk_commercial_signature"
];
$this
->
commercial_suivi_id
=
$result
[
"fk_commercial_suivi"
];
$this
->
db
->
free
(
$resql
);
$this
->
user_service
->
id
=
$result
[
"fk_user_mise_en_service"
];
$this
->
user_cloture
->
id
=
$result
[
"fk_user_cloture"
];
$this
->
societe
->
fetch
(
$result
[
"fk_soc"
]);
$this
->
db
->
free
(
$resql
);
return
1
;
}
else
{
$this
->
error
=
$this
->
db
->
error
();
return
-
1
;
}
return
1
;
}
else
{
$this
->
error
=
$this
->
db
->
error
();
return
-
1
;
}
}
/**
* \brief Crée un contrat vierge
* \param user Utilisateur qui crée
* \param lang Environnement langue de l'utilisateur
* \param conf Environnement de configuration lors de l'opération
*/
/**
* \brief Crée un contrat vierge
* \param user Utilisateur qui crée
* \param lang Environnement langue de l'utilisateur
* \param conf Environnement de configuration lors de l'opération
*/
function
create
(
$user
,
$lang
=
''
,
$conf
=
''
)
{
$sql
=
"INSERT INTO "
.
MAIN_DB_PREFIX
.
"contrat (datec, fk_soc, fk_user_author, fk_commercial_signature, fk_commercial_suivi, date_contrat)"
;
...
...
@@ -265,7 +282,7 @@ class Contrat
return
$result
;
}
/**
* \brief Ajoute une ligne de commande
...
...
This diff is collapsed.
Click to expand it.
htdocs/contrat/fiche.php
+
19
−
3
View file @
3804461a
...
...
@@ -138,7 +138,7 @@ if ($_POST["action"] == 'updateligne' && $user->rights->contrat->creer)
}
else
{
print
"Erreur"
;
dolibarr_print_error
(
$db
)
;
}
}
...
...
@@ -193,7 +193,7 @@ if ($action == 'pdf')
commande_pdf_create
(
$db
,
$_GET
[
"id"
]);
}
llxHeader
(
''
,
$langs
->
trans
(
"
Order
Card"
),
"Co
mmande
"
);
llxHeader
(
''
,
$langs
->
trans
(
"
Contract
Card"
),
"Co
ntrat
"
);
...
...
@@ -446,6 +446,7 @@ else
//$numfa = contrat_get_num($soc);
$html
->
form_confirm
(
"fiche.php?id=
$id
"
,
"Valider la contrat"
,
"Etes-vous sr de vouloir valider cette contrat ?"
,
"confirm_valid"
);
}
/*
* Confirmation de l'annulation
*
...
...
@@ -466,17 +467,32 @@ else
}
print
'<table class="border" width="100%">'
;
// Reference du contrat
print
'<tr><td>'
.
$langs
->
trans
(
"Ref"
)
.
'</td><td colspan="3">'
;
print
$contrat
->
ref
;
print
"</td></tr>"
;
// Customer
print
"<tr><td>"
.
$langs
->
trans
(
"Customer"
)
.
"</td>"
;
print
'<td colspan="3">'
;
print
'<b><a href="'
.
DOL_URL_ROOT
.
'/comm/fiche.php?socid='
.
$contrat
->
societe
->
id
.
'">'
.
$contrat
->
societe
->
nom
.
'</a></b></td></tr>'
;
// Statut contrat
print
'<tr><td>'
.
$langs
->
trans
(
"Status"
)
.
'</td><td colspan="3">'
;
print
$contrat
->
statuts
[
$contrat
->
statut
];
print
"</td></tr>"
;
// Date
print
'<tr><td>'
.
$langs
->
trans
(
"Date"
)
.
'</td>'
;
print
'<td colspan="3">'
.
strftime
(
"%A %d %B %Y"
,
$contrat
->
date_contrat
)
.
"</td></tr>
\n
"
;
print
'<td colspan="3">'
.
dolibarr_print_date
(
$contrat
->
date_contrat
,
"%A %d %B %Y"
)
.
"</td></tr>
\n
"
;
// Factures associes
/*
TODO
*/
// Projet
if
(
$conf
->
projet
->
enabled
)
{
print
'<tr><td>'
.
$langs
->
trans
(
"Project"
)
.
'</td><td colspan="3">'
;
...
...
This diff is collapsed.
Click to expand it.
htdocs/contrat/ligne.php
+
9
−
0
View file @
3804461a
...
...
@@ -148,14 +148,23 @@ $html = new Form($db);
*/
print
'<table class="border" width="100%">'
;
// Reference du contrat
print
'<tr><td>'
.
$langs
->
trans
(
"Ref"
)
.
'</td><td colspan="3">'
;
print
$contrat
->
ref
;
print
"</td></tr>"
;
// Customer
print
"<tr><td>"
.
$langs
->
trans
(
"Customer"
)
.
"</td>"
;
print
'<td colspan="3">'
;
print
'<b><a href="'
.
DOL_URL_ROOT
.
'/comm/fiche.php?socid='
.
$contrat
->
societe
->
id
.
'">'
.
$contrat
->
societe
->
nom
.
'</a></b></td></tr>'
;
// Status
print
'<tr><td>'
.
$langs
->
trans
(
"Status"
)
.
'</td><td colspan="3">'
;
print
$contrat
->
statuts
[
$contrat
->
statut
];
print
"</td></tr>"
;
// Date
print
'<tr><td>'
.
$langs
->
trans
(
"Date"
)
.
'</td>'
;
print
'<td colspan="3">'
.
strftime
(
"%A %d %B %Y"
,
$contrat
->
date_contrat
)
.
"</td></tr>
\n
"
;
...
...
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