ok
Direktori : /proc/thread-self/root/proc/self/root/home2/selectio/www/vijay-gases/modal/ |
Current File : //proc/thread-self/root/proc/self/root/home2/selectio/www/vijay-gases/modal/create-customer.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 Customer 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-4"> <div class="form-group"> <label class="required">Company Name</label> <input type="text" name="cus_company_name" id="cus_company_name" class="form-control" required> </div> </div> <div class="col-md-4"> <div class="form-group"> <label class="required">Customer Name</label> <input type="text" name="customer_name" id="customer_name" onkeyup="this.value = this.value.toUpperCase();" class="form-control" required> </div> </div> <div class="col-md-4"> <div class="form-group"> <label class="">GST No</label> <input type="text" name="cus_gst_no" id="cus_gst_no" class="form-control" > </div> </div> <div class="col-md-4"> <div class="form-group"> <label class="">Aadhar No</label> <input type="text" name="aadhar_no" id="aadhar_no" class="form-control" > </div> </div> <div class="col-md-4"> <div class="form-group"> <label class="required">Customer Mobile No</label> <input type="number" name="mobile_no" id="mobile_no" class="form-control" required> </div> </div> <div class="col-md-4"> <div class="form-group"> <label>Customer Mobile No. 2</label> <input type="number" name="mobile_no2" id="mobile_no2" class="form-control"> </div> </div> <div class="col-md-4"> <div class="form-group"> <label>Customer Mobile No. 3</label> <input type="number" name="mobile_no3" id="mobile_no3" class="form-control"> </div> </div> <div class="col-md-4"> <div class="form-group"> <label>Customer Mobile No. 4</label> <input type="number" name="mobile_no4" id="mobile_no4" class="form-control"> </div> </div> <div class="col-md-4"> <div class="form-group"> <label>Customer Mobile No. 5</label> <input type="number" name="mobile_no5" id="mobile_no5" class="form-control"> </div> </div> <div class="col-md-6"> <div class="form-group"> <label class="required">Address</label> <textarea type="text" name="address" id="address" class="form-control" required></textarea> </div> </div> <div class="col-md-6"> <div class="form-group"> <label class="required">Delivery Address</label> <textarea type="text" name="del_address" id="del_address" class="form-control" required></textarea> </div> </div> <div class="col-md-4"> <div class="form-group"> <label class="">Deposit Amount</label> <input type="number" name="cus_deposit_amt" id="cus_deposit_amt" class="form-control" > </div> </div> <div class="col-md-4"> <div class="form-group"> <label class="">Date</label> <input type="date" name="cus_date" id="cus_date" class="form-control" > </div> </div> <div class="col-md-4"> <div class="form-group"> <label class="">Receipt No</label> <input type="text" name="receipt_no" id="receipt_no" class="form-control" placeholder="Receipt No" > </div> </div> <div class="col-md-4"> <div class="form-group"> <label class="required">Company Names</label> <select class="form-control select2" name="location_id" id="location_id" style="width:100%;" required> <option value="">Select The Company Names</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> <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_customer'); $.ajax({ url: 'apis/customer-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"); emp_datas(); $('#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>