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
58ef26b0
Commit
58ef26b0
authored
Jun 16, 2021
by
Damien Moulard
Committed by
Alexis Aoun
Jul 06, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
linting
parent
26ca1150
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
36 additions
and
29 deletions
+36
-29
reception_index.js
reception/static/js/reception_index.js
+16
-11
reception_produits.js
reception/static/js/reception_produits.js
+20
-18
No files found.
reception/static/js/reception_index.js
View file @
58ef26b0
...
...
@@ -23,8 +23,8 @@ var orders = [],
* @param {Date} date2
* @returns difference object
*/
function
dates_diff
(
date1
,
date2
)
{
var
diff
=
{}
function
dates_diff
(
date1
,
date2
)
{
var
diff
=
{}
;
var
tmp
=
date2
-
date1
;
tmp
=
Math
.
floor
(
tmp
/
1000
);
...
...
@@ -57,23 +57,25 @@ function reload() {
*/
function
check_before_goto
(
id
)
{
const
order_doc_id
=
'order_'
+
id
;
dbc
.
get
(
order_doc_id
).
then
((
doc
)
=>
{
if
(
doc
.
last_update
.
fingerprint
!==
null
&&
doc
.
last_update
.
fingerprint
!==
fingerprint
)
{
time_diff
=
dates_diff
(
new
Date
(
doc
.
last_update
.
timestamp
),
new
Date
())
diff_str
=
``
time_diff
=
dates_diff
(
new
Date
(
doc
.
last_update
.
timestamp
),
new
Date
())
;
diff_str
=
``
;
if
(
time_diff
.
days
!==
0
)
{
diff_str
+=
`
${
time_diff
.
days
}
jour(s), `
diff_str
+=
`
${
time_diff
.
days
}
jour(s), `
;
}
if
(
time_diff
.
hours
!==
0
)
{
diff_str
+=
`
${
time_diff
.
hours
}
heure(s), `
diff_str
+=
`
${
time_diff
.
hours
}
heure(s), `
;
}
if
(
time_diff
.
min
!==
0
)
{
diff_str
+=
`
${
time_diff
.
min
}
min, `
diff_str
+=
`
${
time_diff
.
min
}
min, `
;
}
diff_str
+=
`
${
time_diff
.
sec
}
s`
diff_str
+=
`
${
time_diff
.
sec
}
s`
;
let
modal_order_access
=
$
(
'#templates #modal_order_access'
);
modal_order_access
.
find
(
".order_last_update"
).
text
(
diff_str
);
openModal
(
...
...
@@ -89,7 +91,7 @@ function check_before_goto(id) {
})
.
catch
((
err
)
=>
{
console
.
log
(
err
);
})
});
}
function
goto
(
id
)
{
...
...
@@ -140,14 +142,15 @@ function create_order_doc(order_data, go_to_order = false) {
order_doc
.
_id
=
order_doc_id
;
order_doc
.
last_update
=
{
timestamp
:
Date
.
now
(),
fingerprint
:
fingerprint
,
fingerprint
:
fingerprint
};
dbc
.
put
(
order_doc
).
then
(()
=>
{
if
(
go_to_order
===
true
)
{
goto
(
order_data
.
id
);
}
}).
catch
((
err
)
=>
{
})
.
catch
((
err
)
=>
{
error
=
{
msg
:
'Erreur dans la creation de la commande dans couchdb'
,
ctx
:
'create_order_doc'
,
...
...
@@ -525,6 +528,7 @@ $(document).ready(function() {
sync
.
on
(
'change'
,
function
(
info
)
{
// If important data changed somewhere else, update local data
let
need_to_reload
=
false
;
if
(
info
.
direction
===
"pull"
)
{
for
(
let
doc
of
info
.
change
.
docs
)
{
if
(
doc
.
_id
===
"grouped_orders"
)
{
...
...
@@ -547,6 +551,7 @@ $(document).ready(function() {
}
else
{
// Find updated order in local orders & update it if reception status changed
let
index
=
orders
.
findIndex
(
order
=>
order
.
id
==
doc
.
id
);
if
(
index
!==
-
1
&&
orders
[
index
].
reception_status
!==
doc
.
reception_status
)
{
orders
[
index
]
=
doc
;
need_to_reload
=
true
;
...
...
reception/static/js/reception_produits.js
View file @
58ef26b0
...
...
@@ -118,7 +118,7 @@ function select_product_from_bc(barcode) {
function
update_distant_order
(
order_id
)
{
orders
[
order_id
].
last_update
=
{
timestamp
:
Date
.
now
(),
fingerprint
:
fingerprint
,
fingerprint
:
fingerprint
};
dbc
.
put
(
orders
[
order_id
],
(
err
,
result
)
=>
{
...
...
@@ -135,11 +135,11 @@ function update_distant_order(order_id) {
* Update distant orders with local data
* @param {int} order_id
*/
function
update_distant_orders
()
{
function
update_distant_orders
()
{
for
(
let
order_id
in
orders
)
{
orders
[
order_id
].
last_update
=
{
timestamp
:
Date
.
now
(),
fingerprint
:
fingerprint
,
fingerprint
:
fingerprint
};
}
...
...
@@ -147,12 +147,13 @@ function update_distant_order(order_id) {
// Update rev of current orders after their update
for
(
let
doc
of
response
)
{
let
order_id
=
doc
.
id
.
split
(
'_'
)[
1
];
orders
[
order_id
].
_rev
=
doc
.
rev
orders
[
order_id
].
_rev
=
doc
.
rev
;
}
})
.
catch
((
err
)
=>
{
console
.
log
(
err
);
})
});
}
/* INIT */
...
...
@@ -844,7 +845,7 @@ function clearLineEdition() {
document
.
getElementById
(
'product_uom'
).
innerHTML
=
''
;
}
/**
/**
* Update a product info : qty or unit price
* @param {Object} productToEdit
* @param {Float} value if set, use it as new value
...
...
@@ -986,7 +987,7 @@ function setAllQties() {
.
draw
();
// Batch update orders
update_distant_orders
()
update_distant_orders
()
;
}
/* ACTIONS */
...
...
@@ -1309,17 +1310,17 @@ function send() {
/* Not last step: update distant data */
for
(
let
order_id
in
orders
)
{
// Save current step updated data
orders
[
order_id
].
previous_steps_data
=
{}
orders
[
order_id
].
previous_steps_data
=
{}
;
orders
[
order_id
].
previous_steps_data
[
reception_status
]
=
{
updated_products
:
orders
[
order_id
].
updated_products
||
[]
}
}
;
orders
[
order_id
].
reception_status
=
updateType
;
// Unlock order
orders
[
order_id
].
last_update
=
{
timestamp
:
null
,
fingerprint
:
null
,
}
fingerprint
:
null
}
;
// Delete temp data
delete
orders
[
order_id
].
valid_products
;
...
...
@@ -1328,7 +1329,7 @@ function send() {
dbc
.
bulkDocs
(
Object
.
values
(
orders
)).
catch
((
err
)
=>
{
console
.
log
(
err
);
})
})
;
}
else
{
// Print etiquettes with new prices
if
(
updatedProducts
.
length
>
0
)
{
...
...
@@ -1358,6 +1359,7 @@ function send() {
let
groups_doc
=
doc
;
let
first_order_id
=
parseInt
(
Object
.
keys
(
orders
)[
0
]);
for
(
let
i
in
groups_doc
.
groups
)
{
if
(
groups_doc
.
groups
[
i
].
includes
(
first_order_id
))
{
groups_doc
.
groups
.
splice
(
i
,
1
);
...
...
@@ -1371,7 +1373,7 @@ function send() {
return
dbc
.
bulkDocs
(
couchdb_update_data
);
})
.
catch
(
function
(
err
)
{
console
.
log
(
err
)
console
.
log
(
err
);
});
}
...
...
@@ -1425,7 +1427,7 @@ function confirm_all_left_is_good() {
.
draw
();
// Batch update orders
update_distant_orders
()
update_distant_orders
()
;
closeModal
();
}
...
...
@@ -1484,7 +1486,7 @@ function init_dom(partners_display_data) {
for
(
let
order_id
in
orders
)
{
orders
[
order_id
].
last_update
=
{
timestamp
:
null
,
fingerprint
:
null
,
fingerprint
:
null
};
}
...
...
@@ -1493,8 +1495,8 @@ function init_dom(partners_display_data) {
})
.
catch
((
err
)
=>
{
console
.
log
(
err
);
})
})
});
})
;
// Grouped orders
if
(
Object
.
keys
(
orders
).
length
>
1
)
{
...
...
@@ -1823,7 +1825,7 @@ $(document).ready(function() {
user_comments
=
orders
[
Object
.
keys
(
orders
)[
0
]].
user_comments
||
""
;
// Indicate that these orders are used in this navigator
update_distant_orders
()
update_distant_orders
()
;
// Fetch orders data
fetch_data
();
...
...
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