示例#1
0
                            FROM ' . $bg_table . '
                            LEFT JOIN product_quantity ON pro_id = product_id
                            WHERE 1 ' . $list->sqlSearch() . $sql_search . '
                            ');
$total = $db_count->total;
unset($db_count);
$right_column .= '<div id="listing-product">';
$listing_product = '';
$db_listing = new db_query('SELECT *
                            FROM ' . $bg_table . '
                            LEFT JOIN product_quantity ON pro_id = product_id
                            WHERE 1 ' . $list->sqlSearch() . $sql_search . '
                            ORDER BY ' . $list->sqlSort() . ' ' . $id_field . ' ASC
                            ' . $list->limit($total));
$total_row = mysqli_num_rows($db_listing->result);
$listing_product .= $list->showHeader($total_row);
$i = 0;
$array_unit = array();
$db_query = new db_query('SELECT * FROM units');
while ($row = mysqli_fetch_assoc($db_query->result)) {
    $array_unit[$row['uni_id']] = $row['uni_name'];
}
while ($row = mysqli_fetch_assoc($db_listing->result)) {
    $i++;
    $listing_product .= $list->start_tr($i, $row[$id_field], 'class="menu-normal record-item" ondblclick="detailRecord()" onclick="active_record(' . $row[$id_field] . ')" data-record_id="' . $row[$id_field] . '"');
    /* code something */
    $pro_unit_id = $row['pro_unit_id'];
    $listing_product .= '<td class="center" width="100">' . format_codenumber($row['pro_id'], 6, PREFIX_PRODUCT_CODE) . '</td>';
    $listing_product .= '<td class="center" width="100">' . $row['pro_code'] . '</td>';
    $listing_product .= '<td>' . $row['pro_name'] . '</td>';
    $listing_product .= '<td class="center" width="100">' . $array_unit[$row['pro_unit_id']] . '</td>';
示例#2
0
}
$db_count = new db_count('SELECT count(*) as count
                            FROM ' . $bg_table_o . '
                            WHERE 1 ' . $list_right->sqlSearch() . $and_bio_sup_id . '
                            ');
$total_ = $db_count->total;
unset($db_count);
$db_listing = new db_query('SELECT *
                            FROM ' . $bg_table_o . '
                            WHERE 1 ' . $list_right->sqlSearch() . $and_bio_sup_id . '
                            ORDER BY ' . $list_right->sqlSort() . ' ' . $id_field_o . ' ASC
                            ' . $list_right->limit($total_));
$total_row = mysqli_num_rows($db_listing->result);
$right_column .= '<div id="table_bill_out">';
$table_right_column = '';
$table_right_column .= $list_right->showHeader($total_row, '', 'id="table-listing-right"');
$i = 0;
$totalAll_ = 0;
while ($row = mysqli_fetch_assoc($db_listing->result)) {
    $backgrouds = '';
    if ($row['bio_status'] == BILL_STATUS_DEBIT && $row['bio_money_debit'] != 0) {
        $backgrouds = 'style="background:#B3F8FF;"';
    }
    $supplier = new db_query('SELECT sup_name
                                   FROM suppliers
                                   WHERE sup_id = ' . $row['bio_supplier_id']);
    $row_ = mysqli_fetch_assoc($supplier->result);
    unset($supplier);
    $i++;
    $table_right_column .= $list_right->start_tr($i, $row[$id_field_o], '' . $backgrouds . ' class="menu-normal record-item" onclick="active_record(' . $row[$id_field_o] . ',\'right\')" data-debit="' . $row['bio_money_debit'] . '" data-record_id="' . $row[$id_field_o] . '" ondblclick="showDetail(\'right\')"');
    $table_right_column .= '<td class="center" width="80">' . format_codenumber($row[$id_field_o], 6, PREFIX_BILL_CODE) . '</td>';
示例#3
0
$search_sql = ' AND tra_table = "inventory"';
// đếm số lượng phiếu kiểm kê trong thùng rác
$db_count = new db_count('SELECT count(*) as count
                                  FROM trash
                                  WHERE 1' . $list->sqlSearch() . $search_sql . '');
$total = $db_count->total;
unset($db_count);
// lấy ra số lượng các phiếu kiểm kê trong thùng rác
$db_listing = new db_query('SELECT *
                            FROM trash
                            WHERE 1 ' . $list->sqlSearch() . $search_sql . '
                            ORDER BY ' . $list->sqlSort() . ' tra_id DESC
                            ' . $list->limit($total));
$total_row = mysqli_num_rows($db_listing->result);
$i = 0;
$listing_menu .= $list->showHeader($total_row);
foreach ($array_row as $row) {
    $i++;
    if (!$row['inv_staff_id']) {
        $staff_name = '';
    } else {
        $staff_name = $list_users[$row['inv_staff_id']];
    }
    if (!$row['inv_store_id']) {
        $store_name = '';
    } else {
        $store_name = $list_store[$row['inv_store_id']];
    }
    if (!$row['inv_admin_id']) {
        $admin_name = '';
    } else {
示例#4
0
 function listRecord()
 {
     global $id_field;
     global $bg_table;
     global $cat_field;
     $cat_id = getValue('cat_id', 'str', 'POST', 0);
     $html = '';
     $class_context_menu = 'menu-normal';
     #Bắt đầu với datagrid
     $list = new dataGrid($id_field, 30);
     /*code something*/
     $list->add('', 'Tên cửa hàng');
     $list->add('', 'Điện thoại');
     switch ($cat_id) {
         case 'all':
             $db_count = new db_count('SELECT count(*) as count
                                       FROM ' . $bg_table . '
                                       WHERE 1 ' . $list->sqlSearch());
             $total = $db_count->total;
             unset($db_count);
             $db_listing = new db_query('SELECT *
                         FROM ' . $bg_table . '
                         WHERE 1 ' . $list->sqlSearch() . '
                         ORDER BY ' . $list->sqlSort() . ' ' . $id_field . ' ASC
                         ' . $list->limit($total));
             $array_row = $db_listing->resultArray();
             unset($db_listing);
             break;
         case 'trash':
             $class_context_menu = 'menu-trash';
             $db_count = new db_count('SELECT count(*) as count
                         FROM trash
                         WHERE tra_table = "' . $bg_table . '"');
             $total = $db_count->total;
             unset($db_count);
             $array_row = trash_list($bg_table);
             $list->limit($total);
             break;
         default:
             $cat_id = (int) $cat_id;
             $db_count = new db_count('SELECT count(*) as count
                                       FROM ' . $bg_table . '
                                       WHERE 1 ' . $list->sqlSearch() . '
                                       AND ' . $cat_field . ' = ' . $cat_id);
             $total = $db_count->total;
             unset($db_count);
             $db_listing = new db_query('SELECT *
                                         FROM ' . $bg_table . '
                                         WHERE 1 ' . $list->sqlSearch() . '
                                         AND ' . $cat_field . ' = ' . $cat_id . '
                                         ORDER BY ' . $list->sqlSort() . ' ' . $id_field . ' ASC
                                         ' . $list->limit($total));
             $array_row = $db_listing->resultArray();
             unset($db_listing);
             break;
     }
     $total_row = count($array_row);
     $html .= $list->showHeader($total_row);
     $i = 0;
     foreach ($array_row as $row) {
         $i++;
         $html .= $list->start_tr($i, $row[$id_field], 'class="' . $class_context_menu . ' record-item" onclick="active_record(' . $row[$id_field] . ')" data-record_id="' . $row[$id_field] . '"');
         /*code something */
         $html .= '<td>' . $row['sed_name'] . '</td>';
         $html .= '<td class="right">' . $row['sed_phone'] . '</td>';
         $html .= $list->end_tr();
     }
     $html .= $list->showFooter();
     echo $html;
 }
示例#5
0
unset($db_count);
// request ajax load categories customer name
$cat_id = getValue('cat_id', 'int', 'POST', 0);
if ($cat_id && $isAjaxRequest) {
    $db_extra = 'AND ' . $bg_table . '.' . $cat_field . ' = ' . $cat_id . ' ';
} else {
    $db_extra = '';
}
$db_listing = new db_query('SELECT *
                            FROM ' . $bg_table . '
                            LEFT JOIN customer_cat ON customers.cus_cat_id = customer_cat.cus_cat_id
                            WHERE 1 ' . $list->sqlSearch() . $db_extra . '
                            ORDER BY ' . $list->sqlSort() . ' ' . $id_field . ' ASC
                            ' . $list->limit($total));
$total_row = mysqli_num_rows($db_listing->result);
$right_column .= $list->showHeader($total_row);
$i = 0;
while ($row = mysqli_fetch_assoc($db_listing->result)) {
    $i++;
    if (!$row['cus_code']) {
        $customer_code = format_codenumber($row['cus_id'], 6, PREFIX_CUSTOMER_CODE);
    } else {
        $customer_code = $row['cus_code'];
    }
    $right_column .= $list->start_tr($i, $row[$id_field], 'class="menu-normal record-item" data-customer_code="' . $customer_code . '" data-customer_name="' . $row['cus_name'] . '" data-customer_discount="' . $row['cus_cat_discount'] . '" ondblclick="addToParentWindow(' . $row[$id_field] . ')" onclick="active_record(' . $row[$id_field] . ')" data-record_id="' . $row[$id_field] . '"');
    /* code something */
    $right_column .= '<td class="center">' . format_codenumber($row['cus_id'], 6, PREFIX_CUSTOMER_CODE) . '</td>';
    $right_column .= '<td class="center">' . $row['cus_code'] . '</td>';
    $right_column .= '<td class="center">' . $row['cus_name'] . '</td>';
    $right_column .= '<td class="center">' . $row['cus_address'] . '</td>';
    $right_column .= '<td class="center">' . $row['cus_phone'] . '</td>';
} else {
    $sql_search = ' AND bii_start_time >= ' . $start_today . ' AND bii_start_time <= ' . $end_today . '';
}
$db_count = new db_count('SELECT count(*) as count
                            FROM ' . $bg_table . '
                            WHERE 1 ' . $list->sqlSearch() . $sql_search . '
                            ');
$total = $db_count->total;
unset($db_count);
$db_listing = new db_query('SELECT *
                            FROM ' . $bg_table . '
                            WHERE 1 ' . $list->sqlSearch() . $sql_search . '
                            ORDER BY ' . $list->sqlSort() . ' ' . $id_field . ' DESC
                            ' . $list->limit($total));
$total_row = mysqli_num_rows($db_listing->result);
$content_column .= $list->showHeader($total_row);
/* Các biến tổng trong hóa đơn*/
$all_money_menus = 0;
$all_money_default = 0;
$all_money_real = 0;
$all_money_discount = 0;
$all_money_vat = 0;
$all_money_true = 0;
$all_money_service = 0;
$all_money_cash = 0;
$all_money_debit = 0;
$i = 0;
while ($row = mysqli_fetch_assoc($db_listing->result)) {
    /* Hiển thị tên tên bàn*/
    $db_section = new db_query('SELECT * FROM desks WHERE des_id = ' . $row['bii_desk_id'] . '');
    $row_sec = mysqli_fetch_assoc($db_section->result);
示例#7
0
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="vi" lang="vi" xmlns:og="http://ogp.me/ns#" xmlns:fb="https://www.facebook.com/2008/fbml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<?php 
echo $load_header;
?>
</head>
<body>
<div class="module_header bold fix"><?php 
echo $module_name;
?>
</div>
<div id="wrapper">
    <?php 
echo $list->showHeader($total_row);
?>
    <?php 
$i = 0;
?>
    <?php 
while ($row = mysqli_fetch_assoc($db_listing->result)) {
    $i++;
    ?>
    <?php 
    echo $list->start_tr($i, $row[$id_field]);
    ?>
    <td class="center">
        <div class="img_thumb">
            <img src="<?php 
    echo $bg_filepath;
示例#8
0
    if ($adm_user_report >= 0) {
        $And .= ' AND bii_admin_id = ' . $adm_user_report;
    }
} else {
    $time_order_field = 'bii_start_time';
    $And = 'AND ' . $time_order_field . ' >= ' . ($today - 2592000) . ' AND ' . $time_order_field . ' <= ' . $today;
}
$db_count = new db_count('SELECT count(*) as count
                                    FROM ' . $bg_table_i . ' 
                                    WHERE 1 ' . $list->sqlSearch() . $And . '
                                    ');
$total = $db_count->total;
unset($db_count);
$db_bill_in = new db_query("SELECT * FROM " . $bg_table_i . "\n                                    WHERE 1 " . $And . "\n                                    ORDER BY " . $time_order_field . " ASC\n                                    " . $list->limit($total) . " \n                                    ");
$total_bill_in = mysqli_num_rows($db_bill_in->result);
$right_column = $list->showHeader($total_bill_in);
$i = 0;
$total_fund = 0;
$date_money = array();
$aray = array();
$data = array();
while ($data_bill_in = mysqli_fetch_assoc($db_bill_in->result)) {
    $aray['id'] = $data_bill_in['bii_id'];
    $aray['date'] = $data_bill_in['bii_start_time'];
    $aray['money'] = $data_bill_in['bii_true_money'];
    $date_money[] = $aray;
    //
    $date = gmdate("d-m-Y", $data_bill_in['bii_start_time']);
    // lay ra ngay tao hoa don
    $data[$date] = $data_bill_in;
    $total_fund += $data_bill_in['bii_true_money'];
示例#9
0
    }
    if ($adm_user_report > 0) {
        $And .= ' AND fin_admin_id = ' . $adm_user_report;
    }
} else {
    $And = 'AND ' . $time_order_field . ' >= ' . ($today - 2592000) . ' AND ' . $time_order_field . ' <= ' . $today;
}
$db_count = new db_count('SELECT count(*) as count
                                    FROM ' . $bg_financial . ' 
                                    WHERE 1 ' . $list->sqlSearch() . $And . ' 
                                    AND fin_cat_id IN (' . FINANCIAL_CAT_NHAP_HANG . ', ' . FINANCIAL_CAT_CONG_NO_NHAP_HANG . ')');
$total = $db_count->total;
unset($db_count);
$db_financial_bill_out = new db_query("SELECT * FROM " . $bg_financial . "\n                                            WHERE 1 " . $list->sqlSearch() . $And . " \n                                            AND fin_cat_id IN(" . FINANCIAL_CAT_NHAP_HANG . ", " . FINANCIAL_CAT_CONG_NO_NHAP_HANG . ")\n                                            ORDER BY " . $time_order_field . " ASC\n                                            " . $list->limit($total) . " \n                                            ");
$total_financial_bill_out = mysqli_num_rows($db_financial_bill_out->result);
$right_column = $list->showHeader($total_financial_bill_out);
$i = 0;
$total_fund = 0;
$data_financial_bill_out = array();
$compare_dates = array();
$arrDate = array();
while ($data_financial = mysqli_fetch_assoc($db_financial_bill_out->result)) {
    $arrDate['cash'] = 0;
    $arrDate['card'] = 0;
    $date = gmdate("d/m/Y", $data_financial['fin_updated_time']);
    $data_financial_bill_out[$date] = $data_financial;
    $arrDate['id_fin'] = $data_financial['fin_id'];
    $arrDate['date'] = $data_financial['fin_updated_time'];
    $arrDate['money'] = $data_financial['fin_money'];
    // kiem tra xem tra bằng tiền mặt hay qua the
    if ($data_financial['fin_pay_type'] == PAY_TYPE_CASH) {
示例#10
0
                                    FROM ' . $tabel . '
                                    WHERE ' . $bill_status . ' = 0 ' . $And . '
                                    AND ' . $type_bill_id . ' = ' . $record_id . '
                                    ');
$total = mysqli_num_rows($db_count->result);
unset($db_count);
$db_list_bill = new db_query('SELECT *
                                    FROM ' . $tabel . ' INNER JOIN ' . $type_table . ' ON ' . $type_bill_id . ' = ' . $id_obj . '
                                    WHERE ' . $bill_status . ' = 0 ' . $And . '
                                    AND ' . $type_bill_id . ' = ' . $record_id . '
                                    ORDER BY ' . $list->sqlSort() . $bill_id . '
                                    ASC ' . $list->limit($total));
$total_row = mysqli_num_rows($db_list_bill->result);
$content_column .= '<div id="table_result">';
$table_result = '';
$table_result .= $list->showHeader($total_row);
$i = 0;
while ($data_bill = mysqli_fetch_assoc($db_list_bill->result)) {
    $i++;
    $table_result .= $list->start_tr($i, $data_bill[$bill_id], 'class="menu-normal record-item" onclick="active_record(' . $data_bill[$bill_id] . ')"');
    $table_result .= '<td class="center">' . format_codenumber($data_bill[$bill_id], 6, '') . '</td>';
    $table_result .= '<td class="center"  width="170">' . date("d-m-Y h:i", $data_bill[$date]) . '</td>';
    $table_result .= '<td class="text-right" width="100">' . number_format($data_bill[$debit]) . '</td>';
    $table_result .= '<td class="text-right"> </td>';
    $table_result .= '<td class="center">Chưa Thanh Toán</td>';
    $obj = $name_obj . ': <b>' . $data_bill[$name] . '</b>';
    $table_result .= $list->end_tr();
}
$table_result .= $list->showFooter();
$content_column .= $table_result;
$content_column .= '</div>';
示例#11
0
$count_bill_trash = new db_count('SELECT count(*) as count
                                    FROM trash
                                    WHERE 1 ' . $list->sqlSearch() . ' 
                                    AND tra_table = "' . $table . '"
                                    ');
$total = $count_bill_trash->total;
unset($count_bill_trash);
$db_list_bill_trash = new db_query('SELECT * FROM trash
                                        WHERE tra_table = "' . $table . '" ' . $list->limit($total));
$total = mysqli_num_rows($db_list_bill_trash->result);
unset($db_list_bill_trash);
// lọc ra thông tin hóa đơn trong thùng rác
$array_bill = trash_list($table, $total, 0);
$i = 0;
$content_column .= '<div class="section-content">';
$content_column .= $list->showHeader($total, '', 'id="list_trash"');
foreach ($array_bill as $row) {
    $i++;
    if ($row[$id_object] == 0) {
        $name = $name_obj;
    } else {
        $db_list_bill = new db_query('SELECT ' . $name_object . ' FROM ' . $table_object . ' WHERE ' . $id . ' = ' . $row[$id_object]);
        $data_list_bill = mysqli_fetch_assoc($db_list_bill->result);
        unset($db_list_bill);
        $name = $data_list_bill[$name_object];
    }
    $content_column .= $list->start_tr($i, $row[$bill_id], 'class="menu-normal record-item" onclick="active_record(' . $row[$bill_id] . ')" data-table="' . $table . '" ondblclick="show_bill_detai()" data-record_id="' . $row[$bill_id] . '"');
    $content_column .= '<td>' . format_codenumber($row[$bill_id], 6, PREFIX_BILL_CODE) . '</td>';
    $content_column .= '<td>' . $name . '</td>';
    $content_column .= '<td class="center">' . date('d-m-Y', $row[$day_creat]) . '</td>';
    $content_column .= '<td class="text-right">' . number_format($row[$total_money]) . '</td>';
示例#12
0
 function fillerStockTransfer()
 {
     $right_column = '';
     //Hiển thị danh sách phiếu thu bên trái
     #Bắt đầu với datagird
     $list = new dataGrid('sto_id', 30);
     $list->add('', 'Số phiếu');
     $list->add('', 'Nhân viên chuyển');
     $list->add('', 'Ngày chuyển');
     $list->add('', 'Từ kho');
     $list->add('', 'Đến kho');
     // lấy biên từ form tìm kiếm theo ngày và nhân viên
     $start_date_in = getValue('start_date_in', 'str', 'POST', 0);
     $date_from = convertDateTime($start_date_in, '0:0:0');
     $end_date_in = getValue('end_date_in', 'str', 'POST', 0);
     $date_to = convertDateTime($end_date_in, '0:0:0');
     $staff_id = getValue('list_staff_id', 'int', 'POST', 0);
     if ($start_date_in && $end_date_in && $staff_id) {
         $search_sql = ' AND sto_time >=' . $date_from . ' AND sto_time <=' . $date_to . ' AND sto_staff_id = ' . $staff_id . ' ';
     } elseif ($staff_id) {
         $search_sql = ' AND sto_staff_id = ' . $staff_id . '';
     } elseif ($start_date_in && $end_date_in) {
         $search_sql = ' AND sto_time >=' . $date_from . ' AND sto_time <=' . $date_to . '';
     } else {
         $search_sql = '';
     }
     // slect list danh sách phiếu kiểm kê
     $db_count = new db_count('SELECT count(*) as count
                         FROM stock_transfer
                         WHERE 1 ' . $list->sqlSearch() . $search_sql . '
                         ');
     $total = $db_count->total;
     unset($db_count);
     $sql_query = 'SELECT *
                         FROM stock_transfer
                         WHERE 1 ' . $list->sqlSearch() . $search_sql . '
                         ORDER BY ' . $list->sqlSort() . ' sto_id DESC
                         ' . $list->limit($total);
     $db_listing = new db_query($sql_query);
     $total_row = mysqli_num_rows($db_listing->result);
     // tạo mảng để hiện thị tên nhân viên
     $staff_array = array();
     $db_staff = new db_query('SELECT * FROM users');
     while ($row_user = mysqli_fetch_assoc($db_staff->result)) {
         $staff_array[$row_user['use_id']] = $row_user['use_name'];
     }
     // tạo mảng để hiện thị kho hàng
     $store_array = array();
     $db_store = new db_query('SELECT * FROM categories_multi WHERE cat_type = "stores" ');
     while ($row_store = mysqli_fetch_assoc($db_store->result)) {
         $store_array[$row_store['cat_id']] = $row_store['cat_name'];
     }
     //Vì đây là module cần 2 table listing nên khai báo thêm table_extra id=table-listing-left
     $right_column .= $list->showHeader($total_row, '', 'id="table-listing-right"');
     $i = 0;
     while ($row = mysqli_fetch_assoc($db_listing->result)) {
         $i++;
         $right_column .= $list->start_tr($i, $row['sto_id'], 'class="menu-normal record-item" ondblclick="detail_stock_transfer(' . $row['sto_id'] . ')" dblclick="detail_record(' . $row['sto_id'] . ')" onclick="active_record(' . $row['sto_id'] . ')" data-record_id="' . $row['sto_id'] . '"');
         /* code something */
         //Số phiếu - ID phiếu
         $right_column .= '<td class="center" width="">' . format_codenumber($row['sto_id'], 6) . '</td>';
         //Người trả
         $right_column .= '<td width="120" class="center">' . $staff_array[$row['sto_staff_id']] . '</td>';
         //Mô tả
         $right_column .= '<td class="center">' . date('d/m/Y H:i', $row['sto_time']) . '</td>';
         //số tiền
         $right_column .= '<td width="120" class="text-left">' . $store_array[$row['sto_from_storeid']] . '</td>';
         $right_column .= '<td width="120" class="text-left">' . $store_array[$row['sto_to_storeid']] . '</td>';
         $right_column .= $list->end_tr();
     }
     $right_column .= $list->showFooter();
     $this->add($right_column);
 }
示例#13
0
 function reportProducts()
 {
     $array_return = array();
     //lấy các giá trị bắn ajax về để xuất báo cáo
     $array_product = getValue('products', 'arr', 'POST', '');
     if (!$array_product) {
         $array_return['content'] = 'Chưa chọn sản phẩm';
         die(json_encode($array_return));
     }
     $store_id = getValue('store_id', 'int', 'POST', 0);
     if (!$store_id) {
         $array_return['content'] = 'Chưa chọn kho hàng';
         die(json_encode($array_return));
     }
     $start_date = convertDateTime(getValue('start_date', 'str', 'POST', ''), '0:0:0');
     $end_date = convertDateTime(getValue('end_date', 'str', 'POST', ''), '0:0:0');
     // select ra báo cáo với các thông tin trên
     //lấy số lượng nhập hàng
     $arr_pro = array();
     foreach ($array_product as $product) {
         $arr_pro[] = $product;
     }
     $arr_pro = implode(',', $arr_pro);
     $left_column = '';
     //Hiển thị danh sách phiếu thu bên trái
     #Bắt đầu với datagird
     $list = new dataGrid('pro_id', 100);
     $list->add('', 'Tên mặt hàng');
     $list->add('', 'ĐVT');
     $list->add('', 'SL nhập');
     $list->add('', 'Tổng tiền tồn');
     // tảo mảng bill_id lọc theo thời gian và theo kho hàng
     $array_bill = array();
     $db_bill_out = new db_query('SELECT bio_id FROM bill_out WHERE bio_start_time >= ' . $start_date . '
                                  AND bio_start_time <=' . $end_date . ' AND bio_store_id = ' . $store_id . '');
     while ($row_bill_out = mysqli_fetch_assoc($db_bill_out->result)) {
         $array_bill[] = $row_bill_out['bio_id'];
     }
     unset($db_bill_out);
     $array_bill = implode(',', $array_bill);
     if ($array_bill == null) {
         $sql_search = ' AND bid_bill_id IN(0)';
     } else {
         $sql_search = ' AND bid_pro_id IN(' . $arr_pro . ') AND bid_bill_id IN(' . $array_bill . ')';
     }
     // select list danh
     $db_count = new db_count('SELECT count(*) as count
                         FROM bill_out_detail
                         WHERE 1 ' . $list->sqlSearch() . $sql_search . '
                         GROUP BY bid_pro_id
                         ');
     $total = $db_count->total;
     unset($db_count);
     $sql_query = 'SELECT * FROM bill_out_detail
                         WHERE 1 ' . $list->sqlSearch() . $sql_search . '
                         GROUP BY bid_pro_id
                         ORDER BY ' . $list->sqlSort() . ' bid_pro_id ASC
                         ' . $list->limit($total);
     $db_listing = new db_query($sql_query);
     $total_row = mysqli_num_rows($db_listing->result);
     //tao mang hien thi ten product
     $array_pro_name = array();
     $db_product = new db_query('SELECT pro_id,pro_name FROM products');
     while ($row_pro = mysqli_fetch_assoc($db_product->result)) {
         $array_pro_name[$row_pro['pro_id']] = $row_pro['pro_name'];
     }
     //Vì đây là module cần 2 table listing nên khai báo thêm table_extra id=table-listing-left
     $left_column .= $list->showHeader($total_row, '', 'id="table-listing-right"');
     $i = 0;
     $total_all = 0;
     while ($row = mysqli_fetch_assoc($db_listing->result)) {
         $i++;
         // lấy ra pro_unit_id để
         $db_query_unit = new db_query('SELECT pro_unit_id FROM products WHERE pro_id = ' . $row['bid_pro_id'] . ' ');
         $row_pro_unit = mysqli_fetch_assoc($db_query_unit->result);
         // lấy ra đơn vị tính của sản phẩm
         $db_unit_name = new db_query('SELECT uni_name FROM units WHERE uni_id = ' . $row_pro_unit['pro_unit_id'] . '');
         $row_unit = mysqli_fetch_assoc($db_unit_name->result);
         //tính tổng số lượng và giá tiền theo mặt hàng
         $db_price_ave = new db_query('SELECT SUM(bid_pro_price) AS total_price,
                                         SUM(bid_pro_number) AS total_number
                                         FROM bill_out_detail
                                         WHERE bid_pro_id = ' . $row['bid_pro_id'] . '');
         $row_total = mysqli_fetch_assoc($db_price_ave->result);
         $left_column .= $list->start_tr($i, $row['bid_pro_id'], 'class="menu-normal record-item" data-record_id="' . $row['bid_pro_id'] . '"');
         /* code something */
         $left_column .= '<td class="text-left">' . $array_pro_name[$row['bid_pro_id']] . '</td>';
         $left_column .= '<td width="100" class="center">' . $row_unit['uni_name'] . '</td>';
         $left_column .= '<td width="120" class="text-right">' . $row_total['total_number'] . '</td>';
         $left_column .= '<td width="120"  class="text-right">' . number_format($row_total['total_price']) . '</td>';
         // tổng tiền tất cả mặt hàng đã chọn
         $total_all += $row_total['total_number'] * $row_total['total_price'];
         $left_column .= $list->end_tr();
     }
     unset($db_count_price);
     unset($db_price_ave);
     unset($db_listing);
     unset($db_unit_name);
     unset($db_query_unit);
     $left_column .= $list->showFooter();
     $array_return['content'] = $left_column;
     $array_return['total'] = number_format($total_all);
     die(json_encode($array_return));
 }
示例#14
0
        $And .= ' AND fin_admin_id = ' . $adm_user_report;
    }
} else {
    $And = 'AND ' . $time_order_field . ' >= ' . ($today - 2592000) . ' AND ' . $time_order_field . ' <= ' . $today;
}
$db_count = new db_count('SELECT count(*) as count
                                        FROM ' . $bg_table_fin . ' 
                                        WHERE 1 ' . $list->sqlSearch() . $And . '
                                        AND fin_cat_id IN(' . FINANCIAL_CAT_BAN_HANG . ', ' . FINANCIAL_CAT_NHAP_HANG . ')
                                        ');
$total = $db_count->total;
unset($db_count);
//
$db_financial = new db_query("SELECT * FROM " . $bg_table_fin . "\n                                        WHERE 1 " . $list->sqlSearch() . $And . " \n                                        AND fin_cat_id IN(" . FINANCIAL_CAT_BAN_HANG . ", " . FINANCIAL_CAT_NHAP_HANG . ")\n                                        ORDER BY " . $time_order_field . " ASC\n                                        " . $list->limit($total) . " \n                                        ");
$total_financial = mysqli_num_rows($db_financial->result);
$right_column = $list->showHeader($total_financial);
$i = 0;
$array_data_result = array();
$money = array();
$array_money = array();
$total_thu = 0;
$total_chi = 0;
while ($data_fin = mysqli_fetch_assoc($db_financial->result)) {
    $date = gmdate("d-m-Y", $data_fin['fin_updated_time']);
    $money['bii_money'] = 0;
    $money['bio_money'] = 0;
    $money['fin_id'] = $data_fin[$id_financial];
    $money['date'] = $data_fin['fin_updated_time'];
    // neu fin_cat_id = 30 thi lay gia trong bang hoa don ban
    if ($data_fin['fin_cat_id'] == FINANCIAL_CAT_BAN_HANG) {
        $db_bill_in = new db_query("SELECT bii_true_money FROM bill_in \n                                        WHERE bii_id = " . $data_fin[$id_bill]);
示例#15
0
                                        ASC ' . $list->limit($total));
if ($isAjaxRequest && isset($_GET['fin_id']) && isset($_GET['sup_name'])) {
    $fin_id = getValue('fin_id', 'int', 'GET', 0);
    $sup_name = getValue('sup_name', 'str', 'GET', '');
    $db_financies_bill_out = new db_query('SELECT *
                                            FROM ' . $financies . ' 
                                            WHERE 1 
                                            AND fin_id = ' . $fin_id . ' 
                                            AND fin_username = \'' . trim($sup_name) . '\' 
                                            AND fin_reason_other = \'' . trim('Công nợ nhà cung cấp') . '\' 
                                            LIMIT 1');
}
$total_row = mysqli_num_rows($db_financies_bill_out->result);
$bottom_right_column = '<div class="bottom_conten_right_column">';
$bottom_conten_right_column = '';
$bottom_conten_right_column .= $list->showHeader($total_row, '', 'id="table-listing-bot-right"');
$i = 0;
$total_all_pay_bill_out = 0;
while ($data_financies_bill_out = mysqli_fetch_assoc($db_financies_bill_out->result)) {
    $i++;
    if ($data_financies_bill_out['fin_pay_type'] == PAY_TYPE_CASH) {
        $fin_pay_type = 'Tiền mặt';
    }
    if ($data_financies_bill_out['fin_pay_type'] == PAY_TYPE_CARD) {
        $fin_pay_type = 'Thẻ';
    }
    $bottom_conten_right_column .= $list->start_tr($i, $data_financies_bill_out['fin_id'], 'class="menu-normal record-item" ondblclick="detail_financies(' . $data_financies_bill_out['fin_id'] . ')" data-record_id="' . $data_financies_bill_out['fin_id'] . '"');
    $bottom_conten_right_column .= '<td class="center" width="100">' . format_codenumber($data_financies_bill_out['fin_id'], 6, '') . '</td>';
    $bottom_conten_right_column .= '<td class="center" width="100">' . date('d/m/Y', $data_financies_bill_out['fin_updated_time']) . '</td>';
    $bottom_conten_right_column .= '<td class="text-right" width="100">' . number_format($data_financies_bill_out['fin_money']) . '</td>';
    $bottom_conten_right_column .= '<td class="center" width="100">' . $fin_pay_type . '</td>';
示例#16
0
 //  xem chi tiet hoa don nhâp từ trong thung rac
 if (trim($position) == 'bill_out') {
     $db_count_bill_in_trash = new db_count('SELECT count(*) as count
                                             FROM trash
                                             WHERE 1 ' . $list->sqlSearch() . ' 
                                             AND tra_record_id = ' . $data_record_id . '
                                             AND tra_table = \'bill_out_detail\'');
     $total = $db_count_bill_in_trash->total;
     unset($db_count_bill_in_trash);
     // lọc danh sách thực đơn của hóa đơn
     $menu_listing = new db_query('SELECT * FROM trash 
                                     WHERE tra_record_id = ' . $data_record_id . '
                                     AND tra_table = \'bill_out_detail\'' . $list->limit($total));
 }
 $total = mysqli_num_rows($menu_listing->result);
 $left_column .= $list->showHeader($total);
 $i = 0;
 while ($row = mysqli_fetch_assoc($menu_listing->result)) {
     if (trim($position) == 'right') {
         $pro_name = $row['pro_name'];
         $uni_name = $row['uni_name'];
     }
     if (trim($position) == 'bill_out') {
         $row = json_decode(base64_decode($row['tra_data']), 1);
         $db_pro_unit = new db_query('SELECT pro_name, uni_name FROM products 
                                         LEFT JOIN units ON pro_unit_id = uni_id
                                         WHERE pro_id = ' . $row['bid_pro_id']);
         $data_pro_unit = mysqli_fetch_assoc($db_pro_unit->result);
         unset($db_pro_unit);
         $pro_name = $data_pro_unit['pro_name'];
         $uni_name = $data_pro_unit['uni_name'];
            $bill_id = $data_bill['bii_id'];
            $so_no = $data_bill['bii_money_debit'] + $data_financial['fin_money'];
        }
    } elseif ($data_financial['fin_cat_id'] == 32) {
        $db_bill = new db_query('SELECT * FROM bill_out WHERE bio_id = ' . $data_financial['fin_billcode']);
        if ($data_bill = mysqli_fetch_assoc($db_bill->result)) {
            $ngay_no = $data_bill['bio_start_time'];
            $bill_id = $data_bill['bio_id'];
            $so_no = $data_bill['bio_money_debit'] + $data_financial['fin_money'];
        }
    }
    unset($db_bill);
}
unset($db_financies);
$content_column .= '<div class="section-content">';
$content_column .= $list->showHeader(1);
$content_column .= $list->start_tr(1, $bill_id, 'class="menu-normal record-item" data-record_id="' . $bill_id . '"');
$content_column .= '<td class="center">' . format_codenumber($bill_id, 6, '') . '</td>';
$content_column .= '<td class="center">' . date('d/m/Y h:i', $ngay_no) . '</td>';
$content_column .= '<td class="text-right">' . number_format($so_no) . '</td>';
$content_column .= '<td class="text-right">' . number_format($thanhtoan) . '</td>';
$content_column .= $list->end_tr();
$content_column .= $list->showFooter();
$content_column .= '</div>';
$custom_script = '<script>
    var windowHeight        = windowHeight || $(window).height();
    var wrapperHeight       = windowHeight;
    var wrapperContent      = $(\'#wrapper-full\');
    wrapperContent.height(wrapperHeight);
    var sectionContent_class = $(\'.section-content\');
    sectionContent_class.height(wrapperHeight - 10);
示例#18
0
unset($db_count);
$cat_id = getValue('cat_id', 'int', 'POST', 0);
if ($cat_id && $isAjaxRequest) {
    $db_extra_left_join = ' LEFT JOIN ' . $cat_table . ' ON ' . $cat_field . ' = cat_id ';
    $db_extra_and = 'AND ' . $cat_field . ' = ' . $cat_id;
} else {
    $db_extra_left_join = '';
    $db_extra_and = '';
}
$db_listing = new db_query('SELECT *
                            FROM ' . $bg_table . $db_extra_left_join . '
                            WHERE 1 ' . $list->sqlSearch() . $db_extra_and . '
                            ORDER BY ' . $list->sqlSort() . ' ' . $id_field . ' ASC
                            ' . $list->limit($total));
$total_row = mysqli_num_rows($db_listing->result);
$center_column .= $list->showHeader($total_row);
$i = 0;
$array_unit = array();
$db_query = new db_query('SELECT * FROM units');
while ($row = mysqli_fetch_assoc($db_query->result)) {
    $array_unit[$row['uni_id']] = $row['uni_name'];
}
while ($row = mysqli_fetch_assoc($db_listing->result)) {
    $i++;
    $center_column .= $list->start_tr($i, $row[$id_field], 'class="menu-normal record-item" ondblclick="detailRecord()" onclick="active_record(' . $row[$id_field] . ')" data-record_id="' . $row[$id_field] . '"');
    /* code something */
    $center_column .= '<td class="center">' . format_codenumber($row['men_id'], 3) . '</td>';
    $center_column .= '<td>' . $row['men_name'] . '</td>';
    $center_column .= '<td class="center">' . (isset($array_unit[$row['men_unit_id']]) ? $array_unit[$row['men_unit_id']] : '') . '</td>';
    $center_column .= '<td class="text-right">' . format_number($row['men_price']) . ' vnđ</td>';
    $center_column .= '<td class="center">' . '</td>';
示例#19
0
 *
 */
$list->add('dic_key', 'Nội dung', 'string', 1, 0);
$list->add('dic_translate_en', 'Bản dịch', 'string');
$list->add('', 'Edit', 'edit');
$list->add('', 'Delete', 'delete');
$db_count = new db_count('SELECT count(*) as count
                            FROM ' . $bg_table . '
                            WHERE 1 ' . $list->sqlSearch() . '
                            ');
$total = $db_count->total;
unset($db_count);
$db_listing = new db_query('SELECT *
                            FROM ' . $bg_table . '
                            WHERE 1 ' . $list->sqlSearch() . '
                            ORDER BY ' . $list->sqlSort() . ' ' . $id_field . ' DESC
                            ' . $list->limit($total));
$total_row = mysqli_num_rows($db_listing->result);
$table_header = $list->showHeader($total_row);
$rainTpl->assign('table_header', $table_header);
$table_footer = $list->showFooter();
$rainTpl->assign('table_footer', $table_footer);
$table_listing = array();
$i = 0;
while ($row = mysqli_fetch_assoc($db_listing->result)) {
    $i++;
    $array_td = array('<td width="50%">' . $row['dic_key'] . '</td>', '<td width="50%">' . $row['dic_translate_en'] . '</td>', $list->showEdit($row[$id_field]), $list->showDelete($row[$id_field]));
    $table_listing[] = array('start_tr' => $list->start_tr($i, $row[$id_field]), 'end_tr' => $list->end_tr(), 'array_td' => $array_td);
}
$rainTpl->assign('table_listing', $table_listing);
$rainTpl->draw('listing');
示例#20
0
$list->add('', 'Tên chiến dịch');
$list->add('', 'Ngày bắt đầu');
$list->add('', 'Ngày kết thúc');
$list->add('', 'Giảm');
$list->add('', 'Kiểu KM');
$list->add('', 'Điều kiện HĐ');
$db_count = new db_count('SELECT count(*) as count
                                  FROM trash
                                  WHERE tra_table = "' . $bg_table . '"
                                        ');
$total = $db_count->total;
unset($db_count);
$array_row = trash_list($bg_table, 30, 0);
$list->limit($total);
$total_row = count($array_row);
$content_column .= $list->showHeader($total_row, '', 'id="table-trash"');
$i = 0;
//Lấy ra list cửa hàng
$list_agencies = array();
$db_query_agencies = new db_query("SELECT * FROM agencies");
$list_agencies = array();
while ($row = mysqli_fetch_assoc($db_query_agencies->result)) {
    $list_agencies[$row['age_id']] = $row['age_name'];
}
unset($db_query_agencies);
// select các bản ghi trong thung rác
foreach ($array_row as $row) {
    $i++;
    $content_column .= $list->start_tr($i, $row[$id_field], 'class="' . $class_context_menu . ' record-item" onclick="active_record(' . $row[$id_field] . ')" data-record_id="' . $row[$id_field] . '"');
    //cửa hàng
    $content_column .= '<td class="text-left">' . $list_agencies[$row['pms_agency_id']] . '</td>';