mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-23 02:45:33 +08:00
119 lines
3.7 KiB
PHP
119 lines
3.7 KiB
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
/**
|
||
* ============================
|
||
* @Author: yaokangming
|
||
* @Version: 1.0
|
||
* @DateTime: alt+t
|
||
* @describe: 类
|
||
* ============================
|
||
*/
|
||
class console_finder_vopbill {
|
||
|
||
public $addon_cols = 'status,sync_status,discount_sync_status,bill_number,sku_count';
|
||
|
||
|
||
public $detail_basic = '账单总览';
|
||
|
||
/**
|
||
* detail_basic
|
||
* @param mixed $id ID
|
||
* @return mixed 返回值
|
||
*/
|
||
|
||
public function detail_basic($id){
|
||
$render = app::get('console')->render();
|
||
|
||
$discountMdl = app::get('console')->model('vopbill_discount');
|
||
|
||
$discounts = $discountMdl->db->selectrow("SELECT sum(datasign*totalbillamount) as dis_amount FROM sdb_console_vopbill_discount WHERE bill_id=".$id."");
|
||
|
||
$render->pagedata['discounts'] = $discounts;
|
||
|
||
$vopbillMdl = app::get('console')->model('vopbill');
|
||
$vopbills = $vopbillMdl->dump($id,'*');
|
||
|
||
$render->pagedata['vopbills'] = $vopbills;
|
||
$objMath = kernel::single('eccommon_math');
|
||
|
||
|
||
$total_qty = $objMath->number_minus(array($vopbills['cr_cust_quantity'], $vopbills['dr_cust_quantity']));
|
||
|
||
$total_qty = $objMath->number_plus( array($total_qty, $vopbills['other_quantity']) );
|
||
$render->pagedata['total_qty'] = $total_qty;
|
||
|
||
|
||
$total_amount = $objMath->number_plus(array($vopbills['cr_cust_amount'], $vopbills['dr_cust_amount'],$vopbills['other_amount'],$vopbills['discount_amount']));
|
||
|
||
$render->pagedata['total_amount'] = $total_amount;
|
||
$details = kernel::single('console_vopbill')->getDetail($id);
|
||
|
||
$render->pagedata['details'] = $details;
|
||
|
||
|
||
$summary = kernel::single('console_vopbill')->getBillsAmount($id);
|
||
|
||
$render->pagedata['summary'] = $summary;
|
||
return $render->fetch('admin/vop/bill_basic.html');
|
||
}
|
||
public $detail_amount = '销售/客退';
|
||
/**
|
||
* detail_amount
|
||
* @param mixed $id ID
|
||
* @return mixed 返回值
|
||
*/
|
||
public function detail_amount($id)
|
||
{
|
||
@ini_set('memory_limit','1024M');
|
||
$render = app::get('console')->render();
|
||
$items = app::get('console')->model('vopbill_amount')->getList('*', array('bill_id' => $id));
|
||
foreach ($items as $key => $value) {
|
||
|
||
$items[$key]['price_retail'] = $sku['price_retail'];
|
||
$items[$key]['price'] = $value['amount']/$value['qty'];
|
||
}
|
||
|
||
|
||
$render->pagedata['items'] = $items;
|
||
return $render->fetch('admin/vop/bill_amount.html');
|
||
}
|
||
|
||
|
||
public $detail_items = '明细列表';
|
||
/**
|
||
* detail_items
|
||
* @param mixed $id ID
|
||
* @return mixed 返回值
|
||
*/
|
||
public function detail_items($id)
|
||
{
|
||
@ini_set('memory_limit','1024M');
|
||
$render = app::get('console')->render();
|
||
$items = app::get('console')->model('vopbill_items')->getList('*', array('bill_id' => $id));
|
||
|
||
$render->pagedata['items'] = $items;
|
||
return $render->fetch('admin/vop/bill_items.html');
|
||
}
|
||
|
||
|
||
|
||
public $detail_oplog = "操作记录";
|
||
/**
|
||
* detail_oplog
|
||
* @param mixed $id ID
|
||
* @return mixed 返回值
|
||
*/
|
||
public function detail_oplog($id){
|
||
$render = app::get('console')->render();
|
||
$opObj = app::get('ome')->model('operation_log');
|
||
$logdata = $opObj->read_log(array('obj_id'=>$id,'obj_type'=>'vopbill@console'), 0, -1);
|
||
foreach($logdata as $k=>$v){
|
||
$logdata[$k]['operate_time'] = date('Y-m-d H:i:s',$v['operate_time']);
|
||
}
|
||
$render->pagedata['logs'] = $logdata;
|
||
return $render->fetch('admin/vop/logs.html');
|
||
}
|
||
} |