|
- <?php
-
- namespace backend\modules\zzcs\models;
-
- use yii\db\ActiveRecord;
- use yii\db\Exception;
- use yii\db\Expression;
- use yii;
-
-
- /**
- * This is the model class for table "opera_tickets_distrib".
- *
- * @property integer $ID
- * @property integer $CREATE_USER_ID
- * @property string $CREATE_TIME
- * @property integer $UPDATE_USER_ID
- * @property string $UPDATE_TIME
- * @property integer $CANCEL_FLAG
- * @property integer $LINE_ID
- * @property integer $TICKET_ID
- * @property integer $SUPPLIER_ID
- * @property integer $SALE_TYPE
- * @property integer $COMMISION_FLAG
- * @property integer $COMMISION_TYPE
- * @property integer $BACK_COMMISION_TYPE
- * @property integer $BACK_COMMISION_METHOD
- * @property string $BACK_PERCENT
- * @property string $BACK_VALUE
- * @property string $PROD_PRICE
- * @property integer $AUTHORITY_STATUS
- */
- class OperaTicketsDistrib extends ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return 'opera_tickets_distrib';
- }
-
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['CREATE_USER_ID', 'UPDATE_USER_ID', 'CANCEL_FLAG', 'LINE_ID', 'TICKET_ID', 'SUPPLIER_ID', 'SALE_TYPE', 'COMMISION_FLAG', 'COMMISION_TYPE', 'BACK_COMMISION_TYPE', 'BACK_COMMISION_METHOD', 'AUTHORITY_STATUS'], 'integer'],
- [['CREATE_TIME'], 'required'],
- [['UPDATE_TIME'], 'safe'],
- [['BACK_PERCENT', 'BACK_VALUE', 'PROD_PRICE'], 'number'],
- [['CREATE_TIME'], 'string', 'max' => 20],
- ];
- }
-
- /**
- * @inheritdoc
- */
- public function attributeLabels()
- {
- return [
- 'ID' => 'ID',
- 'CREATE_USER_ID' => 'Create User ID',
- 'CREATE_TIME' => 'Create Time',
- 'UPDATE_USER_ID' => 'Update User ID',
- 'UPDATE_TIME' => 'Update Time',
- 'CANCEL_FLAG' => 'Cancel Flag',
- 'LINE_ID' => 'Line ID',
- 'TICKET_ID' => 'Ticket ID',
- 'SUPPLIER_ID' => 'Supplier ID',
- 'SALE_TYPE' => 'Sale Type',
- 'COMMISION_FLAG' => 'Commision Flag',
- 'COMMISION_TYPE' => 'Commision Type',
- 'BACK_COMMISION_TYPE' => 'Back Commision Type',
- 'BACK_COMMISION_METHOD' => 'Back Commision Method',
- 'BACK_PERCENT' => 'Back Percent',
- 'BACK_VALUE' => 'Back Value',
- 'PROD_PRICE' => 'Prod Price',
- 'AUTHORITY_STATUS' => 'Authority Status',
- ];
- }
-
- /**
- * Function Description:获取渠道销售规则
- * Function Name: getDistribInfo
- * @param $supplier_id
- * @param $sale_id
- * @param $ticket_id
- * @param $is_agent
- * @param $user_main_corp_id
- *
- * @return array|null|ActiveRecord
- *
- * @author 娄梦宁
- */
- public function getDistribInfo($supplier_id,$sale_id,$ticket_id,$is_agent,$user_main_corp_id){
- if($is_agent==1){//代售入口进入
- $left_join='opera_tickets_agent b';
- }else{
- $left_join='opera_tickets b';
- }
-
- //查询自有的销售规则
- $where=['and',['=','a.cancel_flag',0],['=','b.cancel_flag',0],['=','a.ticket_id',$ticket_id],['=','a.supplier_id',$supplier_id]];
- if($is_agent==1){
- $where[]=['=','to_main_corp_id',$user_main_corp_id];
- }
- $select=[
- 'a.supplier_id',
- 'supplier_name'=>'(select supplier_name from base_supplier where id=a.supplier_id limit 1)',
- 'a.sale_type',
- 'sale_name'=>'(select type_name from dict_type where id=a.sale_type limit 1)',
- 'a.prod_price',
- 'b.cus_price',
- 'a.commision_flag',
- 'a.commision_type',
- 'a.back_commision_type',
- 'a.back_commision_method',
- 'sale_rule'=>"IFNULL(concat((select type_name from dict_type where id = commision_type ),',',(select type_name from dict_type where id = back_commision_type ),',',(select type_name from dict_type where id = back_commision_method ),',',if(a.back_percent=0,a.back_value,a.back_percent),if(if(a.back_percent=0,0,1)=1,'%','元')),'')",
- 'a.authority_status',
- 'back_commision_value'=>"if(a.back_percent=0,a.back_value,a.back_percent)",
- ];
- $result1=self::find()->select($select)
- ->from(self::tableName().' a')
- ->leftJoin($left_join,'a.ticket_id=b.ticket_id')
- ->where($where)
- ->asArray()
- ->one();
- if(!empty($result1)){
- return $result1;
- }
-
- //没有自有销售规则。查出默认的渠道商规则
- $where=[
- 'and',
- ['=','b.ticket_id',$ticket_id],
- ['=','a.id',$supplier_id],
- ['=','c.id',$sale_id],
- ];
- if($is_agent==1){
- $where[]=['=','to_main_corp_id',$user_main_corp_id];
- }
- $select=[
- 'supplier_id'=>'a.id',
- 'a.supplier_name',
- 'c.sale_type',
- 'sale_name'=>'(select type_name from dict_type where id=c.sale_type limit 1)',
- 'b.prod_price',
- 'b.cus_price',
- 'c.commision_flag',
- 'c.commision_type',
- 'c.back_commision_type',
- 'c.back_commision_method',
- 'sale_rule'=>"IFNULL(concat((select type_name from dict_type where id = commision_type ),',',(select type_name from dict_type where id = back_commision_type ),',',(select type_name from dict_type where id = back_commision_method ),',',if(back_percent=0,back_value,back_percent),if(if(back_percent=0,0,1)=1,'%','元')),'')",
- 'authority_status'=>new Expression('1'),
- 'back_commision_value'=>"if(back_percent=0,back_value,back_percent)",
- ];
- $result2=self::find()->select($select)
- ->from('base_supplier a')
- ->leftJoin($left_join,'0=0')
- ->leftJoin('base_supplier_sale as c','0=0')
- ->where($where)
- ->groupBy('a.id')
- ->asArray()
- ->one();
- return $result2;
- }
-
- /**
- * Function Description:修改售卖规则
- * Function Name: upt_distrib_sale_rule
- * @param $value
- *
- * @return bool
- *
- * @author 娄梦宁
- */
- public function upt_distrib_sale_rule($value){
- $cnt=self::find()->from(self::tableName())->where(['and',['=','ticket_id',(int)$value['TICKET_ID']],['=','SUPPLIER_ID',(int)$value['SUPPLIER_ID']]])
- ->count();
- $transaction=Yii::$app->db->beginTransaction();
- if($cnt==0){//没有就新增
- $cookies=Yii::$app->request->cookies;
- $user_id=$cookies->getValue('user_id');
- try{
- $value['CREATE_TIME']=date('Y-m-d H:i:s');
- $value['CREATE_USER_ID']=$user_id;
- $this->attributes=$value;
- $res=$this->insert();
- if(!$res){
- throw new Exception('添加出错');
- }
- $transaction->commit();
- return true;
- }catch (Exception $e){
- $transaction->rollBack();
- return false;
- }
- }else{//有就更新
- try {
- $base_one = self::findOne(['ticket_id'=>(int)$value['TICKET_ID'],'supplier_id'=>(int)$value['SUPPLIER_ID']]);
- $base_one->attributes = $value;
- $res = $base_one->update();
- if (!$res) {
- throw new Exception('修改出错');
- }
- $transaction->commit();
- return true;
- } catch (Exception $e) {
- # 回滚事务
- $transaction->rollBack();
- return false;
- }
- }
- }
-
- /*
- * 销售规则渠道表改变授权状态
- */
- public function change_authority_status($supplier_id,$ticket_id,$authority_status,$is_agent,$to_main_corp_id){
- if($is_agent){
- $price_table="(select prod_price from opera_tickets_agent where ticket_id = $ticket_id and to_main_corp_id =$to_main_corp_id)";
- }else{
- $price_table="(select prod_price from opera_tickets where ticket_id = $ticket_id)";
- }
- $cookies=Yii::$app->request->cookies;
- $user_id=$cookies->getValue('user_id');
- $cnt=self::find()->from(self::tableName())->where(['supplier_id'=>$supplier_id,'ticket_id'=>$ticket_id])->count();
- if($cnt==0){//没有数据新增
- $sql="INSERT INTO `opera_tickets_distrib` (
- `CREATE_USER_ID`,
- `CREATE_TIME`,
- `UPDATE_USER_ID`,
- `UPDATE_TIME`,
- `CANCEL_FLAG`,
- `LINE_ID`,
- `TICKET_ID`,
- `SUPPLIER_ID`,
- `SALE_TYPE`,
- `COMMISION_FLAG`,
- `COMMISION_TYPE`,
- `BACK_COMMISION_TYPE`,
- `BACK_COMMISION_METHOD`,
- `BACK_PERCENT`,
- `BACK_VALUE`,
- `PROD_PRICE`,
- `AUTHORITY_STATUS`
- )
- SELECT
- $user_id,
- now(),
- $user_id,
- now(),
- '0',
- (select line_id from opera_tickets where ticket_id=$ticket_id limit 1),
- $ticket_id,
- $supplier_id,
- SALE_TYPE,
- COMMISION_FLAG,
- COMMISION_TYPE,
- BACK_COMMISION_TYPE,
- BACK_COMMISION_METHOD,
- BACK_PERCENT,
- BACK_VALUE,
- $price_table,
- $authority_status
- from base_supplier_sale b where b.parent_type = 310 and b.cancel_flag = 0 and b.supplier_id=4 and product_type in (0,255,256,316) limit 1";
- Yii::$app->db->createCommand($sql)->execute();
- }else{
- $value=[
- 'AUTHORITY_STATUS'=>$authority_status
- ];
- $where=[
- 'SUPPLIER_ID'=>$supplier_id,
- 'TICKET_ID'=>$ticket_id,
- 'CANCEL_FLAG'=>0,
- ];
- self::updateAll($value,$where);
- }
-
-
-
- }
- }
|