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
8f08d7a1
Commit
8f08d7a1
authored
12 years ago
by
Christophe Battarel
Browse files
Options
Downloads
Patches
Plain Diff
add entity in the unique key for delete
parent
e8b92cc2
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
htdocs/fourn/class/fournisseur.product.class.php
+1
-1
1 addition, 1 deletion
htdocs/fourn/class/fournisseur.product.class.php
with
1 addition
and
1 deletion
htdocs/fourn/class/fournisseur.product.class.php
+
1
−
1
View file @
8f08d7a1
...
...
@@ -212,7 +212,7 @@ class ProductFournisseur extends Product
{
// Delete price for this quantity
$sql
=
"DELETE FROM "
.
MAIN_DB_PREFIX
.
"product_fournisseur_price"
;
$sql
.
=
" WHERE fk_soc = "
.
$fourn
->
id
.
" AND ref_fourn = '"
.
$this
->
db
->
escape
(
$ref_fourn
)
.
"' AND quantity = "
.
$qty
;
$sql
.
=
" WHERE fk_soc = "
.
$fourn
->
id
.
" AND ref_fourn = '"
.
$this
->
db
->
escape
(
$ref_fourn
)
.
"' AND quantity = "
.
$qty
.
" AND entity = "
.
$conf
->
entity
;
dol_syslog
(
get_class
(
$this
)
.
'::update_buyprice sql='
.
$sql
);
$resql
=
$this
->
db
->
query
(
$sql
);
if
(
$resql
)
...
...
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