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
b410aa57
Commit
b410aa57
authored
8 years ago
by
Laurent Destailleur
Browse files
Options
Downloads
Patches
Plain Diff
Fix: Fetching category on label is not enough. We must introduce type
parent
b476153b
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/categories/class/categorie.class.php
+6
-5
6 additions, 5 deletions
htdocs/categories/class/categorie.class.php
htdocs/langs/en_US/categories.lang
+1
-1
1 addition, 1 deletion
htdocs/langs/en_US/categories.lang
with
7 additions
and
6 deletions
htdocs/categories/class/categorie.class.php
+
6
−
5
View file @
b410aa57
...
...
@@ -167,9 +167,10 @@ class Categorie extends CommonObject
*
* @param int $id Id of category
* @param string $label Label of category
* @param string $type Type of category
* @return int <0 if KO, >0 if OK
*/
function
fetch
(
$id
,
$label
=
''
)
function
fetch
(
$id
,
$label
=
''
,
$type
=
''
)
{
global
$conf
;
...
...
@@ -182,10 +183,10 @@ class Categorie extends CommonObject
{
$sql
.
=
" WHERE rowid = '"
.
$id
.
"'"
;
}
else
{
if
(
$label
)
$sql
.
=
" WHERE label = '"
.
$this
->
db
->
escape
(
$label
)
.
"' AND entity IN ("
.
getEntity
(
'category'
,
1
)
.
")"
;
$sql
.
=
" WHERE label = '"
.
$this
->
db
->
escape
(
$label
)
.
"' AND entity IN ("
.
getEntity
(
'category'
,
1
)
.
")"
;
if
(
$type
)
$sql
.
=
" AND type = '"
.
$this
->
db
->
escape
(
$type
)
.
"'"
;
}
dol_syslog
(
get_class
(
$this
)
.
"::fetch"
,
LOG_DEBUG
);
...
...
@@ -255,9 +256,9 @@ class Categorie extends CommonObject
if
(
$this
->
already_exists
())
{
$this
->
error
=
$langs
->
trans
(
"ImpossibleAddCat"
);
$this
->
error
=
$langs
->
trans
(
"ImpossibleAddCat"
,
$this
->
label
);
$this
->
error
.
=
" : "
.
$langs
->
trans
(
"CategoryExistsAtSameLevel"
);
dol_syslog
(
$this
->
error
,
LOG_
ERR
);
dol_syslog
(
$this
->
error
,
LOG_
WARNING
);
return
-
4
;
}
...
...
This diff is collapsed.
Click to expand it.
htdocs/langs/en_US/categories.lang
+
1
−
1
View file @
b410aa57
...
...
@@ -39,7 +39,7 @@ ErrForgotCat=You forgot to choose the tag/category
ErrForgotField=You forgot to inform the fields
ErrCatAlreadyExists=This name is already used
AddProductToCat=Add this product to a tag/category?
ImpossibleAddCat=Impossible to add the tag/category
ImpossibleAddCat=Impossible to add the tag/category
%s
ImpossibleAssociateCategory=Impossible to associate the tag/category to
WasAddedSuccessfully=<b>%s</b> was added successfully.
ObjectAlreadyLinkedToCategory=Element is already linked to this tag/category.
...
...
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