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
f9cef809
Commit
f9cef809
authored
12 years ago
by
Laurent Destailleur
Browse files
Options
Downloads
Plain Diff
Merge branch 'develop' of
https://github.com/Dolibarr/dolibarr
into develop
parents
059c5bf6
1968a807
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/index.php
+6
-6
6 additions, 6 deletions
htdocs/comm/index.php
htdocs/core/class/commonobject.class.php
+86
-44
86 additions, 44 deletions
htdocs/core/class/commonobject.class.php
with
92 additions
and
50 deletions
htdocs/comm/index.php
+
6
−
6
View file @
f9cef809
...
...
@@ -99,10 +99,10 @@ if (($conf->propal->enabled && $user->rights->propale->lire) ||
}
// Recherche Propal
if
(
$conf
->
propal
->
enabled
&&
$user
->
rights
->
propal
e
->
lire
)
if
(
$conf
->
propal
->
enabled
&&
$user
->
rights
->
propal
->
lire
)
{
$var
=
false
;
print
'<form method="post" action="'
.
DOL_URL_ROOT
.
'/comm/propal.php">'
;
print
'<form method="post" action="'
.
DOL_URL_ROOT
.
'/comm/propal
/list
.php">'
;
print
'<input type="hidden" name="token" value="'
.
$_SESSION
[
'newtoken'
]
.
'">'
;
print
'<table class="noborder" width="100%">'
;
print
'<tr class="liste_titre"><td colspan="3">'
.
$langs
->
trans
(
"SearchAProposal"
)
.
'</td></tr>'
;
...
...
@@ -137,7 +137,7 @@ if ($conf->contrat->enabled && $user->rights->contrat->lire)
/*
* Draft proposals
*/
if
(
$conf
->
propal
->
enabled
&&
$user
->
rights
->
propal
e
->
lire
)
if
(
$conf
->
propal
->
enabled
&&
$user
->
rights
->
propal
->
lire
)
{
$sql
=
"SELECT p.rowid, p.ref, p.total_ht, s.rowid as socid, s.nom as name, s.client, s.canvas"
;
$sql
.
=
" FROM "
.
MAIN_DB_PREFIX
.
"propal as p"
;
...
...
@@ -189,7 +189,7 @@ if ($conf->propal->enabled && $user->rights->propale->lire)
}
}
print
"</table><br>"
;
$db
->
free
(
$resql
);
}
else
...
...
@@ -252,7 +252,7 @@ if ($conf->commande->enabled && $user->rights->commande->lire)
}
}
print
"</table><br>"
;
$db
->
free
(
$resql
);
}
}
...
...
@@ -468,7 +468,7 @@ if ($conf->contrat->enabled && $user->rights->contrat->lire && 0) // TODO A REFA
/*
* Opened proposals
*/
if
(
$conf
->
propal
->
enabled
&&
$user
->
rights
->
propal
e
->
lire
)
if
(
$conf
->
propal
->
enabled
&&
$user
->
rights
->
propal
->
lire
)
{
$langs
->
load
(
"propal"
);
...
...
This diff is collapsed.
Click to expand it.
htdocs/core/class/commonobject.class.php
+
86
−
44
View file @
f9cef809
...
...
@@ -1809,15 +1809,43 @@ abstract class CommonObject
/**
* Delete all links between an object $this
*
* @param int $sourceid Object source id
* @param string $sourcetype Object source type
* @param int $targetid Object target id
* @param string $targettype Object target type
* @return int >0 if OK, <0 if KO
*/
function
deleteObjectLinked
()
function
deleteObjectLinked
(
$sourceid
=
''
,
$sourcetype
=
''
,
$targetid
=
''
,
$targettype
=
''
)
{
$deletesource
=
false
;
$deletetarget
=
false
;
if
(
!
empty
(
$sourceid
)
&&
!
empty
(
$sourcetype
)
&&
empty
(
$targetid
)
&&
empty
(
$targettype
))
$deletesource
=
true
;
else
if
(
empty
(
$sourceid
)
&&
empty
(
$sourcetype
)
&&
!
empty
(
$targetid
)
&&
!
empty
(
$targettype
))
$deletetarget
=
true
;
$sourceid
=
(
!
empty
(
$sourceid
)
?
$sourceid
:
$this
->
id
);
$sourcetype
=
(
!
empty
(
$sourcetype
)
?
$sourcetype
:
$this
->
element
);
$targetid
=
(
!
empty
(
$targetid
)
?
$targetid
:
$this
->
id
);
$targettype
=
(
!
empty
(
$targettype
)
?
$targettype
:
$this
->
element
);
$sql
=
"DELETE FROM "
.
MAIN_DB_PREFIX
.
"element_element"
;
$sql
.
=
" WHERE"
;
$sql
.
=
" (fk_source = "
.
$this
->
id
.
" AND sourcetype = '"
.
$this
->
element
.
"')"
;
$sql
.
=
" OR"
;
$sql
.
=
" (fk_target = "
.
$this
->
id
.
" AND targettype = '"
.
$this
->
element
.
"')"
;
if
(
$deletesource
)
{
$sql
.
=
" fk_source = "
.
$sourceid
.
" AND sourcetype = '"
.
$sourcetype
.
"'"
;
$sql
.
=
" AND fk_target = "
.
$this
->
id
.
" AND targettype = '"
.
$this
->
element
.
"'"
;
}
else
if
(
$deletetarget
)
{
$sql
.
=
" fk_target = "
.
$targetid
.
" AND targettype = '"
.
$targettype
.
"'"
;
$sql
.
=
" AND fk_source = "
.
$this
->
id
.
" AND sourcetype = '"
.
$this
->
element
.
"'"
;
}
else
{
$sql
.
=
" (fk_source = "
.
$this
->
id
.
" AND sourcetype = '"
.
$this
->
element
.
"')"
;
$sql
.
=
" OR"
;
$sql
.
=
" (fk_target = "
.
$this
->
id
.
" AND targettype = '"
.
$this
->
element
.
"')"
;
}
dol_syslog
(
get_class
(
$this
)
.
"::deleteObjectLinked sql="
.
$sql
,
LOG_DEBUG
);
if
(
$this
->
db
->
query
(
$sql
))
...
...
@@ -2316,60 +2344,74 @@ abstract class CommonObject
* TODO Move this into html.class.php
* But for the moment we don't know if it's possible as we keep a method available on overloaded objects.
*
* @param HookManager $hookmanager Hook manager instance
* @return void
*/
function
showLinkedObjectBlock
()
function
showLinkedObjectBlock
(
$hookmanager
=
false
)
{
global
$conf
,
$langs
,
$bc
;
$this
->
fetchObjectLinked
();
$num
=
count
(
$this
->
linkedObjects
);
// Bypass the default method
if
(
!
is_object
(
$hookmanager
))
{
include_once
(
DOL_DOCUMENT_ROOT
.
'/core/class/hookmanager.class.php'
);
$hookmanager
=
new
HookManager
(
$this
->
db
);
}
$hookmanager
->
initHooks
(
array
(
'commonobject'
));
$parameters
=
array
();
$reshook
=
$hookmanager
->
executeHooks
(
'showLinkedObjectBlock'
,
$parameters
,
$this
,
$action
);
// Note that $action and $object may have been modified by hook
foreach
(
$this
->
linkedObjects
as
$objecttype
=>
$objects
)
if
(
!
$reshook
)
{
$tplpath
=
$element
=
$subelement
=
$o
bject
type
;
$num
=
count
(
$this
->
linkedO
bject
s
)
;
if
(
preg_match
(
'/^([^_]+)_([^_]+)/i'
,
$objecttype
,
$regs
))
{
$element
=
$regs
[
1
];
$subelement
=
$regs
[
2
];
$tplpath
=
$element
.
'/'
.
$subelement
;
}
foreach
(
$this
->
linkedObjects
as
$objecttype
=>
$objects
)
{
$tplpath
=
$element
=
$subelement
=
$objecttype
;
// To work with non standard path
if
(
$objecttype
==
'facture'
)
{
$tplpath
=
'compta/'
.
$element
;
}
else
if
(
$objecttype
==
'propal'
)
{
$tplpath
=
'comm/'
.
$element
;
}
else
if
(
$objecttype
==
'shipping'
)
{
$tplpath
=
'expedition'
;
}
else
if
(
$objecttype
==
'delivery'
)
{
$tplpath
=
'livraison'
;
}
else
if
(
$objecttype
==
'invoice_supplier'
)
{
$tplpath
=
'fourn/facture'
;
}
else
if
(
$objecttype
==
'order_supplier'
)
{
$tplpath
=
'fourn/commande'
;
}
if
(
preg_match
(
'/^([^_]+)_([^_]+)/i'
,
$objecttype
,
$regs
))
{
$element
=
$regs
[
1
];
$subelement
=
$regs
[
2
];
$tplpath
=
$element
.
'/'
.
$subelement
;
}
// To work with non standard path
if
(
$objecttype
==
'facture'
)
{
$tplpath
=
'compta/'
.
$element
;
}
else
if
(
$objecttype
==
'propal'
)
{
$tplpath
=
'comm/'
.
$element
;
}
else
if
(
$objecttype
==
'shipping'
)
{
$tplpath
=
'expedition'
;
}
else
if
(
$objecttype
==
'delivery'
)
{
$tplpath
=
'livraison'
;
}
else
if
(
$objecttype
==
'invoice_supplier'
)
{
$tplpath
=
'fourn/facture'
;
}
else
if
(
$objecttype
==
'order_supplier'
)
{
$tplpath
=
'fourn/commande'
;
}
global
$linkedObjectBlock
;
$linkedObjectBlock
=
$objects
;
global
$linkedObjectBlock
;
$linkedObjectBlock
=
$objects
;
// Output template part (modules that overwrite templates must declare this into descriptor)
$dirtpls
=
array_merge
(
$conf
->
modules_parts
[
'tpl'
],
array
(
'/'
.
$tplpath
.
'/tpl'
));
foreach
(
$dirtpls
as
$reldir
)
{
$res
=@
include
(
dol_buildpath
(
$reldir
.
'/linkedobjectblock.tpl.php'
));
if
(
$res
)
break
;
}
}
// Output template part (modules that overwrite templates must declare this into descriptor)
$dirtpls
=
array_merge
(
$conf
->
modules_parts
[
'tpl'
],
array
(
'/'
.
$tplpath
.
'/tpl'
));
foreach
(
$dirtpls
as
$reldir
)
{
$res
=@
include
(
dol_buildpath
(
$reldir
.
'/linkedobjectblock.tpl.php'
));
if
(
$res
)
break
;
}
}
return
$num
;
return
$num
;
}
}
...
...
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