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
2
Merge Requests
2
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
cooperatic-foodcoops
third-party
Commits
b828ca7e
Commit
b828ca7e
authored
Jul 23, 2021
by
Alexis AOUN
Committed by
Alexis Aoun
Jul 26, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Correction du bug #1236
parent
ad361176
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
70 additions
and
30 deletions
+70
-30
reception_produits.js
reception/static/js/reception_produits.js
+70
-30
No files found.
reception/static/js/reception_produits.js
View file @
b828ca7e
...
@@ -857,6 +857,7 @@ function editProductInfo (productToEdit, value = null, batch = false) {
...
@@ -857,6 +857,7 @@ function editProductInfo (productToEdit, value = null, batch = false) {
// Check if the product is already in the 'updated' list
// Check if the product is already in the 'updated' list
var
index
=
searchUpdatedProduct
();
var
index
=
searchUpdatedProduct
();
var
firstUpdate
=
false
;
var
firstUpdate
=
false
;
var
isValid
=
false
;
let
newValue
=
value
;
let
newValue
=
value
;
var
addition
=
false
;
var
addition
=
false
;
...
@@ -873,20 +874,29 @@ function editProductInfo (productToEdit, value = null, batch = false) {
...
@@ -873,20 +874,29 @@ function editProductInfo (productToEdit, value = null, batch = false) {
}
}
});
});
// If qty edition & Check if qty changed
// If qty edition & Check if qty changed
if
(
reception_status
==
"False"
&&
productToEdit
.
product_qty
!=
newValue
)
{
if
(
reception_status
==
"False"
)
{
if
(
index
==
-
1
)
{
// First update
firstUpdate
=
(
index
==
-
1
);
//first update
productToEdit
.
old_qty
=
productToEdit
.
product_qty
;
if
(
productToEdit
.
product_qty
!=
newValue
)
{
firstUpdate
=
true
;
if
(
firstUpdate
)
{
}
productToEdit
.
old_qty
=
productToEdit
.
product_qty
;
}
else
{
//if it is not the first update AND newValue is equal to the validation qty then the product is valid
isValid
=
(
newValue
===
productToEdit
.
old_qty
);
}
// Edit product info
// Edit product info
productToEdit
.
product_qty
=
newValue
;
productToEdit
.
product_qty
=
newValue
;
/*
/*
If qty has changed, we choose to set detailed values as follow:
If qty has changed, we choose to set detailed values as follow:
1 package (product_qty_package) of X products (package_qty)
1 package (product_qty_package) of X products (package_qty)
*/
*/
productToEdit
.
product_qty_package
=
1
;
productToEdit
.
product_qty_package
=
1
;
productToEdit
.
package_qty
=
productToEdit
.
product_qty
;
productToEdit
.
package_qty
=
productToEdit
.
product_qty
;
}
else
if
(
firstUpdate
)
{
// if the product is updated for the first time and productQty is equal to the newValue then the product is validated
isValid
=
true
;
}
}
}
// Check if price changed
// Check if price changed
...
@@ -918,27 +928,56 @@ function editProductInfo (productToEdit, value = null, batch = false) {
...
@@ -918,27 +928,56 @@ function editProductInfo (productToEdit, value = null, batch = false) {
if
(
firstUpdate
)
{
if
(
firstUpdate
)
{
updatedProducts
.
push
(
productToEdit
);
updatedProducts
.
push
(
productToEdit
);
// Create 'updated_products' list in order if not exists
//if product is validated thru edition -> add to valid_products
if
(
!
orders
[
productToEdit
.
id_po
][
'updated_products'
])
{
if
(
isValid
)
{
orders
[
productToEdit
.
id_po
][
'updated_products'
]
=
[];
// Create 'valid_products' list in order if not exists
}
if
(
!
orders
[
productToEdit
.
id_po
][
'valid_products'
])
{
orders
[
productToEdit
.
id_po
][
'valid_products'
]
=
[];
}
orders
[
productToEdit
.
id_po
][
'valid_products'
].
push
(
productToEdit
[
'id'
]);
}
else
{
// Create 'updated_products' list in order if not exists
if
(
!
orders
[
productToEdit
.
id_po
][
'updated_products'
])
{
orders
[
productToEdit
.
id_po
][
'updated_products'
]
=
[];
}
// Add product to order's updated products if first update
// Add product to order's updated products if first update
orders
[
productToEdit
.
id_po
][
'updated_products'
].
push
(
productToEdit
);
orders
[
productToEdit
.
id_po
][
'updated_products'
].
push
(
productToEdit
);
// May have been directly validated then updated from processed list
// May have been directly validated then updated from processed list
// -> remove from 'valid_products' list
// -> remove from 'valid_products' list
for
(
i
in
orders
[
productToEdit
.
id_po
][
'valid_products'
])
{
for
(
i
in
orders
[
productToEdit
.
id_po
][
'valid_products'
])
{
if
(
orders
[
productToEdit
.
id_po
][
'valid_products'
][
i
]
==
productToEdit
[
'id'
])
{
if
(
orders
[
productToEdit
.
id_po
][
'valid_products'
][
i
]
==
productToEdit
[
'id'
])
{
orders
[
productToEdit
.
id_po
][
'valid_products'
].
splice
(
i
,
1
);
orders
[
productToEdit
.
id_po
][
'valid_products'
].
splice
(
i
,
1
);
}
}
}
}
}
}
else
{
}
else
{
// Look for product in order's updated products list
for
(
i
in
orders
[
productToEdit
.
id_po
][
'updated_products'
])
{
if
(
isValid
)
{
if
(
orders
[
productToEdit
.
id_po
][
'updated_products'
][
i
][
'product_id'
][
0
]
//if product is valid -> remove from updated_products list and add to valid_products list
==
productToEdit
[
'product_id'
][
0
])
{
//removing from updated_products
orders
[
productToEdit
.
id_po
][
'updated_products'
][
i
]
=
productToEdit
;
for
(
i
in
orders
[
productToEdit
.
id_po
][
'updated_products'
])
{
if
(
orders
[
productToEdit
.
id_po
][
'updated_products'
][
i
][
'product_id'
][
0
]
==
productToEdit
[
'product_id'
][
0
])
{
orders
[
productToEdit
.
id_po
][
'updated_products'
].
splice
(
i
,
1
);
}
}
//add to valid_products
// Create 'valid_products' list in order if not exists
if
(
!
orders
[
productToEdit
.
id_po
][
'valid_products'
])
{
orders
[
productToEdit
.
id_po
][
'valid_products'
]
=
[];
}
orders
[
productToEdit
.
id_po
][
'valid_products'
].
push
(
productToEdit
[
'id'
]);
}
else
{
// Look for product in order's updated products list
for
(
i
in
orders
[
productToEdit
.
id_po
][
'updated_products'
])
{
if
(
orders
[
productToEdit
.
id_po
][
'updated_products'
][
i
][
'product_id'
][
0
]
==
productToEdit
[
'product_id'
][
0
])
{
orders
[
productToEdit
.
id_po
][
'updated_products'
][
i
]
=
productToEdit
;
}
}
}
}
}
}
}
...
@@ -948,8 +987,9 @@ function editProductInfo (productToEdit, value = null, batch = false) {
...
@@ -948,8 +987,9 @@ function editProductInfo (productToEdit, value = null, batch = false) {
update_distant_order
(
productToEdit
.
id_po
);
update_distant_order
(
productToEdit
.
id_po
);
}
}
if
(
addition
)
{
if
(
addition
)
{
let
row
=
table_processed
.
row
(
$
(
'#'
+
productToEdit
.
product_id
[
0
]));
let
row
=
table_processed
.
row
(
$
(
'#'
+
productToEdit
.
product_id
[
0
]));
remove_from_processed
(
row
,
productToEdit
);
remove_from_processed
(
row
,
productToEdit
);
}
}
...
...
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