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
eaa4f3ef
Commit
eaa4f3ef
authored
16 years ago
by
Laurent Destailleur
Browse files
Options
Downloads
Patches
Plain Diff
Qual: Remove deprecated field
parent
7553e047
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
htdocs/facture.class.php
+0
-13
0 additions, 13 deletions
htdocs/facture.class.php
htdocs/html.form.class.php
+2
-2
2 additions, 2 deletions
htdocs/html.form.class.php
htdocs/product.class.php
+1
-2
1 addition, 2 deletions
htdocs/product.class.php
with
3 additions
and
17 deletions
htdocs/facture.class.php
+
0
−
13
View file @
eaa4f3ef
...
...
@@ -1134,19 +1134,6 @@ class Facture extends CommonObject
if
(
!
$error
&&
$facref
==
'PROV'
)
{
// La vrif qu'une remise n'est pas utilise 2 fois est faite au moment de l'insertion de ligne
// On met a jour table des ventes
// On cre ici une denormalisation pas forcement utilis !!!
// TODO Virer utilisation du champ nbvente si utilisation non justifi
foreach
(
$this
->
lignes
as
$i
=>
$line
)
{
if
(
$line
->
fk_product
)
{
$sql
=
'UPDATE '
.
MAIN_DB_PREFIX
.
'product SET nbvente=nbvente+1 WHERE rowid = '
.
$line
->
rowid
;
$resql2
=
$this
->
db
->
query
(
$sql
);
$i
++
;
}
}
}
if
(
!
$error
)
...
...
This diff is collapsed.
Click to expand it.
htdocs/html.form.class.php
+
2
−
2
View file @
eaa4f3ef
...
...
@@ -1011,7 +1011,7 @@ class Form
}
if
(
strval
(
$filtertype
)
!=
''
)
$sql
.
=
" AND p.fk_product_type="
.
$filtertype
;
if
(
$ajaxkeysearch
&&
$ajaxkeysearch
!=
''
)
$sql
.
=
" AND (p.ref like '%"
.
$ajaxkeysearch
.
"%' OR p.label like '%"
.
$ajaxkeysearch
.
"%')"
;
$sql
.
=
" ORDER BY p.
nbvente DESC
"
;
$sql
.
=
" ORDER BY p.
ref
"
;
if
(
$limit
)
$sql
.
=
" LIMIT
$limit
"
;
dolibarr_syslog
(
"Form::select_produits_do sql="
.
$sql
,
LOG_DEBUG
);
...
...
@@ -1024,7 +1024,7 @@ class Form
$sqld
=
"SELECT d.fk_product, d.label"
;
$sqld
.
=
" FROM "
.
MAIN_DB_PREFIX
.
"product as p, "
.
MAIN_DB_PREFIX
.
"product_det as d "
;
$sqld
.
=
" WHERE d.fk_product=p.rowid AND p.envente=1 AND d.lang='"
.
$langs
->
getDefaultLang
()
.
"'"
;
$sqld
.
=
" ORDER BY p.
nbvente DESC
"
;
$sqld
.
=
" ORDER BY p.
ref
"
;
dolibarr_syslog
(
"Form::select_produits_do sql="
.
$sql
,
LOG_DEBUG
);
$resultd
=
$this
->
db
->
query
(
$sqld
);
...
...
This diff is collapsed.
Click to expand it.
htdocs/product.class.php
+
1
−
2
View file @
eaa4f3ef
...
...
@@ -911,7 +911,7 @@ class Product extends CommonObject
}
$sql
=
"SELECT rowid, ref, label, description, note, price, price_ttc, price_min, price_min_ttc, price_base_type, tva_tx, envente,"
;
$sql
.
=
"
nbvente,
fk_product_type, duration, seuil_stock_alerte,canvas,"
;
$sql
.
=
" fk_product_type, duration, seuil_stock_alerte,canvas,"
;
$sql
.
=
" stock_commande, stock_loc, weight, weight_units, volume, volume_units, barcode, fk_barcode_type"
;
$sql
.
=
" FROM "
.
MAIN_DB_PREFIX
.
"product"
;
if
(
$id
)
$sql
.
=
" WHERE rowid = '"
.
$id
.
"'"
;
...
...
@@ -935,7 +935,6 @@ class Product extends CommonObject
$this
->
price_base_type
=
$result
[
"price_base_type"
];
$this
->
tva_tx
=
$result
[
"tva_tx"
];
$this
->
type
=
$result
[
"fk_product_type"
];
$this
->
nbvente
=
$result
[
"nbvente"
];
$this
->
status
=
$result
[
"envente"
];
$this
->
duration
=
$result
[
"duration"
];
$this
->
duration_value
=
substr
(
$result
[
"duration"
],
0
,
strlen
(
$result
[
"duration"
])
-
1
);
...
...
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