Commit 709bec61 by Damien Moulard

fix wrong total value displayed

parent b4ff007d
...@@ -485,7 +485,7 @@ function _compute_total_values_by_supplier() { ...@@ -485,7 +485,7 @@ function _compute_total_values_by_supplier() {
for (let supinfo of p.suppliersinfo) { for (let supinfo of p.suppliersinfo) {
let supplier_index = selected_suppliers.findIndex(s => s.id == supinfo.supplier_id); let supplier_index = selected_suppliers.findIndex(s => s.id == supinfo.supplier_id);
let product_supplier_value = ('qty' in supinfo) ? supinfo.qty * supinfo.price : 0; let product_supplier_value = ('qty' in supinfo) ? supinfo.qty * supinfo.package_qty * supinfo.price : 0;
selected_suppliers[supplier_index].total_value += product_supplier_value; selected_suppliers[supplier_index].total_value += product_supplier_value;
} }
} }
...@@ -589,6 +589,7 @@ function generate_inventory() { ...@@ -589,6 +589,7 @@ function generate_inventory() {
openModal( openModal(
modal_create_inventory.html(), modal_create_inventory.html(),
() => { () => {
if (is_time_to('validate_generate_inventory')) {
$('#do_inventory').empty().append(`<i class="fas fa-spinner fa-spin"></i>`); $('#do_inventory').empty().append(`<i class="fas fa-spinner fa-spin"></i>`);
$.ajax({ $.ajax({
type: "POST", type: "POST",
...@@ -625,6 +626,7 @@ function generate_inventory() { ...@@ -625,6 +626,7 @@ function generate_inventory() {
alert("Erreur lors de la création de l'inventaire. Réessayez plus tard."); alert("Erreur lors de la création de l'inventaire. Réessayez plus tard.");
} }
}); });
}
}, },
'Valider' 'Valider'
); );
...@@ -638,7 +640,7 @@ function generate_inventory() { ...@@ -638,7 +640,7 @@ function generate_inventory() {
* Event fct: on click on an order button * Event fct: on click on an order button
*/ */
function order_pill_on_click() { function order_pill_on_click() {
if (is_time_to('order_pill_on_click')) { if (is_time_to('order_pill_on_click', 1000)) {
clicked_order_pill = $(this); clicked_order_pill = $(this);
let order_name_container = clicked_order_pill.find('.pill_order_name'); let order_name_container = clicked_order_pill.find('.pill_order_name');
let doc_id = $(order_name_container).text(); let doc_id = $(order_name_container).text();
...@@ -666,7 +668,9 @@ function order_pill_on_click() { ...@@ -666,7 +668,9 @@ function order_pill_on_click() {
openModal( openModal(
modal_order_access.html(), modal_order_access.html(),
() => { () => {
if (is_time_to('validate_access_order')) {
goto_main_screen(doc); goto_main_screen(doc);
}
}, },
'Valider' 'Valider'
); );
...@@ -811,6 +815,9 @@ function create_orders() { ...@@ -811,6 +815,9 @@ function create_orders() {
} }
} }
console.log(orders_data);
// TODO
$.ajax({ $.ajax({
type: "POST", type: "POST",
url: "/orders/create_orders", url: "/orders/create_orders",
...@@ -979,7 +986,9 @@ function display_suppliers() { ...@@ -979,7 +986,9 @@ function display_suppliers() {
openModal( openModal(
modal_remove_supplier.html(), modal_remove_supplier.html(),
() => { () => {
if (is_time_to('validate_remove_supplier')) {
remove_supplier(supplier_id); remove_supplier(supplier_id);
}
}, },
'Valider' 'Valider'
); );
...@@ -1321,7 +1330,9 @@ function display_products(params) { ...@@ -1321,7 +1330,9 @@ function display_products(params) {
openModal( openModal(
modal_attach_product_to_supplier.html(), modal_attach_product_to_supplier.html(),
() => { () => {
if (is_time_to('validate_save_supplier_product_association')) {
save_supplier_product_association(product, supplier, this); save_supplier_product_association(product, supplier, this);
}
}, },
'Valider', 'Valider',
false false
...@@ -1408,7 +1419,9 @@ function display_products(params) { ...@@ -1408,7 +1419,9 @@ function display_products(params) {
openModal( openModal(
modal_product_npa.html(), modal_product_npa.html(),
() => { () => {
if (is_time_to('validate_set_product_npa')) {
set_product_npa(p_id, npa); set_product_npa(p_id, npa);
}
}, },
'Valider', 'Valider',
false, false,
...@@ -1625,7 +1638,7 @@ $(document).ready(function() { ...@@ -1625,7 +1638,7 @@ $(document).ready(function() {
// Main screen // Main screen
$("#coverage_form").on("submit", function(e) { $("#coverage_form").on("submit", function(e) {
e.preventDefault(); e.preventDefault();
if (is_time_to('submit_coverage_form')) { if (is_time_to('submit_coverage_form', 1000)) {
let val = $("#coverage_days_input").val(); let val = $("#coverage_days_input").val();
val = parseInt(val); val = parseInt(val);
...@@ -1645,32 +1658,32 @@ $(document).ready(function() { ...@@ -1645,32 +1658,32 @@ $(document).ready(function() {
$("#supplier_form").on("submit", function(e) { $("#supplier_form").on("submit", function(e) {
e.preventDefault(); e.preventDefault();
if (is_time_to('add_product')) { if (is_time_to('add_product', 1000)) {
add_supplier(); add_supplier();
} }
}); });
$("#product_form").on("submit", function(e) { $("#product_form").on("submit", function(e) {
e.preventDefault(); e.preventDefault();
if (is_time_to('add_product')) { if (is_time_to('add_product', 1000)) {
add_product(); add_product();
} }
}); });
$("#do_inventory").on("click", function() { $("#do_inventory").on("click", function() {
if (is_time_to('generate_inventory')) { if (is_time_to('generate_inventory', 1000)) {
generate_inventory(); generate_inventory();
} }
}); });
$('#back_to_order_selection_from_main').on('click', function() { $('#back_to_order_selection_from_main').on('click', function() {
if (is_time_to('back_to_order_selection_from_main')) { if (is_time_to('back_to_order_selection_from_main', 1000)) {
back(); back();
} }
}); });
$('#create_orders').on('click', function() { $('#create_orders').on('click', function() {
if (is_time_to('create_orders')) { if (is_time_to('create_orders', 1000)) {
let modal_create_order = $('#templates #modal_create_order'); let modal_create_order = $('#templates #modal_create_order');
modal_create_order.find('.suppliers_date_planned_area').empty(); modal_create_order.find('.suppliers_date_planned_area').empty();
...@@ -1687,7 +1700,9 @@ $(document).ready(function() { ...@@ -1687,7 +1700,9 @@ $(document).ready(function() {
openModal( openModal(
modal_create_order.html(), modal_create_order.html(),
() => { () => {
if (is_time_to('validate_create_orders')) {
create_orders(); create_orders();
}
}, },
'Valider', 'Valider',
false false
...@@ -1757,7 +1772,7 @@ $(document).ready(function() { ...@@ -1757,7 +1772,7 @@ $(document).ready(function() {
// Orders created screen // Orders created screen
$('#back_to_order_selection_from_orders_created').on('click', function() { $('#back_to_order_selection_from_orders_created').on('click', function() {
if (is_time_to('back_to_order_selection_from_orders_created')) { if (is_time_to('back_to_order_selection_from_orders_created', 1000)) {
switch_screen('order_selection', 'orders_created'); switch_screen('order_selection', 'orders_created');
} }
}); });
......
...@@ -44,7 +44,7 @@ ...@@ -44,7 +44,7 @@
<p id="order_data_container"> <p id="order_data_container">
Commande : <span class="order_name_container"></span> Commande : <span class="order_name_container"></span>
<span id="order_data_separator"> | </span> <span id="order_data_separator"> | </span>
Total : <span id="order_total_value">0</span> Total HT : <span id="order_total_value">0</span>
</p> </p>
</div> </div>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment