Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
T
third-party
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Alexis AOUN
third-party
Commits
cceb2530
Commit
cceb2530
authored
3 years ago
by
Damien Moulard
Committed by
Alexis Aoun
3 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix multi suppliers
parent
bd7507a6
No related merge requests found
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletions
+2
-1
orders_helper.js
orders/static/js/orders_helper.js
+2
-1
No files found.
orders/static/js/orders_helper.js
View file @
cceb2530
...
@@ -423,7 +423,7 @@ function save_supplier_products(supplier, new_products) {
...
@@ -423,7 +423,7 @@ function save_supplier_products(supplier, new_products) {
products
.
push
(
np
);
products
.
push
(
np
);
}
else
{
}
else
{
// Prevent adding ducplicate supplierinfo
// Prevent adding ducplicate supplierinfo
let
index_existing_supplierinfo
=
products
[
index
].
suppliersinfo
.
find
(
psi
=>
psi
.
supplier_id
==
supplier
.
id
);
let
index_existing_supplierinfo
=
products
[
index
].
suppliersinfo
.
find
Index
(
psi
=>
psi
.
supplier_id
==
supplier
.
id
);
if
(
index_existing_supplierinfo
===
-
1
)
{
if
(
index_existing_supplierinfo
===
-
1
)
{
np_supplierinfo
=
np
.
suppliersinfo
[
0
];
np_supplierinfo
=
np
.
suppliersinfo
[
0
];
...
@@ -951,6 +951,7 @@ function _compute_product_data(product) {
...
@@ -951,6 +951,7 @@ function _compute_product_data(product) {
/* Coverage related data */
/* Coverage related data */
if
(
order_doc
.
coverage_days
!==
null
)
{
if
(
order_doc
.
coverage_days
!==
null
)
{
let
unmet_needs
=
product
.
daily_conso
*
order_doc
.
coverage_days
-
product
.
qty_available
-
product
.
incoming_qty
-
purchase_qty
;
let
unmet_needs
=
product
.
daily_conso
*
order_doc
.
coverage_days
-
product
.
qty_available
-
product
.
incoming_qty
-
purchase_qty
;
// TODO diviser tout ça par la conso moyenne pour avoir nb de jours
unmet_needs
=
-
Math
.
round
(
unmet_needs
);
unmet_needs
=
-
Math
.
round
(
unmet_needs
);
unmet_needs
=
(
unmet_needs
>
0
)
?
0
:
unmet_needs
;
unmet_needs
=
(
unmet_needs
>
0
)
?
0
:
unmet_needs
;
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment