[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: addPurchase.php
<?php $time_start = microtime(true); ?> <input type="hidden" id="Unit_Price_l" value="<?php echo lang('unit_price');?>"> <input type="hidden" id="Qty_Amount" value="<?php echo lang('qty');?>"> <input type="hidden" id="total" value="<?php echo lang('total');?>"> <input type="hidden" id="supplier_field_required" value="<?php echo lang('supplier_field_required');?>"> <input type="hidden" id="account_field_required" value="<?php echo lang('account_field_required');?>"> <input type="hidden" id="date_field_required" value="<?php echo lang('date_field_required');?>"> <input type="hidden" id="at_least_item" value="<?php echo lang('at_least_item');?>"> <input type="hidden" id="imei_number" value="<?php echo lang('imei_number');?>"> <input type="hidden" id="serial_number" value="<?php echo lang('serial_number');?>"> <input type="hidden" id="expiry_date_ln" value="<?php echo lang('expiry_date');?>"> <input type="hidden" id="select" value="<?php echo lang('select');?>"> <input type="hidden" id="low_qty_set" value="<?php echo lang('low_qty_set');?>"> <input type="hidden" id="current_due" value="<?php echo lang('current_due');?>"> <input type="hidden" id="Payment_Method_Exist" value="<?php echo lang('This_Payment_Method_Already_Exist');?>"> <input type="hidden" id="ok" value="<?php echo lang('ok');?>"> <input type="hidden" id="add_mode" value="Add"> <input type="hidden" id="name_field_required" value="<?php echo lang('name_field_required');?>"> <input type="hidden" id="The_Contact_field_required" value="<?php echo lang('The_Contact_field_required');?>"> <input type="hidden" id="The_Phone_field_is_required" value="<?php echo lang('The_Phone_field_is_required');?>"> <script src="<?php echo base_url(); ?>frequent_changing/js/add_purchase.js"></script> <link rel="stylesheet" href="<?php echo base_url(); ?>frequent_changing/css/add_edit_purchase.css"> <div class="main-content-wrapper"> <?php if ($this->session->flashdata('exception')) { echo '<section class="alert-wrapper"> <div class="alert alert-success alert-dismissible fade show"> <button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button> <div class="alert-body"> <i class="m-right fa fa-check"></i>'; echo escape_output($this->session->flashdata('exception'));unset($_SESSION['exception']); echo '</div></div></section>'; } ?> <section class="content-header"> <div class="row justify-content-between"> <div class="col-6 p-0"> <h3 class="top-left-header mt-2"><?php echo lang('add_purchase'); ?></h3> </div> <?php $this->view('updater/breadcrumb', ['firstSection'=> lang('purchase'), 'secondSection'=> lang('add_purchase')])?> </div> </section> <div class="box-wrapper"> <div class="table-box"> <?php echo form_open_multipart(base_url() . 'Purchase/addEditPurchase', $arrayName = array('id' => 'purchase_form')) ?> <div class="box-body"> <div class="row"> <div class="col-md-6 col-lg-4 mb-3"> <div class="form-group"> <label><?php echo lang('ref_no'); ?></label> <input autocomplete="off" type="text" id="reference_no" readonly name="reference_no" class="form-control" placeholder="<?php echo lang('ref_no'); ?>" value="<?php echo $pur_ref_no; ?>"> </div> <?php if (form_error('reference_no')) { ?> <div class="callout callout-danger my-2"> <span class="error_paragraph"><?php echo form_error('reference_no'); ?></span> </div> <?php } ?> </div> <div class="col-md-6 col-lg-4 mb-3"> <div class="form-group"> <label><?php echo lang('supplier'); ?> <span class="required_star">*</span></label> <div class="d-flex"> <select class="form-control select2 op_width_100_p" id="supplier_id" name="supplier_id"> <option value=""><?php echo lang('select'); ?></option> <?php foreach ($suppliers as $splrs) { ?> <option value="<?php echo escape_output($splrs->id) ?>" <?php echo set_select('supplier_id', $splrs->id); ?>> <?php echo escape_output($splrs->name) ?></option> <?php } ?> </select> <button type="button" class="new-btn ms-1 add_supplier_by_ajax bg-blue-btn-p-14"> <iconify-icon icon="solar:add-circle-broken" width="22"></iconify-icon> </button> </div> <div class="alert alert-info" id="remaining_balance"></div> </div> <?php if (form_error('supplier_id')) { ?> <div class="callout callout-danger my-2"> <span class="error_paragraph"><?php echo form_error('supplier_id'); ?></span> </div> <?php } ?> <div class="alert alert-error error-msg supplier_id_err_msg_contnr "> <p id="supplier_id_err_msg"></p> </div> </div> <div class="col-md-6 col-lg-4 mb-3"> <div class="form-group"> <label><?php echo lang('date'); ?> <span class="required_star">*</span></label> <input autocomplete="off" readonly type="text" name="date" class="form-control customDatepicker" placeholder="<?php echo lang('date'); ?>" value="<?=date('Y-m-d',strtotime('today'))?>"> </div> <?php if (form_error('date')) { ?> <div class="callout callout-danger my-2"> <span class="error_paragraph"><?php echo form_error('date'); ?></span> </div> <?php } ?> <div class="alert alert-error error-msg date_err_msg_contnr "> <p id="date_err_msg"></p> </div> </div> <div class="col-md-6 col-lg-4 mb-3"> <div class="form-group"> <label><?php echo lang('supplier_invoice_no'); ?></label> <input autocomplete="off" type="text" id="invoice_no" name="invoice_no" class="form-control" placeholder="<?php echo lang('invoice_no'); ?>" value="<?php echo set_value('invoice_no');?>"> </div> <?php if (form_error('invoice_no')) { ?> <div class="callout callout-danger my-2"> <span class="error_paragraph"><?php echo form_error('invoice_no'); ?></span> </div> <?php } ?> </div> <div class="clearfix"></div> <div class="col-md-6 col-lg-4 mb-3"> <div class="form-group"> <label><?php echo lang('items'); ?> <span class="required_star">*</span></label> <select class="form-control select2 select2-hidden-accessible op_width_100_p" name="item_id" id="item_id"> <option value=""><?php echo lang('select'); ?></option> <?php foreach ($items as $value) { $string = ($value->parent_name != '' ? $value->parent_name . ' - ' : '') . ($value->name) . ($value->brand_name != '' ? ' - ' . $value->brand_name : '') . ( ' - ' . $value->code); ?> <option value="<?php echo escape_output($value->id) . "|" . $string . "|" . $value->purchase_unit . "|" . $value->purchase_price. "|" . $value->conversion_rate . "|" . $value->type . "|" . $value->expiry_date_maintain ?>"> <?php echo escape_output($string) ?> </option> <?php } ?> </select> </div> <?php if (form_error('item_id')) { ?> <div class="callout callout-danger my-2"> <span class="error_paragraph"><?php echo form_error('item_id'); ?></span> </div> <?php } ?> <div class="alert alert-error error-msg item_id_err_msg_contnr "> <p id="item_id_err_msg"></p> </div> </div> <div class="col-md-6 col-lg-4"> <div class="hidden-xs hidden-sm"> </div> <div class="d-flex"> <button data-tippy-content="<?php echo lang('item_sync_notification'); ?>" type="button" class="new-btn mt-1 h-40 me-2" id="sync_items"> <iconify-icon icon="solar:refresh-circle-broken" width="22"></iconify-icon> </button> <button type="button" class="new-btn mt-1 h-40" id="pull_low_stock_products"> <iconify-icon icon="solar:arrow-down-broken" width="22"></iconify-icon> <?php echo lang('pull_low_stock_products'); ?></button> </div> </div> <div class="hidden-lg hidden-sm"> </div> </div> <div class="row"> <div class="col-md-12"> <div class="table-responsive" id="purchase_cart"> <table class="table"> <thead> <tr> <th class="w-5"><?php echo lang('sn'); ?></th> <th class="w-20"><?php echo lang('item'); ?>-<?php echo lang('brand'); ?>-<?php echo lang('code'); ?></th> <th class="w-25"><?php echo lang('expiry_date_IME_Serial'); ?></th> <th class="w-15"><?php echo lang('quantity_amount'); ?></th> <th class="w-15"><?php echo lang('unit_price'); ?></th> <th class="w-15"><?php echo lang('total'); ?></th> <th class="w-5"><?php echo lang('actions'); ?></th> </tr> </thead> <tbody> </tbody> </table> </div> </div> </div> <div class="row justify-content-end"> <div class="col-sm-6 col-md-6 col-lg-4 col-xl-3 d-flex align-items-end"> <div class="form-group mt-3"> <p><strong><?php echo lang('total_item');?>:</strong> <span class="number_of_item">0</span> (<span class="total_quantity_sum">0</span>)</p> </div> </div> <div class="col-sm-6 col-md-6 col-lg-4 col-xl-3"> <div class="form-group mt-3"> <label><?php echo lang('discount'); ?> (<?php echo lang('flat_or_percentage'); ?>)</label> <input class="form-control discount calculate_op" type="text" onfocus="select()" name="discount" id="discount" <?php echo set_value('discount'); ?> placeholder="<?php echo lang('discount_type');?>"> </div> </div> <div class="col-sm-6 col-md-6 col-lg-4 col-xl-3"> <div class="form-group mt-3"> <label><?php echo lang('other'); ?></label> <input autocomplete="off" class="form-control integerchk calculate_op" type="text" name="other" id="other" onfocus="this.select();" <?php echo set_value('other'); ?> placeholder="<?php echo lang('other');?>"> </div> </div> <div class="col-sm-6 col-md-6 col-lg-4 col-xl-3"> <div class="form-group mt-3"> <label><?php echo lang('g_total'); ?> <span class="required_star">*</span></label> <input class="form-control integerchk1" readonly type="text" name="grand_total" id="grand_total" <?php echo set_value('grand_total'); ?> placeholder="<?php echo lang('grand_total');?>"> </div> </div> </div> <div class="row justify-content-end"> <div class="col-sm-6 col-md-6 col-lg-4 col-xl-3"> <div class="form-group mt-3 mb-2"> <label><?php echo lang('payment_methods'); ?> <span class="required_star"></span></label> <select class="form-control select2 op_width_100_p" id="payment_method_id" name="payment_method_id"> <option value=""><?php echo lang('select'); ?></option> <?php foreach ($paymentMethods as $ec) { ?> <option data-type="<?php echo escape_output($ec->name) ?>" value="<?php echo escape_output($ec->id) ?>" <?php echo set_select('payment_method_id', $ec->id); ?>><?php echo escape_output($ec->name) ?> </option> <?php } ?> </select> </div> <table class="table"> <tbody id="payment_received_type"> </tbody> </table> <?php if (form_error('payment_method_id')) { ?> <div class="callout callout-danger my-2"> <span class="error_paragraph"><?php echo form_error('payment_method_id'); ?></span> </div> <?php } ?> <div class="alert alert-error error-msg payment_method_id_err_msg_contnr "> <p id="payment_method_id_err_msg"></p> </div> </div> </div> <div class="row justify-content-end"> <div class="col-sm-6 col-md-6 col-lg-4 col-xl-3"> <div class="form-group mt-3"> <label><?php echo lang('paid'); ?> <span class="required_star"></span></label> <input autocomplete="off" class="form-control integerchk calculate_op" type="text" name="paid" id="paid" placeholder="<?php echo lang('paid'); ?>" onfocus="this.select();" <?php echo set_value('paid'); ?> readonly> </div> <?php if (form_error('paid')) { ?> <div class="callout callout-danger my-2"> <span class="error_paragraph"><?php echo form_error('paid'); ?></span> </div> <?php } ?> <div class="alert alert-error error-msg paid_err_msg_contnr "> <p id="paid_err_msg"></p> </div> </div> </div> <div class="row justify-content-end"> <div class="col-sm-6 col-md-6 col-lg-4 col-xl-3"> <div class="form-group mt-3"> <label><?php echo lang('due'); ?></label> <input class="form-control integerchk" type="text" name="due" id="due" readonly <?php echo set_value('due'); ?> placeholder="<?php echo lang('due');?>"> <div class="alert alert-error error-msg due_id_err_msg_contnr "> <p id="due_id_err_msg"></p> </div> </div> </div> </div> <div class="row justify-content-end"> <div class="col-sm-6 col-md-6 col-lg-4 col-xl-3"> <div class="form-group mt-3"> <label><?php echo lang('attachment'); ?> <span class="required_star">(<?php echo lang('pdf_or_image');?>)</span></label> <input class="form-control integerchk1 op_width_100_p" type="file" name="attachment" id="attachment" accept="file/pdf"> </div> <?php if (form_error('attachment')) { ?> <div class="callout callout-danger my-2"> <span class="error_paragraph"><?php echo strip_tags(form_error('attachment')); ?></span> </div> <?php } ?> </div> </div> <div class="row justify-content-end"> <div class="col-sm-6 col-md-6 col-lg-4 col-xl-3 mt-3"> <div class="form-group"> <div class="d-flex"> <label><?php echo lang('note');?></label> <input type="hidden" name="note" id="note_hidden"> <i class="ps-2 fas fa-pen-nib font-a-i noteModalTrigger cursor-pointer new-icon-p-color"></i> </div> </div> </div> </div> </div> <input class="form-control" type="hidden" name="subtotal" id="subtotal"> <div class="box-footer"> <button type="submit" name="submit" value="submit" class="btn bg-blue-btn"> <iconify-icon icon="solar:upload-minimalistic-broken"></iconify-icon> <?php echo lang('submit'); ?> </button> <input type="hidden" id="set_save_and_add_more" name="add_more"> <button type="submit" name="submit" value="submit" class="btn bg-blue-btn" id="save_and_add_more"> <iconify-icon icon="solar:undo-right-round-broken"></iconify-icon> <?php echo lang('save_and_add_more'); ?> </button> <a class="btn bg-blue-btn text-decoration-none" href="<?php echo base_url() ?>Purchase/purchases"> <iconify-icon icon="solar:undo-left-round-broken"></iconify-icon> <?php echo lang('back'); ?> </a> </div> <?php echo form_close(); ?> </div> <input type="hidden" name="populate_click" id="populate_click" value=""> </div> </div> <!-- Suppliers Modal --> <div class="modal fade" id="addSupplierModal" role="dialog"> <div class="modal-dialog modal-xl" role="document"> <div class="modal-content"> <div class="modal-header"> <h4 class="modal-title" id="myModalLabel"> <?php echo lang('add_supplier'); ?></h4> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"><span aria-hidden="true"><i data-feather="x">×</i></span></button> </div> <div class="modal-body scroll_body"> <form id="add_supplier_form"> <div class="row"> <div class="col-md-6 col-lg-4"> <div class="form-group mb-3"> <label class="control-label"><?php echo lang('supplier_name'); ?><span class="op_color_red"> *</span></label> <input type="text" autocomplete="off" class="form-control" name="name" id="name_supplier" placeholder="<?php echo lang('supplier_name'); ?>" value=""> <div class="alert alert-error error-msg name_err_msg_contnr "> <p class="name_err_msg"></p> </div> </div> </div> <div class="col-md-6 col-lg-4"> <div class="form-group mb-3"> <label class="control-label"><?php echo lang('contact_person'); ?><span class="op_color_red"> *</span></label> <input autocomplete="off" type="text" id="contact_person" name="contact_person" class="form-control" placeholder="<?php echo lang('contact_person'); ?>" value="<?php echo set_value('contact_person'); ?>"> <div class="alert alert-error error-msg contact_person_err_msg_contnr "> <p class="contact_person_err_msg"></p> </div> </div> </div> <div class="col-md-6 col-lg-4"> <div class="form-group mb-3"> <label class="control-label"><?php echo lang('phone'); ?><span class="op_color_red"> *</span></label> <input autocomplete="off" type="text" id="phone" name="phone" class="form-control" placeholder="<?php echo lang('phone'); ?>" value="<?php echo set_value('phone'); ?>"> <div class="alert alert-error error-msg phone_err_msg_contnr "> <p class="phone_err_msg"></p> </div> </div> </div> <div class="col-md-6 col-lg-4"> <div class="form-group mb-3"> <label class="control-label"><?php echo lang('email'); ?></label> <input autocomplete="off" type="text" id="email" name="email" class="form-control" placeholder="<?php echo lang('email'); ?>" value="<?php echo set_value('email'); ?>"> <div class="alert alert-error error-msg email_err_msg_contnr "> <p class="email_err_msg"></p> </div> </div> </div> <div class="col-md-6 col-lg-4"> <div class="form-group"> <label> <?php echo lang('opening_balance'); ?> </label> <div class="d-flex align-items-center"> <div class="op_webkit_fill_available"> <div class="d-flex"> <input autocomplete="off" type="text" name="opening_balance" class="form-control mr_3 integerchk" placeholder="<?php echo lang('opening_balance'); ?>" value="<?php echo set_value('opening_balance'); ?>"> <select name="opening_balance_type" id="opening_balance_type" class="form-control select2"> <option value="Debit" <?php echo set_select('opening_balance_type', 'Debit'); ?>><?php echo lang('debit');?></option> <option value="Credit" <?php echo set_select('opening_balance_type', 'Credit'); ?>><?php echo lang('credit');?></option> </select> </div> </div> </div> </div> <?php if (form_error('opening_balance')) { ?> <div class="callout callout-danger my-2"> <span class="error_paragraph"><?php echo form_error('opening_balance'); ?></span> </div> <?php } ?> </div> <div class="col-md-6 col-lg-4"> <div class="form-group mb-3"> <label><?php echo lang('description'); ?></label> <input class="form-control" name="description" id="supplier_description" placeholder="<?php echo lang('description'); ?> ..." value="<?php echo $this->input->post('description'); ?>"> </div> <?php if (form_error('description')) { ?> <div class="callout callout-danger my-2"> <span class="error_paragraph"><?php echo form_error('description'); ?></span> </div> <?php } ?> </div> <div class="col-md-6 col-lg-4"> <div class="form-group mb-3"> <label><?php echo lang('address'); ?></label> <textarea class="form-control" name="address" id="supplier_address" placeholder="<?php echo lang('address'); ?>"><?php echo $this->input->post('address'); ?></textarea> </div> </div> </div> </form> </div> <div class="modal-footer"> <button type="button" class="btn bg-blue-btn" id="addSupplier"> <?php echo lang('submit'); ?></button> <button type="button" class="btn bg-blue-btn" data-bs-dismiss="modal"><?php echo lang('close'); ?></button> </div> </div> </div> </div> <!-- Cart Previw --> <div class="modal fade" id="cartPreviewModal" role="dialog"> <div class="modal-dialog" role="document"> <div class="modal-content"> <div class="modal-header"> <h4 class="modal-title item_header"> </h4> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"> <span aria-hidden="true"> <i data-feather="x"></i> </span> </button> </div> <div class="modal-body"> <form class="form-horizontal"> <div class="form-group"> <label class="col-sm-4 control-label"><?php echo lang('unit_price'); ?><span class="op_color_red"> *</span></label> <div class="mb-3"> <input type="text" autocomplete="off" class="form-control integerchk1" onfocus="select();" name="unit_price_modal" id="unit_price_modal" placeholder="<?php echo lang('unit_price'); ?>" value=""> </div> </div> <div class="form-group mb-3"> <label class="col-sm-4 control-label"><?php echo lang('quantity_amount'); ?><span class="op_color_red"> *</span></label> <div class="input-group"> <input type="number" autocomplete="off" min="1" class="form-control integerchk1" onfocus="select();" name="qty_modal" id="qty_modal" placeholder="<?php echo lang('quantity_amount'); ?>" value="" aria-describedby="basic-addon"> <span class="modal_item_unit input-group-text new-btn" id="basic-addon"></span> </div> <input type="hidden" id="hidden_input_item_type"> <input type="hidden" id="hidden_input_item_id"> <input type="hidden" id="hidden_input_item_name"> <input type="hidden" id="hidden_input_expiry_date_maintain"> </div> <div class="form-group imei_p_f"> <label class="col-sm-4 control-label imei_serial_label"></label> <div class="mb-3" id="imei_append"> </div> <div class="d-flex"> <div class="imeiSerial_add_more"> </div> <div class="bulk_imei_serial_upload tippyBtnCall" data-tippy-content="Bulk IMEI/Serial Import"> <div class="uplod_imei_el bulk_import_at_stock mt-2 h-40"> <iconify-icon icon="solar:upload-minimalistic-broken" width="18" height="18"></iconify-icon> </div> </div> </div> <div class="expiry_add_more"> </div> </div> </form> </div> <div class="modal-footer"> <button type="button" class="btn bg-blue-btn" id="addToCart"> <?php echo lang('add_to_cart'); ?> </button> </div> </div> </div> </div> <!-- Notice Modal --> <div class="modal fade" id="noteModal" role="dialog"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <h4 class="modal-title"><?php echo lang('note'); ?></h4> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"> <span aria-hidden="true"> <i data-feather="x"></i> </span> </button> </div> <div class="modal-body"> <div class="form-group"> <label><?php echo lang('note');?></label> <textarea class="form-control" rows="5" id="note_modal" placeholder="<?php echo lang('note');?>"></textarea> </div> <div class="alert alert-error error-msg note_err_msg_contnr "> <p id="note_err_msg"></p> </div> </div> <div class="modal-footer"> <button type="button" class="btn bg-blue-btn" id="noteSubmit"> <?php echo lang('submit'); ?></button> <button type="button" class="btn bg-blue-btn" data-bs-dismiss="modal"><?php echo lang('close'); ?></button> </div> </div> </div> </div> <!-- Bulk Import Modal --> <div class="modal fade" id="bulkImportModal" role="dialog"> <div class="modal-dialog modal-xl" role="document"> <div class="modal-content"> <form id="fileUploadForPurchase" enctype="multipart/form-data"> <div class="modal-header"> <h4 class="modal-title" id="myModalLabel"> <?php echo lang('Bulk_Import_For_Purchase');?> </h4> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"> <span aria-hidden="true"> <i data-feather="x">×</i> </span> </button> </div> <div class="modal-body scroll_body"> <div class="row"> <div class="col-12"> <div class="alert alert-error error-msg name_err_msg_contnr"> <p class="name_err_msg"></p> </div> </div> <div class="col-12"> <div class="form-group mb-3"> <label class="control-label"><?php echo lang('Select_Bulk_Import_File');?> <span class="op_color_red"> *</span></label> <input type="hidden" id="bulk_purchase_item_id"> <input type="hidden" id="bulk_purchase_item_type"> <input type="file" class="form-control" id="file" name="file" accept=".xlsx"> </div> </div> </div> </div> <div class="modal-footer"> <button type="submit" class="btn bg-blue-btn"> <?php echo lang('submit'); ?> </button> <a class="btn bg-blue-btn" href="<?php echo base_url() ?>Authentication/downloadPDF/Purchase_Bulk_Import.xlsx"> <?php echo lang('download_sample'); ?> </a> <button type="button" class="btn bg-blue-btn" data-bs-dismiss="modal"> <?php echo lang('close'); ?> </button> </div> </form> </div> </div> </div>
Save Changes
Cancel / Back
Close ×
Server Info
Hostname: server1.winmanyltd.com
Server IP: 203.161.60.52
PHP Version: 8.3.27
Server Software: Apache
System: Linux server1.winmanyltd.com 4.18.0-553.22.1.el8_10.x86_64 #1 SMP Tue Sep 24 05:16:59 EDT 2024 x86_64
HDD Total: 117.98 GB
HDD Free: 59.7 GB
Domains on IP: N/A (Requires external lookup)
System Features
Safe Mode:
Off
disable_functions:
None
allow_url_fopen:
On
allow_url_include:
Off
magic_quotes_gpc:
Off
register_globals:
Off
open_basedir:
None
cURL:
Enabled
ZipArchive:
Enabled
MySQLi:
Enabled
PDO:
Enabled
wget:
Yes
curl (cmd):
Yes
perl:
Yes
python:
Yes (py3)
gcc:
Yes
pkexec:
Yes
git:
Yes
User Info
Username: eliosofonline
User ID (UID): 1002
Group ID (GID): 1003
Script Owner UID: 1002
Current Dir Owner: 1002