Commit 7bf1b1be by Damien Moulard

move stock mouvements validation text&button

parent 10127a48
Pipeline #1336 passed with stage
in 1 minute 24 seconds
.main, .barcode_search_area { .main {
margin-top: 40px; margin-top: 40px;
} }
.top_content {
margin-top: 40px;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
}
.top_content_item {
flex: 1 0 33%;
}
#sm_barcode_selector { #sm_barcode_selector {
border: 1px solid #555; border: 1px solid #555;
border-radius:10px; border-radius:10px;
...@@ -11,10 +23,6 @@ ...@@ -11,10 +23,6 @@
max-width: 60px; max-width: 60px;
} }
#movement_validation_button {
margin-top: 20px;
}
.notifyjs-test1-base { .notifyjs-test1-base {
background: #5CB85C !important; background: #5CB85C !important;
} }
......
...@@ -185,7 +185,7 @@ function init_datatable() { ...@@ -185,7 +185,7 @@ function init_datatable() {
}); });
// Show validation button // Show validation button
$('.footer').show(); $('.movement_validation_area').show();
} }
} }
...@@ -333,7 +333,7 @@ var add_product = function(product) { ...@@ -333,7 +333,7 @@ var add_product = function(product) {
} }
update_total_value(); update_total_value();
$('.footer').show(); // if is a second or more access, footer is hidden (init_datatable is not fired) $('.movement_validation_area').show(); // if is a second or more access, movement_validation_area is hidden (init_datatable is not fired)
} catch (e) { } catch (e) {
err = {msg: e.name + ' : ' + e.message, ctx: 'add_product'}; err = {msg: e.name + ' : ' + e.message, ctx: 'add_product'};
console.error(err); console.error(err);
...@@ -702,7 +702,7 @@ function do_stock_movement() { ...@@ -702,7 +702,7 @@ function do_stock_movement() {
products = []; products = [];
products_table.clear().draw(); products_table.clear().draw();
$('.footer').hide(); $('.movement_validation_area').hide();
}, },
......
...@@ -48,22 +48,28 @@ ...@@ -48,22 +48,28 @@
<p><i>Vous pouvez également taper le codebarre, puis appuyer sur la touche Entrée.</i></p> <p><i>Vous pouvez également taper le codebarre, puis appuyer sur la touche Entrée.</i></p>
</div> </div>
<div class="barcode_search_area txtcenter"> <div class="top_content">
<input type="text" id="sm_barcode_selector" placeholder="Codebarre"> <div class="top_content_item top_content_left">
<div id="icon_product_not_found" class="tooltip" style="display:none;"> <div class="movement_validation_area txtcenter" style="display:none">
<span class="tooltiptext tooltip-lg tt_twolines">Aucun produit trouvé avec ce code-barre.</span> <h4>Total (H.T.) : <span class="total_value">0</span></h4>
<span style="color: #d9534f;"> <i class="fas fa-ban"></i> <button type="button" class="btn--primary" id="movement_validation_button" name="button">Validation du total des produits saisis</button>
</div> </div>
</div>
<div class="barcode_search_area txtcenter top_content_item top_content_left">
<input type="text" id="sm_barcode_selector" placeholder="Codebarre">
<div id="icon_product_not_found" class="tooltip" style="display:none;">
<span class="tooltiptext tooltip-lg tt_twolines">Aucun produit trouvé avec ce code-barre.</span>
<span style="color: #d9534f;"> <i class="fas fa-ban"></i>
</div>
</div>
<div class="top_content_item top_content_left"></div>
</div> </div>
<div class="main"> <div class="main">
<table id="products_table" class="display" cellspacing="0" ></table> <table id="products_table" class="display" cellspacing="0" ></table>
</div> </div>
<div class="footer txtcenter" style="display:none">
<h4>Total (H.T.) : <span class="total_value">0</span></h4>
<button type="button" class="btn--primary" id="movement_validation_button" name="button">Validation du total des produits saisis</button>
</div>
<input type="hidden" name="barcode"/> <input type="hidden" name="barcode"/>
</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