You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

155 regels
5.4 KiB

  1. <?php
  2. namespace backend\modules\zzcs\models;
  3. use yii\db\ActiveRecord;
  4. use Yii;
  5. use yii\base\Exception;
  6. /**
  7. * This is the model class for table "base_supplier_sequence".
  8. *
  9. * @property integer $ID
  10. * @property integer $SUPPLIER_ID
  11. * @property string $SALES
  12. * @property string $DATE_MONTH
  13. * @property integer $CANCEL_FLAG
  14. * @property integer $CREATE_USER_ID
  15. * @property string $CREATE_TIME
  16. * @property integer $UPDATE_USER_ID
  17. * @property string $UPDATE_TIME
  18. * @property integer $ORDER_NUM
  19. * @property integer $PERSON_TRIP
  20. */
  21. class BaseSupplierSequence extends ActiveRecord
  22. {
  23. /**
  24. * @inheritdoc
  25. */
  26. public static function tableName()
  27. {
  28. return 'base_supplier_sequence';
  29. }
  30. /**
  31. * @inheritdoc
  32. */
  33. public function rules()
  34. {
  35. return [
  36. [['SUPPLIER_ID'], 'required'],
  37. [['SUPPLIER_ID', 'CANCEL_FLAG', 'CREATE_USER_ID', 'UPDATE_USER_ID', 'ORDER_NUM', 'PERSON_TRIP'], 'integer'],
  38. [['SALES'], 'number'],
  39. [['DATE_MONTH'], 'string', 'max' => 10],
  40. [['CREATE_TIME', 'UPDATE_TIME'], 'string', 'max' => 20],
  41. ];
  42. }
  43. /**
  44. * @inheritdoc
  45. */
  46. public function attributeLabels()
  47. {
  48. return [
  49. 'ID' => 'ID',
  50. 'SUPPLIER_ID' => '渠道id',
  51. 'SALES' => '销售额',
  52. 'DATE_MONTH' => '月份',
  53. 'CANCEL_FLAG' => '记录有效性标记,CANCEL_FLAG=0记录有效;CANCEL_FLAG=1,记录已删除',
  54. 'CREATE_USER_ID' => '记录创建用户ID',
  55. 'CREATE_TIME' => '记录创建时间',
  56. 'UPDATE_USER_ID' => '记录最后更新用户ID',
  57. 'UPDATE_TIME' => '记录最后更新时间',
  58. 'ORDER_NUM' => '订单数',
  59. 'PERSON_TRIP' => '人数',
  60. ];
  61. }
  62. /**
  63. * Function Description:向数据库插入上月销售统计数据
  64. * Function Name: addSequenceBySale
  65. *
  66. * @return bool|string
  67. *
  68. * @author 张帅
  69. */
  70. public function addSequenceBySale()
  71. {
  72. $date_month = date('Y-m', strtotime("-1 month "));
  73. $user_id = 1;
  74. $create_time = date('Y-m-d H:i:s', time());
  75. #region 1.上月的订单统计
  76. $order_list = OrderMain::find()
  77. ->select([
  78. 'order_id' => 'parent_order_id',//订单号
  79. 'supplier_id' => 'outside_sale_org_id',//订单渠道
  80. 'supplier_name' => BaseSupplier::find()->select('supplier_name')->where('id = m1.outside_sale_org_id'),//渠道名称
  81. 'person_trip' => 'count(order_id)',//人次
  82. 'order_price' => "sum(order_price)",//价格
  83. ])
  84. ->from(OrderMain::tableName() . ' as m1')
  85. ->where([
  86. 'and',
  87. ['like', 'create_time', $date_month],
  88. ['>', 'parent_order_id', 0],
  89. ['in', 'order_status', [146, 147]],
  90. ['=', 'cancel_flag', 0],
  91. ['not in', 'parent_prod_name', ['岛内接驳', '土楼专线岛外上车']],
  92. ['in', 'order_prod_type', [81, 82, 369]]
  93. ])
  94. ->groupBy('parent_order_id');
  95. $supplier_sale = self::find()
  96. ->select([
  97. 'supplier_id',//渠道id
  98. 'order_num' => 'count(order_id)',//订单数
  99. 'person_trip' => 'sum(person_trip)',//人次
  100. 'order_price' => 'sum(order_price)',//价格
  101. ])->from([$order_list])
  102. ->groupBy('supplier_id')
  103. ->orderBy(['order_num' => SORT_DESC, 'person_trip' => SORT_DESC, 'order_price' => SORT_DESC])
  104. ->asArray()->all();
  105. #endregion
  106. #region 2.整理要插入的数据
  107. $supplier_sequence_value = [];
  108. foreach ($supplier_sale as $key => $vel) {
  109. $supplier_sequence_one['SUPPLIER_ID'] = $vel['supplier_id'];
  110. $supplier_sequence_one['SALES'] = $vel['order_price'];
  111. $supplier_sequence_one['DATE_MONTH'] = $date_month;
  112. $supplier_sequence_one['CANCEL_FLAG'] = 0;
  113. $supplier_sequence_one['CREATE_USER_ID'] = $user_id;
  114. $supplier_sequence_one['CREATE_TIME'] = $create_time;
  115. $supplier_sequence_one['UPDATE_USER_ID'] = $user_id;
  116. $supplier_sequence_one['UPDATE_TIME'] = $create_time;
  117. $supplier_sequence_one['ORDER_NUM'] = $vel['order_num'];
  118. $supplier_sequence_one['PERSON_TRIP'] = $vel['person_trip'];
  119. $supplier_sequence_value[] = $supplier_sequence_one;
  120. }
  121. #endregion
  122. $transaction = Yii::$app->db->beginTransaction();
  123. try {
  124. #region 3.清除上月产生过得数据
  125. self::deleteAll(['DATE_MONTH' => $date_month]);
  126. #endregion
  127. #region 4.插入上月渠道销售数据
  128. $res = Yii::$app->db->createCommand()->batchInsert('base_supplier_sequence',
  129. ['SUPPLIER_ID', 'SALES', 'DATE_MONTH', 'CANCEL_FLAG', 'CREATE_USER_ID', 'CREATE_TIME', 'UPDATE_USER_ID', 'UPDATE_TIME', 'ORDER_NUM', 'PERSON_TRIP'],
  130. $supplier_sequence_value)->execute();
  131. if (!$res) {
  132. throw new Exception('更新出错');
  133. }
  134. #endregion
  135. $transaction->commit();
  136. } catch (Exception $e) {
  137. # 回滚事务
  138. $transaction->rollback();
  139. return $e->getMessage();
  140. }
  141. return true;
  142. }
  143. }