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
9938f159
Commit
9938f159
authored
15 years ago
by
Laurent Destailleur
Browse files
Options
Downloads
Patches
Plain Diff
Qual: Use a code instead of key.
parent
e518bbc5
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/includes/triggers/interface_modNotification_Notification.class.php
+3
-3
3 additions, 3 deletions
...triggers/interface_modNotification_Notification.class.php
htdocs/notify.class.php
+7
-6
7 additions, 6 deletions
htdocs/notify.class.php
with
10 additions
and
9 deletions
htdocs/includes/triggers/interface_modNotification_Notification.class.php
+
3
−
3
View file @
9938f159
...
...
@@ -104,7 +104,7 @@ class InterfaceNotification
{
dol_syslog
(
"Trigger '"
.
$this
->
name
.
"' for action '
$action
' launched by "
.
__FILE__
.
". id="
.
$object
->
id
);
$action_notify
=
2
;
$action_notify
=
'NOTIFY_VAL_FAC'
;
$ref
=
dol_sanitizeFileName
(
$object
->
ref
);
$filepdf
=
$conf
->
facture
->
dir_output
.
'/'
.
$ref
.
'/'
.
$ref
.
'.pdf'
;
$mesg
=
'La facture '
.
$object
->
ref
.
" a été validée.
\n
"
;
...
...
@@ -117,7 +117,7 @@ class InterfaceNotification
{
dol_syslog
(
"Trigger '"
.
$this
->
name
.
"' for action '
$action
' launched by "
.
__FILE__
.
". id="
.
$object
->
id
);
$action_notify
=
1
;
$action_notify
=
'NOTIFY_VAL_FICHINTER'
;
$ref
=
dol_sanitizeFileName
(
$object
->
ref
);
$filepdf
=
$conf
->
facture
->
dir_output
.
'/'
.
$ref
.
'/'
.
$ref
.
'.pdf'
;
$mesg
=
'La fiche intervention '
.
$object
->
ref
.
" a été validée.
\n
"
;
...
...
@@ -130,7 +130,7 @@ class InterfaceNotification
{
dol_syslog
(
"Trigger '"
.
$this
->
name
.
"' for action '
$action
' launched by "
.
__FILE__
.
". id="
.
$object
->
id
);
$action_notify
=
3
;
$action_notify
=
'NOTIFY_VAL_ORDER_SUPPLIER'
;
$ref
=
dol_sanitizeFileName
(
$object
->
ref
);
$filepdf
=
$conf
->
fournisseur
->
commande
->
dir_output
.
'/'
.
$ref
.
'/'
.
$ref
.
'.pdf'
;
$mesg
=
'La commande fournisseur '
.
$object
->
ref
.
" a été validée.
\n
"
;
...
...
This diff is collapsed.
Click to expand it.
htdocs/notify.class.php
+
7
−
6
View file @
9938f159
...
...
@@ -67,14 +67,14 @@ class Notify
{
global
$langs
;
$langs
->
load
(
"mails"
);
$nb
=
$this
->
countDefinedNotifications
(
$action
,
$socid
);
if
(
$nb
<=
0
)
$texte
=
$langs
->
trans
(
"NoNotificationsWillBeSent"
);
if
(
$nb
==
1
)
$texte
=
img_object
(
$langs
->
trans
(
"Notifications"
),
'email'
)
.
' '
.
$langs
->
trans
(
"ANotificationsWillBeSent"
);
if
(
$nb
>=
2
)
$texte
=
img_object
(
$langs
->
trans
(
"Notifications"
),
'email'
)
.
' '
.
$langs
->
trans
(
"SomeNotificationsWillBeSent"
,
$nb
);
return
$texte
;
}
/**
* \brief Renvoie le nombre de notifications configures pour l'action et la societe donnee
* \return int <0 si ko, sinon nombre de notifications definies
...
...
@@ -82,7 +82,7 @@ class Notify
function
countDefinedNotifications
(
$action
,
$socid
)
{
$num
=-
1
;
$sql
=
"SELECT n.rowid, c.email, c.rowid, c.name, c.firstname, a.titre, s.nom"
;
$sql
.
=
" FROM "
.
MAIN_DB_PREFIX
.
"socpeople as c, "
.
MAIN_DB_PREFIX
.
"action_def as a, "
.
MAIN_DB_PREFIX
.
"notify_def as n, "
.
MAIN_DB_PREFIX
.
"societe as s"
;
$sql
.
=
" WHERE n.fk_contact = c.rowid AND a.rowid = n.fk_action"
;
...
...
@@ -102,7 +102,7 @@ class Notify
$this
->
error
=
$this
->
db
->
error
.
' sql='
.
$sql
;
return
-
1
;
}
return
$num
;
}
...
...
@@ -117,7 +117,8 @@ class Notify
$sql
=
"SELECT s.nom, c.email, c.rowid, c.name, c.firstname, a.titre,n.rowid"
;
$sql
.
=
" FROM "
.
MAIN_DB_PREFIX
.
"socpeople as c, "
.
MAIN_DB_PREFIX
.
"action_def as a, "
.
MAIN_DB_PREFIX
.
"notify_def as n, "
.
MAIN_DB_PREFIX
.
"societe as s"
;
$sql
.
=
" WHERE n.fk_contact = c.rowid AND a.rowid = n.fk_action"
;
$sql
.
=
" AND n.fk_soc = s.rowid AND n.fk_action = "
.
$action
;
$sql
.
=
" AND n.fk_soc = s.rowid"
;
$sql
.
=
" AND a.code = 'NOTIFY_"
.
$action
.
"'"
;
$sql
.
=
" AND s.rowid = "
.
$socid
;
dol_syslog
(
"Notify.class::send
$action
,
$socid
,
$texte
,
$objet_type
,
$objet_id
,
$file
"
);
...
...
@@ -139,7 +140,7 @@ class Notify
$message
=
$texte
;
$filename
=
split
(
"/"
,
$file
);
$msgishtml
=
0
;
$replyto
=
$conf
->
notification
->
email_from
;
$mailfile
=
new
CMailFile
(
$subject
,
...
...
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