|
- <?php
-
- namespace backend\modules\zzcs\models;
-
- use Yii;
-
- /**
- * This is the model class for table "order_title_cancel_request".
- *
- * @property integer $id
- * @property integer $order_title_id
- * @property integer $from_org_id
- * @property string $create_time
- * @property string $update_time
- * @property integer $request_status
- * @property string $limit_time
- * @property string $operate_user_id
- */
- class OrderTitleCancelRequest extends \yii\db\ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return 'order_title_cancel_request';
- }
-
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['order_title_id', 'from_org_id', 'request_status'], 'integer'],
- [['create_time', 'update_time', 'limit_time', 'operate_user_id'], 'string', 'max' => 20],
- [['sequence_id', 'last_time'], 'string', 'max' => 30],
- ];
- }
-
- /**
- * @inheritdoc
- */
- public function attributeLabels()
- {
- return [
- 'id' => 'ID',
- 'order_title_id' => 'Order Title ID',
- 'from_org_id' => 'From Org ID',
- 'create_time' => 'Create Time',
- 'update_time' => 'Update Time',
- 'request_status' => 'Request Status',
- 'limit_time' => 'Limit Time',
- 'operate_user_id' => 'Operate User ID',
- 'sequence_id' => 'sequence_id',
- 'last_time' => 'last_time'
- ];
- }
-
- /**
- * Function Description:筛选即将过期的待审核订单
- * Function Name: check_cancel_request
- * @return array
- *
- * @author 冒炎
- */
- public function check_cancel_request()
- {
- $today = date('Y-m-d');
- $yesterday = date('Y-m-d', strtotime('-1 day'));
- $select = [
- 'order_title_id',
- 'create_time',
- 'limit_time',
- 'last_time'
- ];
- $where = ['and', ['=', 'request_status', 1]];
- $where[] = ['or', ['like', 'create_time', $today], ['like', 'create_time', $yesterday]];
- $recent_arr = self::find()
- ->select($select)
- ->from(self::tableName())
- ->where($where)
- ->orderBy('create_time asc')
- ->asArray()
- ->all();
- $arr = [];
- foreach ($recent_arr as $val) {
- if((strtotime($val['last_time'])-time())<300){
- $arr[] = $val['order_title_id'];
- }
- }
- return $arr;
- }
-
- /**
- * Des:获取最后的申请记录
- * Name: getLastInfo
- * @param $order_id
- * @return array
- * @author 倪宗锋
- */
- public function getLastInfo($order_id)
- {
- $select = [
- 'id',
- 'order_title_id',
- 'from_org_id',
- 'create_time',
- 'update_time',
- 'request_status',
- 'limit_time',
- 'operate_user_id',
- 'sequence_id'
- ];
- $where = ['=', 'order_title_id', $order_id];
- $getInfo = self::find()->select($select)
- ->where($where)
- ->orderBy('id desc')
- ->limit(1)
- ->asArray()
- ->one();
- return $getInfo;
- }
-
- /**
- * Des:添加记录
- * Name: addRow
- * @param $params
- * @return int
- * @author 倪宗锋
- */
- public function addRow($params)
- {
- $values = [
- 'order_title_id' => $params['order_title_id'],
- 'from_org_id' => $params['from_org_id'],
- 'create_time' => $params['create_time'],
- 'limit_time' => $params['limit_time'],
- 'last_time' => $params['last_time'],
- 'sequence_id' => $params['sequence_id']
- ];
- $tab = clone $this;
- $tab->attributes = $values;
- $res = $tab->insert();
- if ($res == false) {
- return 0;
- }
- return $tab->id;
- }
-
-
- /**
- * Des:修改
- * Name: updateStatusById
- * @param $params
- * @param $id
- * @return bool
- * @author 倪宗锋
- */
- public function updateStatusById($params, $id)
- {
- $flag = self::updateAll($params, 'id=:id', array(':id' => $id));
- if ($flag == false) {
- return false;
- }
- return true;
- }
-
- /***
- * Des: 获取超时的取消申请
- * Name: getCancelOutTimes
- * @return array
- * @author 倪宗锋
- */
- public function getCancelOutTimes()
- {
- $select = ['order_title_id'];
- $where = [
- 'and',
- ['=', 'request_status', 1],
- ['<', 'last_time', date('Y-m-d H:i:s')]
- ];
- $getList = self::find()->select($select)->distinct()
- ->where($where)
- ->asArray()
- ->all();
- return $getList;
- }
- }
|