|
- <?php
-
- namespace backend\modules\zzcs\models;
-
- use yii\db\ActiveRecord;
- use Yii;
- use yii\base\Exception;
-
- /**
- * This is the model class for table "base_supplier_sequence".
- *
- * @property integer $ID
- * @property integer $SUPPLIER_ID
- * @property string $SALES
- * @property string $DATE_MONTH
- * @property integer $CANCEL_FLAG
- * @property integer $CREATE_USER_ID
- * @property string $CREATE_TIME
- * @property integer $UPDATE_USER_ID
- * @property string $UPDATE_TIME
- * @property integer $ORDER_NUM
- * @property integer $PERSON_TRIP
- */
- class BaseSupplierSequence extends ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return 'base_supplier_sequence';
- }
-
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['SUPPLIER_ID'], 'required'],
- [['SUPPLIER_ID', 'CANCEL_FLAG', 'CREATE_USER_ID', 'UPDATE_USER_ID', 'ORDER_NUM', 'PERSON_TRIP'], 'integer'],
- [['SALES'], 'number'],
- [['DATE_MONTH'], 'string', 'max' => 10],
- [['CREATE_TIME', 'UPDATE_TIME'], 'string', 'max' => 20],
- ];
- }
-
- /**
- * @inheritdoc
- */
- public function attributeLabels()
- {
- return [
- 'ID' => 'ID',
- 'SUPPLIER_ID' => '渠道id',
- 'SALES' => '销售额',
- 'DATE_MONTH' => '月份',
- 'CANCEL_FLAG' => '记录有效性标记,CANCEL_FLAG=0记录有效;CANCEL_FLAG=1,记录已删除',
- 'CREATE_USER_ID' => '记录创建用户ID',
- 'CREATE_TIME' => '记录创建时间',
- 'UPDATE_USER_ID' => '记录最后更新用户ID',
- 'UPDATE_TIME' => '记录最后更新时间',
- 'ORDER_NUM' => '订单数',
- 'PERSON_TRIP' => '人数',
- ];
- }
-
- /**
- * Function Description:向数据库插入上月销售统计数据
- * Function Name: addSequenceBySale
- *
- * @return bool|string
- *
- * @author 张帅
- */
- public function addSequenceBySale()
- {
- $date_month = date('Y-m', strtotime("-1 month "));
- $user_id = 1;
- $create_time = date('Y-m-d H:i:s', time());
-
- #region 1.上月的订单统计
- $order_list = OrderMain::find()
- ->select([
- 'order_id' => 'parent_order_id',//订单号
- 'supplier_id' => 'outside_sale_org_id',//订单渠道
- 'supplier_name' => BaseSupplier::find()->select('supplier_name')->where('id = m1.outside_sale_org_id'),//渠道名称
- 'person_trip' => 'count(order_id)',//人次
- 'order_price' => "sum(order_price)",//价格
- ])
- ->from(OrderMain::tableName() . ' as m1')
- ->where([
- 'and',
- ['like', 'create_time', $date_month],
- ['>', 'parent_order_id', 0],
- ['in', 'order_status', [146, 147]],
- ['=', 'cancel_flag', 0],
- ['not in', 'parent_prod_name', ['岛内接驳', '土楼专线岛外上车']],
- ['in', 'order_prod_type', [81, 82, 369]]
- ])
- ->groupBy('parent_order_id');
-
- $supplier_sale = self::find()
- ->select([
- 'supplier_id',//渠道id
- 'order_num' => 'count(order_id)',//订单数
- 'person_trip' => 'sum(person_trip)',//人次
- 'order_price' => 'sum(order_price)',//价格
- ])->from([$order_list])
- ->groupBy('supplier_id')
- ->orderBy(['order_num' => SORT_DESC, 'person_trip' => SORT_DESC, 'order_price' => SORT_DESC])
- ->asArray()->all();
- #endregion
-
- #region 2.整理要插入的数据
- $supplier_sequence_value = [];
- foreach ($supplier_sale as $key => $vel) {
- $supplier_sequence_one['SUPPLIER_ID'] = $vel['supplier_id'];
- $supplier_sequence_one['SALES'] = $vel['order_price'];
- $supplier_sequence_one['DATE_MONTH'] = $date_month;
- $supplier_sequence_one['CANCEL_FLAG'] = 0;
- $supplier_sequence_one['CREATE_USER_ID'] = $user_id;
- $supplier_sequence_one['CREATE_TIME'] = $create_time;
- $supplier_sequence_one['UPDATE_USER_ID'] = $user_id;
- $supplier_sequence_one['UPDATE_TIME'] = $create_time;
- $supplier_sequence_one['ORDER_NUM'] = $vel['order_num'];
- $supplier_sequence_one['PERSON_TRIP'] = $vel['person_trip'];
- $supplier_sequence_value[] = $supplier_sequence_one;
- }
- #endregion
-
- $transaction = Yii::$app->db->beginTransaction();
- try {
- #region 3.清除上月产生过得数据
- self::deleteAll(['DATE_MONTH' => $date_month]);
- #endregion
-
- #region 4.插入上月渠道销售数据
- $res = Yii::$app->db->createCommand()->batchInsert('base_supplier_sequence',
- ['SUPPLIER_ID', 'SALES', 'DATE_MONTH', 'CANCEL_FLAG', 'CREATE_USER_ID', 'CREATE_TIME', 'UPDATE_USER_ID', 'UPDATE_TIME', 'ORDER_NUM', 'PERSON_TRIP'],
- $supplier_sequence_value)->execute();
- if (!$res) {
- throw new Exception('更新出错');
- }
- #endregion
- $transaction->commit();
- } catch (Exception $e) {
- # 回滚事务
- $transaction->rollback();
- return $e->getMessage();
- }
- return true;
- }
- }
|