65 lines
2.6 KiB
PHP
65 lines
2.6 KiB
PHP
|
|
|
|
|
|
|
|
<style>
|
|
#modal-add-city {
|
|
overflow-y: scroll;
|
|
}
|
|
</style>
|
|
|
|
<div class="modal fade" id="modal-add-store" role="dialog" aria-hidden="true">
|
|
<form role="form" id="city_form" name="city_form" action="#" method="post">
|
|
<div class="modal-dialog">
|
|
<div class="modal-content">
|
|
<div class="widget-header">
|
|
<h5 class="widget-title">Store Return Approval </h5>
|
|
<div class="widget-toolbar">
|
|
<div class="widget-menu">
|
|
<a href="#" class="close" data-action="close" data-dismiss="modal">
|
|
<i class="ace-icon fa fa-times"></i>
|
|
</a>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="modal-body">
|
|
|
|
|
|
<div class="form-group">
|
|
<label for="city ">Receival Date</label>
|
|
<input type="hidden" class="form-control" name="received_id" id="received_id" value="" />
|
|
<input type="text" readonly class="form-control" name="received_date" id="received_date" value="" />
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="user_role">Receival no</label>
|
|
<input type="text" readonly class="form-control" name="received_ref_no" id="received_ref_no" value="" />
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="user_role">Receival Desc</label>
|
|
<input type="text" readonly class="form-control" name="item_desc" id="item_desc" value="" />
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="user_role">Status</label>
|
|
<select class="form-control" name="status" id="status">
|
|
<option disabled>Please Select Option</option>
|
|
<option value="DRA">Approve</option>
|
|
</select>
|
|
</div>
|
|
|
|
|
|
</div>
|
|
<div class="widget-toolbox padding-8 clearfix">
|
|
<button type="button" class="btn btn-info btn-sm save_button" onclick="save_section();"><i
|
|
class="ace-icon fa fa-floppy-o bigger-110"></i>Save </button>
|
|
<button type="button" class="btn btn-danger btn-sm" data-dismiss="modal"><i
|
|
class="ace-icon fa fa-times bigger-110"></i>Cancel</button>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div> |