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
ba606bf2
Commit
ba606bf2
authored
11 years ago
by
Regis Houssin
Browse files
Options
Downloads
Plain Diff
Merge branch 'develop' of git@github.com:Dolibarr/dolibarr.git into develop
parents
9992bebb
7778a17a
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/comm/action/class/actioncomm.class.php
+6
-11
6 additions, 11 deletions
htdocs/comm/action/class/actioncomm.class.php
htdocs/install/mysql/tables/llx_actioncomm.sql
+3
-3
3 additions, 3 deletions
htdocs/install/mysql/tables/llx_actioncomm.sql
with
9 additions
and
14 deletions
htdocs/comm/action/class/actioncomm.class.php
+
6
−
11
View file @
ba606bf2
...
...
@@ -45,7 +45,6 @@ class ActionComm extends CommonObject
var
$code
;
var
$label
;
var
$date
;
var
$datec
;
// Date creation record (datec)
var
$datem
;
// Date modification record (tms)
var
$author
;
// Object user that create action
...
...
@@ -53,7 +52,6 @@ class ActionComm extends CommonObject
var
$datep
;
// Date action start (datep)
var
$datef
;
// Date action end (datep2)
var
$dateend
;
// ??
var
$durationp
=
-
1
;
// -1=Unkown duration
var
$fulldayevent
=
0
;
// 1=Event on full day
var
$punctual
=
1
;
// Milestone
...
...
@@ -123,11 +121,11 @@ class ActionComm extends CommonObject
if
(
empty
(
$this
->
punctual
))
$this
->
punctual
=
0
;
if
(
empty
(
$this
->
transparency
))
$this
->
transparency
=
0
;
if
(
$this
->
percentage
>
100
)
$this
->
percentage
=
100
;
if
(
$this
->
percentage
==
100
&&
!
$this
->
dateend
)
$this
->
dateend
=
$this
->
date
;
//
if ($this->percentage == 100 && ! $this->dateend) $this->dateend = $this->date;
if
(
!
empty
(
$this
->
datep
)
&&
!
empty
(
$this
->
datef
))
$this
->
durationp
=
(
$this
->
datef
-
$this
->
datep
);
if
(
!
empty
(
$this
->
date
)
&&
!
empty
(
$this
->
dateend
))
$this
->
durationa
=
(
$this
->
dateend
-
$this
->
date
);
//
if (! empty($this->date) && ! empty($this->dateend)) $this->durationa=($this->dateend - $this->date);
if
(
!
empty
(
$this
->
datep
)
&&
!
empty
(
$this
->
datef
)
&&
$this
->
datep
>
$this
->
datef
)
$this
->
datef
=
$this
->
datep
;
if
(
!
empty
(
$this
->
date
)
&&
!
empty
(
$this
->
dateend
)
&&
$this
->
date
>
$this
->
dateend
)
$this
->
dateend
=
$this
->
date
;
//
if (! empty($this->date) && ! empty($this->dateend) && $this->date > $this->dateend) $this->dateend=$this->date;
if
(
!
isset
(
$this
->
fk_project
)
||
$this
->
fk_project
<
0
)
$this
->
fk_project
=
0
;
if
(
$this
->
elementtype
==
'facture'
)
$this
->
elementtype
=
'invoice'
;
if
(
$this
->
elementtype
==
'commande'
)
$this
->
elementtype
=
'order'
;
...
...
@@ -444,11 +442,11 @@ class ActionComm extends CommonObject
if
(
empty
(
$this
->
transparency
))
$this
->
transparency
=
0
;
if
(
empty
(
$this
->
fulldayevent
))
$this
->
fulldayevent
=
0
;
if
(
$this
->
percentage
>
100
)
$this
->
percentage
=
100
;
if
(
$this
->
percentage
==
100
&&
!
$this
->
dateend
)
$this
->
dateend
=
$this
->
date
;
//
if ($this->percentage == 100 && ! $this->dateend) $this->dateend = $this->date;
if
(
$this
->
datep
&&
$this
->
datef
)
$this
->
durationp
=
(
$this
->
datef
-
$this
->
datep
);
if
(
$this
->
date
&&
$this
->
dateend
)
$this
->
durationa
=
(
$this
->
dateend
-
$this
->
date
);
//
if ($this->date && $this->dateend) $this->durationa=($this->dateend - $this->date);
if
(
$this
->
datep
&&
$this
->
datef
&&
$this
->
datep
>
$this
->
datef
)
$this
->
datef
=
$this
->
datep
;
if
(
$this
->
date
&&
$this
->
dateend
&&
$this
->
date
>
$this
->
dateend
)
$this
->
dateend
=
$this
->
date
;
//
if ($this->date && $this->dateend && $this->date > $this->dateend) $this->dateend=$this->date;
if
(
$this
->
fk_project
<
0
)
$this
->
fk_project
=
0
;
// Check parameters
...
...
@@ -460,15 +458,12 @@ class ActionComm extends CommonObject
$this
->
db
->
begin
();
//print 'eeea'.$this->datep.'-'.(strval($this->datep) != '').'-'.$this->db->idate($this->datep);
$sql
=
"UPDATE "
.
MAIN_DB_PREFIX
.
"actioncomm "
;
$sql
.
=
" SET percent = '"
.
$this
->
percentage
.
"'"
;
if
(
$this
->
fk_action
>
0
)
$sql
.
=
", fk_action = '"
.
$this
->
fk_action
.
"'"
;
$sql
.
=
", label = "
.
(
$this
->
label
?
"'"
.
$this
->
db
->
escape
(
$this
->
label
)
.
"'"
:
"null"
);
$sql
.
=
", datep = "
.
(
strval
(
$this
->
datep
)
!=
''
?
"'"
.
$this
->
db
->
idate
(
$this
->
datep
)
.
"'"
:
'null'
);
$sql
.
=
", datep2 = "
.
(
strval
(
$this
->
datef
)
!=
''
?
"'"
.
$this
->
db
->
idate
(
$this
->
datef
)
.
"'"
:
'null'
);
//$sql.= ", datea = ".(strval($this->date)!='' ? "'".$this->db->idate($this->date)."'" : 'null');
//$sql.= ", datea2 = ".(strval($this->dateend)!='' ? "'".$this->db->idate($this->dateend)."'" : 'null');
$sql
.
=
", note = "
.
(
$this
->
note
?
"'"
.
$this
->
db
->
escape
(
$this
->
note
)
.
"'"
:
"null"
);
$sql
.
=
", fk_soc ="
.
(
$this
->
societe
->
id
>
0
?
"'"
.
$this
->
societe
->
id
.
"'"
:
"null"
);
$sql
.
=
", fk_project ="
.
(
$this
->
fk_project
>
0
?
"'"
.
$this
->
fk_project
.
"'"
:
"null"
);
...
...
This diff is collapsed.
Click to expand it.
htdocs/install/mysql/tables/llx_actioncomm.sql
+
3
−
3
View file @
ba606bf2
...
...
@@ -25,9 +25,9 @@ create table llx_actioncomm
id
integer
AUTO_INCREMENT
PRIMARY
KEY
,
ref_ext
varchar
(
128
),
entity
integer
DEFAULT
1
NOT
NULL
,
-- multi company id
datep
datetime
,
-- date
debut planifiee
datep2
datetime
,
-- d
eprec
ated
datea
datetime
,
-- d
ate debut realisation
datep
datetime
,
-- date
start
datep2
datetime
,
-- date
en
d
datea
datetime
,
-- d
eprecated
datea2
datetime
,
-- deprecated
fk_action
integer
,
-- type of action (optionnal link with llx_c_actioncomm or null)
...
...
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