ok
Direktori : /home2/selectio/www/vijay-gases/modal/ |
Current File : /home2/selectio/www/vijay-gases/modal/purchase_create-product.php |
<?php include"../config/config.php";?> <div class="modal-dialog modal-lg" role="document" id="add_modal" style="overflow-x: hidden; overflow-y: hidden;"> <div class="modal-content"> <div class="modal-header"> <h4 class="modal-title mt-0" id="myLargeModalLabel"><b>Create Product Details</b></h4> <button type="button" class="close" data-dismiss="modal" aria-label="Close" style="margin-top: -25px;"><i class="fa fa-times"></i></button> </div> <form id="add_form" method="post"> <div id="content-div"> <div class="modal-body" style="padding: 20px 40px 20px 40px;"> <div class="row"> <div class="col-md-6"> <label class="required">Select Gas Type</label> <select class="form-control select2" name="gas_id" id="gas_id" style="width:100%;" required> <option value="">Select The company Name</option> <?php $statement = $pdo->prepare("SELECT * FROM `tbl_gas` where status=1"); $statement->execute(); $location_result = $statement->fetchAll(PDO::FETCH_ASSOC); foreach ($location_result as $result) { echo "<option value=".$result['gas_name'].">".$result['gas_name']."</option>"; } ?> </select> </div> <div class="col-md-6"> <label class="required">HSN /SAC Number</label> <input type="text" name="sku_no" id="sku_no" class="form-control" required> </div> <div class="col-md-6"> <label class="required">Cylinder Number</label> <input type="text" name="cy_no" id="cy_no" class="form-control" required> </div> <div class="col-md-6"> <div class="form-group"> <label class="required">Purchase Price</label> <input type="number" name="purchase_price" id="purchase_price" class="form-control" required> </div> </div> <div class="col-md-6" style="display:none;"> <div class="form-group"> <label >Stock</label> <input type="number" name="stock" id="stock" value="1" class="form-control" required> </div> </div> <div class="col-md-6"> <div class="form-group"> <label class="required">Sell Price</label> <input type="number" name="sell_price" id="sell_price" class="form-control" required> </div> </div> <div class="col-md-6"> <label class="required">Company Name</label> <select class="form-control select2" name="location_id" id="location_id" style="width:100%;" required> <option value="">Select The company Name</option> <?php $statement = $pdo->prepare("SELECT * FROM `tbl_location` where status=1"); $statement->execute(); $location_result = $statement->fetchAll(PDO::FETCH_ASSOC); foreach ($location_result as $result) { echo "<option value=".$result['id'].">".$result['name']."</option>"; } ?> </select> </div> </div> </div> <div class="modal-footer"> <button type="submit" class="btn btn-primary">Submit</button> </div> </div> </form> <div id="loading-div" style="display: none; padding-bottom: 80px;"> <center> <img src="img/loading.gif" style="width: 250px;"><br><b class="blinking">Processing Please Wait...</b></center> </div> </div> </div> <script> $('#add_form').on('submit', function(e){ console.log("Click And Form Working"); e.preventDefault(); $('#loading-div').show(); $('#content-div').hide(); var formData = new FormData(this); formData.append('type', 'create_product'); $.ajax({ url: 'apis/product-add-api.php', type: 'post', dataType: 'json', data: formData, cache: false, contentType: false, processData: false, enctype: 'multipart/form-data', success: function (response) { if(response['status']==200){ alert(response['message']); $("#add_modal .close").click(); $('#add_form').trigger("reset"); $('#loading-div').hide(); $('#content-div').show(); }else{ alert(response['message']); $('#loading-div').hide(); $('#content-div').show(); } } }); }); </script> <link href="https://cdn.jsdelivr.net/npm/select2@4.1.0-rc.0/dist/css/select2.min.css" rel="stylesheet" /> <script src="https://cdn.jsdelivr.net/npm/select2@4.1.0-rc.0/dist/js/select2.min.js"></script> <style> .select2-container--default .select2-selection--multiple .select2-selection__choice { background-color: rgb(228, 228, 228); box-sizing: border-box; display: inline-block; margin-left: 5px; margin-top: 5px; position: relative; max-width: 100%; text-overflow: ellipsis; vertical-align: bottom; white-space-collapse: collapse; text-wrap: nowrap; border-width: 1px; border-style: solid; border-color: rgb(170, 170, 170); border-image: initial; border-radius: 4px; padding: 0px 10px 0px 20px; overflow: hidden; color: black; font-weight: 800; } .select2-container--default .select2-selection--multiple { background-color: white; border: 1px solid #aaa; border-radius: 4px; cursor: text; height: 100px; padding-bottom: 5px; padding-right: 5px; position: relative; } </style> <script> $(document).ready(function(){ $(".select2").select2(); }); </script>