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
94eefeab
Commit
94eefeab
authored
Jul 28, 2021
by
François C.
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Lintjs
parent
2e70b732
Pipeline
#1260
passed with stage
in 1 minute 25 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
35 additions
and
27 deletions
+35
-27
orders_helper.js
orders/static/js/orders_helper.js
+18
-16
reception_index.js
reception/static/js/reception_index.js
+1
-1
stock_movements.js
stock/static/js/stock_movements.js
+16
-10
No files found.
orders/static/js/orders_helper.js
View file @
94eefeab
...
...
@@ -716,7 +716,7 @@ function generate_inventory() {
"Inventaire créé !"
,
{
elementPosition
:
"bottom center"
,
className
:
"success"
,
className
:
"success"
}
);
},
200
);
...
...
@@ -833,7 +833,7 @@ function create_cdb_order() {
/**
* Update order data of an existing order in couchdb
*
*
* @returns Promise resolved after update is complete
*/
function
update_cdb_order
()
{
...
...
@@ -864,7 +864,7 @@ function update_cdb_order() {
/**
* Delete an order in couchdb.
*
*
* @returns Promise resolved after delete is complete
*/
function
delete_cdb_order
()
{
...
...
@@ -878,7 +878,7 @@ function delete_cdb_order() {
alert
(
"Erreur lors de la suppression de la commande... Si l'erreur persiste contactez un administrateur svp."
);
console
.
log
(
err
);
reject
();
reject
(
new
Error
(
"Error while deleting order"
)
);
}
});
});
...
...
@@ -1642,7 +1642,7 @@ function display_products(params) {
*/
function
unselect_all_rows
()
{
$
(
"#select_all_products_cb"
).
prop
(
"checked"
,
false
);
products_table
.
rows
().
every
(
function
()
{
const
node
=
$
(
this
.
node
());
...
...
@@ -1753,10 +1753,11 @@ function update_order_selection_screen() {
e
.
stopImmediatePropagation
();
order_name_container
=
$
(
this
).
prev
()[
0
];
let
order_id
=
$
(
order_name_container
).
text
();
let
modal_remove_order
=
$
(
'#templates #modal_remove_order'
);
modal_remove_order
.
find
(
".remove_order_name"
).
text
(
order_id
);
openModal
(
modal_remove_order
.
html
(),
()
=>
{
...
...
@@ -1777,9 +1778,9 @@ function update_order_selection_screen() {
},
500
);
});
})
.
catch
(()
=>
{
console
.
log
(
"error deleting order"
);
});
.
catch
(()
=>
{
console
.
log
(
"error deleting order"
);
});
});
}
},
...
...
@@ -1933,7 +1934,7 @@ $(document).ready(function() {
});
// Close dropdown menu on click outside
$
(
document
).
click
(
function
(
event
)
{
$
(
document
).
click
(
function
(
event
)
{
let
target
=
$
(
event
.
target
);
if
(
...
...
@@ -1943,7 +1944,7 @@ $(document).ready(function() {
$
(
'#actions_buttons_container'
).
hide
();
$
(
'.toggle_action_buttons_icon'
).
empty
()
.
append
(
'<i class="fas fa-chevron-down"></i>'
);
}
}
});
$
(
"#supplier_form"
).
on
(
"submit"
,
function
(
e
)
{
...
...
@@ -1985,6 +1986,7 @@ $(document).ready(function() {
$
(
"#delete_order_button"
).
on
(
"click"
,
function
(
e
)
{
if
(
is_time_to
(
'press_delete_order_button'
,
1000
))
{
let
modal_remove_order
=
$
(
'#templates #modal_remove_order'
);
modal_remove_order
.
find
(
".remove_order_name"
).
text
(
order_doc
.
_id
);
openModal
(
...
...
@@ -2006,15 +2008,15 @@ $(document).ready(function() {
},
500
);
});
})
.
catch
(()
=>
{
console
.
log
(
"error deleting order"
);
});
.
catch
(()
=>
{
console
.
log
(
"error deleting order"
);
});
}
},
'Valider'
);
}
});
$
(
'#back_to_order_selection_from_main'
).
on
(
'click'
,
function
()
{
...
...
reception/static/js/reception_index.js
View file @
94eefeab
...
...
@@ -355,7 +355,7 @@ function display_orders_table() {
$
(
'#orders'
).
empty
();
}
for
(
let
j
in
orders
)
{
console
.
log
(
orders
[
j
].
id
)
console
.
log
(
orders
[
j
].
id
)
;
}
table_orders
=
$
(
'#orders'
).
DataTable
({
data
:
orders
,
...
...
stock/static/js/stock_movements.js
View file @
94eefeab
...
...
@@ -166,6 +166,7 @@ function init_datatable() {
let
data
=
row
.
data
();
let
validated_data
=
qty_validation
(
qty
,
data
.
uom
.
id
);
if
(
validated_data
>=
0
)
{
data
.
qty
=
validated_data
;
row
.
remove
().
draw
();
...
...
@@ -423,28 +424,33 @@ var update_existing_product = function(product, added_qty, undo_option = false)
function
qty_validation
(
qty
,
uom_id
)
{
if
(
qty
==
null
||
qty
==
''
)
{
$
.
notify
(
"Il n'y a pas de quantité indiquée, ou ce n'est pas un nombre"
,
{
globalPosition
:
"top right"
,
className
:
"error"
});
globalPosition
:
"top right"
,
className
:
"error"
});
return
-
1
;
}
if
(
uom_id
==
1
)
{
if
(
qty
/
parseInt
(
qty
)
!=
1
&&
qty
!=
0
){
if
(
qty
/
parseInt
(
qty
)
!=
1
&&
qty
!=
0
)
{
$
.
notify
(
"Une quantité avec décimale est indiquée alors que c'est un article à l'unité"
,
{
globalPosition
:
"top right"
,
className
:
"error"
});
return
-
2
;}
globalPosition
:
"top right"
,
className
:
"error"
});
return
-
2
;
}
qty
=
parseInt
(
qty
);
// product by unit
}
else
{
qty
=
parseFloat
(
qty
).
toFixed
(
2
);
}
if
(
isNaN
(
qty
)){
if
(
isNaN
(
qty
))
{
$
.
notify
(
"Une quantité n'est pas un nombre"
,
{
globalPosition
:
"top right"
,
className
:
"error"
});
return
-
3
;}
globalPosition
:
"top right"
,
className
:
"error"
});
return
-
3
;
}
return
qty
;
}
...
...
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