123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425 |
- <?php
- /**
- * 任务计划 - 月执行的任务
- *
- *
- *
- *
-
- */
- defined('InShopNC') or exit('Access Invalid!');
- class monthControl extends BaseCronControl
- {
- /**
- * 默认方法
- */
- public function indexOp(){
- $this->_create_bill();
- }
- private function _create_bill() {
- //更新订单商品佣金值
- $this->_order_commis_rate_update();
- $model = Model('bill');
- //实物订单结算
- try {
- $trans = new trans_wapper($model,__METHOD__);
- $this->_real_order();
- $trans->commit();
- } catch (Exception $e) {
- $trans->rollback();
- $this->log('实物账单:'.$e->getMessage());
- }
- //虚拟订单结算
- try {
- $trans = new trans_wapper($model,__METHOD__);
- $this->_vr_order();
- $trans->commit();
- } catch (Exception $e) {
- $trans->rollback();
- $this->log('虚拟账单:'.$e->getMessage());
- }
- }
- /**
- * 生成上月账单[实物订单]
- */
- private function _real_order() {
- $model_order = Model('order');
- $model_bill = Model('bill');
- $order_statis_max_info = $model_bill->getOrderStatisInfo(array(),'os_end_date','os_month desc');
- //计算起始时间点,自动生成以月份为单位的空结算记录
- if (!$order_statis_max_info){
- $order_min_info = $model_order->getOrderInfo(array(),array(),'min(add_time) as add_time');
- $start_unixtime = is_numeric($order_min_info['add_time']) ? $order_min_info['add_time'] : time();
- } else {
- $start_unixtime = $order_statis_max_info['os_end_date'];
- }
- $data = array();
- $i = 1;
- $start_unixtime = strtotime(date('Y-m-01 00:00:00', $start_unixtime));
- $current_time = strtotime(date('Y-m-01 00:00:01',time()));
- while (($time = strtotime('-'.$i.' month',$current_time)) >= $start_unixtime) {
- if (date('Ym',$start_unixtime) == date('Ym',$time)) {
- //如果两个月份相等检查库是里否存在
- $order_statis = $model_bill->getOrderStatisInfo(array('os_month'=>date('Ym',$start_unixtime)));
- if ($order_statis) {
- break;
- }
- }
- $first_day_unixtime = strtotime(date('Y-m-01 00:00:00', $time)); //该月第一天0时unix时间戳
- $last_day_unixtime = strtotime(date('Y-m-01 23:59:59', $time)." +1 month -1 day"); //该月最后一天最后一秒时unix时间戳
- $key = count($data);
- $os_month = date('Ym',$first_day_unixtime);
- $data[$key]['os_month'] = $os_month;
- $data[$key]['os_year'] = date('Y',$first_day_unixtime);
- $data[$key]['os_start_date'] = $first_day_unixtime;
- $data[$key]['os_end_date'] = $last_day_unixtime;
- //生成所有店铺月订单出账单
- $this->_create_real_order_bill($data[$key]);
- $fileds = 'sum(ob_order_totals) as ob_order_totals,sum(ob_shipping_totals) as ob_shipping_totals,
- sum(ob_order_return_totals) as ob_order_return_totals,
- sum(ob_commis_totals) as ob_commis_totals,sum(ob_commis_return_totals) as ob_commis_return_totals,
- sum(ob_store_cost_totals) as ob_store_cost_totals,sum(ob_result_totals) as ob_result_totals';
- $order_bill_info = $model_bill->getOrderBillInfo(array('os_month'=>$os_month),$fileds);
- $data[$key]['os_order_totals'] = floatval($order_bill_info['ob_order_totals']);
- $data[$key]['os_shipping_totals'] = floatval($order_bill_info['ob_shipping_totals']);
- $data[$key]['os_order_return_totals'] = floatval($order_bill_info['ob_order_return_totals']);
- $data[$key]['os_commis_totals'] = floatval($order_bill_info['ob_commis_totals']);
- $data[$key]['os_commis_return_totals'] = floatval($order_bill_info['ob_commis_return_totals']);
- $data[$key]['os_store_cost_totals'] = floatval($order_bill_info['ob_store_cost_totals']);
- $data[$key]['os_result_totals'] = floatval($order_bill_info['ob_result_totals']);
- $i++;
- }
- krsort($data);
- foreach ($data as $v) {
- $insert = $model_bill->addOrderStatis($v);
- if (!$insert) {
- throw new Exception('生成平台月出账单['.$v['os_month'].']失败');
- }
- }
- }
- /**
- * 生成所有店铺月订单出账单[实物订单]
- *
- * @param int $data
- */
- private function _create_real_order_bill($data)
- {
- $model_order = Model('order');
- $model_bill = Model('bill');
- $model_store = Model('store');
-
- //批量插件order_bill表
- // $condition = array();
- // $condition['order_state'] = ORDER_STATE_SUCCESS;
- // $condition['finnshed_time'] = array(array('egt',$data['os_start_date']),array('elt',$data['os_end_date']),'and');
- // 取出有最终成交订单的店铺ID数量(ID不重复)
- // $store_count = $model_order->getOrderInfo($condition,array(),'count(DISTINCT store_id) as c');
- // $store_count = $store_count['c'];
-
- //取店铺表数量(因为可能存在无订单,但有店铺活动费用,所以不再从订单表取店铺数量)
- $store_count = $model_store->getStoreCount(array());
- //分批生成该月份的店铺空结算表,每批生成300个店铺
- $insert = false;
- for ($i=0;$i<=$store_count;$i=$i+300){
- // $store_list = $model_order->getOrderList($condition,'','DISTINCT store_id','',"{$i},300");
- $store_list = $model_store->getStoreList(array(),null,'','store_id',"{$i},300");
- if ($store_list){
- //自动生成以月份为单位的空结算记录
- $data_bill = array();
- foreach($store_list as $store_info){
- $data_bill['ob_no'] = $data['os_month'].$store_info['store_id'];
- $data_bill['ob_start_date'] = $data['os_start_date'];
- $data_bill['ob_end_date'] = $data['os_end_date'];
- $data_bill['os_month'] = $data['os_month'];
- $data_bill['ob_state'] = 0;
- $data_bill['ob_store_id'] = $store_info['store_id'];
- if (!$model_bill->getOrderBillInfo(array('ob_no'=>$data_bill['ob_no']))) {
- $insert = $model_bill->addOrderBill($data_bill);
- if (!$insert) {
- throw new Exception('生成账单['.$data_bill['ob_no'].']失败');
- }
- //对已生成空账单进行销量、退单、佣金统计
- $update = $this->_calc_real_order_bill($data_bill);
- if (!$update){
- throw new Exception('更新账单['.$data_bill['ob_no'].']失败');
- }
- // 发送店铺消息
- $param = array();
- $param['code'] = 'store_bill_affirm';
- $param['store_id'] = $store_info['store_id'];
- $param['param'] = array(
- 'state_time' => date('Y-m-d H:i:s', $data_bill['ob_start_date']),
- 'end_time' => date('Y-m-d H:i:s', $data_bill['ob_end_date']),
- 'bill_no' => $data_bill['ob_no']
- );
- QueueClient::push('sendStoreMsg', $param);
- }
- }
- }
- }
- }
- /**
- * 计算某月内,某店铺的销量,退单量,佣金[实物订单]
- *
- * @param array $data_bill
- */
- private function _calc_real_order_bill($data_bill){
- $model_order = Model('order');
- $model_bill = Model('bill');
- $model_store = Model('store');
- $order_condition = array();
- $order_condition['order_state'] = ORDER_STATE_SUCCESS;
- $order_condition['store_id'] = $data_bill['ob_store_id'];
- $order_condition['finnshed_time'] = array('between',"{$data_bill['ob_start_date']},{$data_bill['ob_end_date']}");
- $update = array();
- //订单金额
- $fields = 'sum(order_amount) as order_amount,sum(shipping_fee) as shipping_amount,store_name';
- $order_info = $model_order->getOrderInfo($order_condition,array(),$fields);
- $update['ob_order_totals'] = floatval($order_info['order_amount']);
- //运费
- $update['ob_shipping_totals'] = floatval($order_info['shipping_amount']);
- //店铺名字
- $store_info = $model_store->getStoreInfoByID($data_bill['ob_store_id']);
- $update['ob_store_name'] = $store_info['store_name'];
-
- //佣金金额
- $order_info = $model_order->getOrderInfo($order_condition,array(),'count(DISTINCT order_id) as count');
- $order_count = $order_info['count'];
- $commis_rate_totals_array = array();
- //分批计算佣金,最后取总和
- for ($i = 0; $i <= $order_count; $i = $i + 300){
- $order_list = $model_order->getOrderList($order_condition,'','order_id','',"{$i},300");
- $order_id_array = array();
- foreach ($order_list as $order_info) {
- $order_id_array[] = $order_info['order_id'];
- }
- if (!empty($order_id_array)){
- $order_goods_condition = array();
- $order_goods_condition['order_id'] = array('in',$order_id_array);
- $field = 'SUM(ROUND(goods_pay_price*commis_rate/100,2)) as commis_amount';
- $order_goods_info = $model_order->getOrderGoodsInfo($order_goods_condition,$field);
- $commis_rate_totals_array[] = $order_goods_info['commis_amount'];
- }else{
- $commis_rate_totals_array[] = 0;
- }
- }
- $update['ob_commis_totals'] = floatval(array_sum($commis_rate_totals_array));
- //退款总额
- $model_refund = Model('refund_return');
- $refund_condition = array();
- $refund_condition['seller_state'] = 2;
- $refund_condition['store_id'] = $data_bill['ob_store_id'];
- $refund_condition['goods_id'] = array('gt',0);
- $refund_condition['admin_time'] = array(array('egt',$data_bill['ob_start_date']),array('elt',$data_bill['ob_end_date']),'and');
- $refund_info = $model_refund->getRefundReturnInfo($refund_condition,'sum(refund_amount) as amount');
- $update['ob_order_return_totals'] = floatval($refund_info['amount']);
- //退款佣金
- $refund = $model_refund->getRefundReturnInfo($refund_condition,'sum(ROUND(refund_amount*commis_rate/100,2)) as amount');
- if ($refund) {
- $update['ob_commis_return_totals'] = floatval($refund['amount']);
- } else {
- $update['ob_commis_return_totals'] = 0;
- }
- //店铺活动费用
- $model_store_cost = Model('store_cost');
- $cost_condition = array();
- $cost_condition['cost_store_id'] = $data_bill['ob_store_id'];
- $cost_condition['cost_state'] = 0;
- $cost_condition['cost_time'] = array(array('egt',$data_bill['ob_start_date']),array('elt',$data_bill['ob_end_date']),'and');
- $cost_info = $model_store_cost->getStoreCostInfo($cost_condition,'sum(cost_price) as cost_amount');
- $update['ob_store_cost_totals'] = floatval($cost_info['cost_amount']);
- //本期应结
- $update['ob_result_totals'] = $update['ob_order_totals'] - $update['ob_order_return_totals'] -
- $update['ob_commis_totals'] + $update['ob_commis_return_totals']-
- $update['ob_store_cost_totals'];
- $update['ob_create_date'] = time();
- $update['ob_state'] = 1;
- return $model_bill->editOrderBill($update,array('ob_no'=>$data_bill['ob_no']));
- }
- /**
- * 生成上月账单[虚拟订单]
- */
- private function _vr_order() {
- $model_order = Model('vr_order');
- $model_bill = Model('vr_bill');
- $order_statis_max_info = $model_bill->getOrderStatisInfo(array(),'os_end_date','os_month desc');
- //计算起始时间点,自动生成以月份为单位的空结算记录
- if (!$order_statis_max_info){
- $order_min_info = $model_order->getOrderInfo(array(),'min(add_time) as add_time');
- $start_unixtime = is_numeric($order_min_info['add_time']) ? $order_min_info['add_time'] : time();
- } else {
- $start_unixtime = $order_statis_max_info['os_end_date'];
- }
- $data = array();
- $i = 1;
- $start_unixtime = strtotime(date('Y-m-01 00:00:00', $start_unixtime));
- $current_time = strtotime(date('Y-m-01 00:00:01',time()));
- while (($time = strtotime('-'.$i.' month',$current_time)) >= $start_unixtime) {
- if (date('Ym',$start_unixtime) == date('Ym',$time)) {
- //如果两个月份相等检查库是里否存在
- $order_statis = $model_bill->getOrderStatisInfo(array('os_month'=>date('Ym',$start_unixtime)));
- if ($order_statis) {
- break;
- }
- }
- $first_day_unixtime = strtotime(date('Y-m-01 00:00:00', $time)); //该月第一天0时unix时间戳
- $last_day_unixtime = strtotime(date('Y-m-01 23:59:59', $time)." +1 month -1 day"); //该月最后一天最后一秒时unix时间戳
- $key = count($data);
- $os_month = date('Ym',$first_day_unixtime);
- $data[$key]['os_month'] = $os_month;
- $data[$key]['os_year'] = date('Y',$first_day_unixtime);
- $data[$key]['os_start_date'] = $first_day_unixtime;
- $data[$key]['os_end_date'] = $last_day_unixtime;
-
- //生成所有店铺月订单出账单
- $this->_create_vr_order_bill($data[$key]);
-
- $fileds = 'sum(ob_order_totals) as ob_order_totals,
- sum(ob_commis_totals) as ob_commis_totals,sum(ob_result_totals) as ob_result_totals';
- $order_bill_info = $model_bill->getOrderBillInfo(array('os_month'=>$os_month),$fileds);
- $data[$key]['os_order_totals'] = floatval($order_bill_info['ob_order_totals']);
- $data[$key]['os_commis_totals'] = floatval($order_bill_info['ob_commis_totals']);
- $data[$key]['os_result_totals'] = floatval($order_bill_info['ob_result_totals']);
- $i++;
- }
- krsort($data);
- foreach ($data as $v) {
- $insert = $model_bill->addOrderStatis($v);
- if (!$insert) {
- throw new Exception('生成平台月出账单['.$v['os_month'].']失败');
- }
- }
- }
- /**
- * 生成所有店铺月订单出账单[虚拟订单]
- *
- * @param int $data
- */
- private function _create_vr_order_bill($data){
- $model_order = Model('vr_order');
- $model_bill = Model('vr_bill');
- $model_store = Model('store');
-
- //批量插入order_bill表
- $condition = array();
- $condition['order_state'] = array('egt',ORDER_STATE_PAY);
- $condition['payment_time'] = array(array('egt',$data['os_start_date']),array('elt',$data['os_end_date']),'and');
- //取出有最终成交订单的店铺ID数量(ID不重复)
- $order_info = $model_order->getOrderInfo($condition,'count(DISTINCT store_id) as store_count');
- $store_count = $order_info['store_count'];
- //分批生成该月份的店铺空结算表,每批生成300个店铺
- $insert = false;
- for ($i=0;$i<=$store_count;$i=$i+300){
- $store_list = $model_order->getOrderList($condition,'','DISTINCT store_id','',"{$i},300");
- if ($store_list){
- //自动生成以月份为单位的空结算记录
- $data_bill = array();
- foreach($store_list as $store_info){
- $data_bill['ob_no'] = $data['os_month'].$store_info['store_id'];
- $data_bill['ob_start_date'] = $data['os_start_date'];
- $data_bill['ob_end_date'] = $data['os_end_date'];
- $data_bill['os_month'] = $data['os_month'];
- $data_bill['ob_state'] = 0;
- $data_bill['ob_store_id'] = $store_info['store_id'];
- if (!$model_bill->getOrderBillInfo(array('ob_no'=>$data_bill['ob_no']))) {
- $insert = $model_bill->addOrderBill($data_bill);
- if (!$insert) {
- throw new Exception('生成账单['.$data_bill['ob_no'].']失败');
- }
- //对已生成空账单进行销量、佣金统计
- $update = $this->_calc_vr_order_bill($data_bill);
- if (!$update){
- throw new Exception('更新账单['.$data_bill['ob_no'].']失败');
- }
- // 发送店铺消息
- $param = array();
- $param['code'] = 'store_bill_affirm';
- $param['store_id'] = $store_info['store_id'];
- $param['param'] = array(
- 'state_time' => date('Y-m-d H:i:s', $data_bill['ob_start_date']),
- 'end_time' => date('Y-m-d H:i:s', $data_bill['ob_end_date']),
- 'bill_no' => $data_bill['ob_no']
- );
- QueueClient::push('sendStoreMsg', $param);
- }
- }
- }
- }
- }
-
- /**
- * 计算某月内,某店铺的销量,佣金
- *
- * @param array $data_bill
- */
- private function _calc_vr_order_bill($data_bill){
- $model_order = Model('vr_order');
- $model_bill = Model('vr_bill');
- $model_store = Model('store');
- //计算已使用兑换码
- $order_condition = array();
- $order_condition['vr_state'] = 1;
- $order_condition['store_id'] = $data_bill['ob_store_id'];
- $order_condition['vr_usetime'] = array('between',"{$data_bill['ob_start_date']},{$data_bill['ob_end_date']}");
- $update = array();
- //订单金额
- $fields = 'sum(pay_price) as order_amount,SUM(ROUND(pay_price*commis_rate/100,2)) as commis_amount';
- $order_info = $model_order->getOrderCodeInfo($order_condition, $fields);
- $update['ob_order_totals'] = floatval($order_info['order_amount']);
- //佣金金额
- $update['ob_commis_totals'] = $order_info['commis_amount'];
- //计算已过期不退款兑换码
- $order_condition = array();
- $order_condition['vr_state'] = 0;
- $order_condition['store_id'] = $data_bill['ob_store_id'];
- $order_condition['vr_invalid_refund'] = 0;
- $order_condition['vr_indate'] = array('between',"{$data_bill['ob_start_date']},{$data_bill['ob_end_date']}");
- //订单金额
- $fields = 'sum(pay_price) as order_amount,SUM(ROUND(pay_price*commis_rate/100,2)) as commis_amount';
- $order_info = $model_order->getOrderCodeInfo($order_condition, $fields);
- $update['ob_order_totals'] += floatval($order_info['order_amount']);
- //佣金金额
- $update['ob_commis_totals'] += $order_info['commis_amount'];
- //店铺名
- $store_info = $model_store->getStoreInfoByID($data_bill['ob_store_id']);
- $update['ob_store_name'] = $store_info['store_name'];
- //本期应结
- $update['ob_result_totals'] = $update['ob_order_totals'] - $update['ob_commis_totals'];
- $update['ob_create_date'] = time();
- $update['ob_state'] = 1;
- return $model_bill->editOrderBill($update,array('ob_no'=>$data_bill['ob_no']));
- }
- }
|