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
90ba517a
Commit
90ba517a
authored
17 years ago
by
Regis Houssin
Browse files
Options
Downloads
Patches
Plain Diff
Fix: ajout de la décrémentation du stock lors de la validation de facture
parent
53840137
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/facture.class.php
+30
-0
30 additions, 0 deletions
htdocs/facture.class.php
with
30 additions
and
0 deletions
htdocs/facture.class.php
+
30
−
0
View file @
90ba517a
...
...
@@ -1183,6 +1183,36 @@ class Facture extends CommonObject
{
// Classe la socit rattache comme client
$result
=
$this
->
client
->
set_as_client
();
//Si activ on dcrmente le produit principal et ses composants la validation de facture
if
(
$conf
->
stock
->
enabled
&&
$conf
->
global
->
STOCK_CALCULATE_ON_BILL
)
{
require_once
(
DOL_DOCUMENT_ROOT
.
"/product/stock/mouvementstock.class.php"
);
for
(
$i
=
0
;
$i
<
sizeof
(
$this
->
lignes
)
;
$i
++
)
{
if
(
$conf
->
global
->
PRODUIT_SOUSPRODUITS
)
{
$prod
=
new
Product
(
$this
->
db
,
$this
->
lignes
[
$i
]
->
fk_product
);
$prod
->
get_sousproduits_arbo
();
$prods_arbo
=
$prod
->
get_each_prod
();
if
(
sizeof
(
$prods_arbo
)
>
0
)
{
foreach
(
$prods_arbo
as
$key
=>
$value
)
{
// on dcompte le stock de tous les sousproduits
$mouvS
=
new
MouvementStock
(
$this
->
db
);
$entrepot_id
=
"1"
;
//Todo: ajouter possibilit de choisir l'entrepot
$result
=
$mouvS
->
livraison
(
$user
,
$value
[
1
],
$entrepot_id
,
$value
[
0
]
*
$this
->
lignes
[
$i
]
->
qty
);
}
}
}
$mouvP
=
new
MouvementStock
(
$this
->
db
);
// on dcompte le stock du produit principal
$entrepot_id
=
"1"
;
//Todo: ajouter possibilit de choisir l'entrepot
$result
=
$mouvP
->
livraison
(
$user
,
$this
->
lignes
[
$i
]
->
fk_product
,
$entrepot_id
,
$this
->
lignes
[
$i
]
->
qty
);
}
}
$this
->
ref
=
$numfa
;
...
...
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