|
- <?php
-
- namespace backend\modules\zzcs\models;
-
- use Yii;
- use yii\db\Exception;
-
- /**
- * This is the model class for table "base_supplier".
- *
- * @property integer $ID
- * @property integer $MAIN_CORP_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 $AREA_ID
- * @property integer $SUPPLIER_TYPE
- * @property string $SUPPLIER_NAME
- * @property string $SUPPLIER_CODE
- * @property integer $MANAGE_TYPE
- * @property string $COMPANY_NAME
- * @property string $ID_CARD
- * @property integer $IS_DISABLED
- * @property integer $SETT_TYPE
- * @property integer $SETT_FREQUENCY
- * @property string $ACCOUNT_BANK
- * @property string $ACCOUNT_NUM
- * @property string $ACCOUNT_NAME
- * @property string $SALES_MAN
- * @property integer $REFLECT_MAIN_CORP
- * @property integer $NEED_SERIAL_NO
- * @property string $ACCOUNT_BALANCE
- * @property integer $DEDUCT_TYPE
- * @property string $ALERT_BALANCE
- * @property integer $STATUS
- */
- class BaseSupplier extends \yii\db\ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return 'base_supplier';
- }
-
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['MAIN_CORP_ID', 'CREATE_USER_ID', 'UPDATE_USER_ID', 'CANCEL_FLAG', 'AREA_ID', 'SUPPLIER_TYPE', 'MANAGE_TYPE', 'IS_DISABLED', 'SETT_TYPE', 'SETT_FREQUENCY', 'REFLECT_MAIN_CORP', 'NEED_SERIAL_NO', 'DEDUCT_TYPE', 'STATUS'], 'integer'],
- [['SUPPLIER_TYPE', 'SUPPLIER_NAME'], 'required'],
- [['UPDATE_TIME'], 'safe'],
- [['ACCOUNT_BALANCE', 'ALERT_BALANCE'], 'number'],
- [['CREATE_TIME', 'ID_CARD', 'ACCOUNT_NUM'], 'string', 'max' => 20],
- [['SUPPLIER_NAME', 'SUPPLIER_CODE', 'COMPANY_NAME', 'ACCOUNT_BANK', 'ACCOUNT_NAME'], 'string', 'max' => 100],
- [['SALES_MAN'], 'string', 'max' => 30],
- ];
- }
-
- /**
- * @inheritdoc
- */
- public function attributeLabels()
- {
- return [
- 'ID' => 'ID',
- 'MAIN_CORP_ID' => 'Main Corp 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',
- 'AREA_ID' => 'Area ID',
- 'SUPPLIER_TYPE' => 'Supplier Type',
- 'SUPPLIER_NAME' => 'Supplier Name',
- 'SUPPLIER_CODE' => 'Supplier Code',
- 'MANAGE_TYPE' => 'Manage Type',
- 'COMPANY_NAME' => 'Company Name',
- 'ID_CARD' => 'Id Card',
- 'IS_DISABLED' => 'Is Disabled',
- 'SETT_TYPE' => 'Sett Type',
- 'SETT_FREQUENCY' => 'Sett Frequency',
- 'ACCOUNT_BANK' => 'Account Bank',
- 'ACCOUNT_NUM' => 'Account Num',
- 'ACCOUNT_NAME' => 'Account Name',
- 'SALES_MAN' => 'Sales Man',
- 'REFLECT_MAIN_CORP' => 'Reflect Main Corp',
- 'NEED_SERIAL_NO' => 'Need Serial No',
- 'ACCOUNT_BALANCE' => 'Account Balance',
- 'DEDUCT_TYPE' => 'Deduct Type',
- 'ALERT_BALANCE' => 'Alert Balance',
- 'STATUS' => 'Status',
- ];
- }
-
- /**
- * Function Description:获取车队信息
- * Function Name: getMotorcadeInfo
- *
- * @return mixed
- *
- * @author 张帅
- */
- public function getMotorcadeInfo($add_code_mode = false)
- {
- #region 获取用户信息
- //获取cookies
- $cookies = Yii::$app->request->cookies;
- //账号权限
- $user_id = $cookies->getValue('user_id');
- $user_info = BaseUser::find()
- ->select('opera_org_id,main_corp_id')
- ->where(['id' => $user_id, 'cancel_flag' => 0])
- ->asArray()
- ->one();
- $opera_org_id = $user_info['opera_org_id'];
- $main_corp_id = $user_info['main_corp_id'];
- #endregion
-
- $sql_where = [
- 'and',
- ['=', 's.cancel_flag', 0],
- ['=', 's.supplier_type', 187],
- ['=', 'p.cancel_flag', 0],
- ['=', 'p.product_type', 259]
- ];
-
- // //用户权限
- // if (!empty($opera_org_id)) {
- // $sql_where[] = ['in', 's.id', explode(',', $opera_org_id)];
- // }
- if ($main_corp_id == 0) {
- $main_corp_id = 1;
- }
- if ($main_corp_id != 0) {
- if ($add_code_mode == true) {
- $sql_where[] = ['or', ['in', 's.main_corp_id', explode(',', $main_corp_id)], ['>', 's.reflect_main_corp', 0]];
- } else {
- $sql_where[] = ['in', 's.main_corp_id', explode(',', $main_corp_id)];
- }
- }
-
- $motorcade_info = self::find()->select('p.supplier_id,s.supplier_name,s.supplier_code')
- ->from(['s' => self::tableName()])
- ->leftJoin(BaseSupplierPurchase::tableName() . ' as p', 's.id = p.supplier_id')
- ->where($sql_where)->groupBy('s.id')
- ->asArray()
- ->all();
-
- return $motorcade_info;
- }
-
- /**
- * Des:获取所有列表
- * Name: getListAll
- * @return array
- * @author 倪宗锋
- */
- public function getListAll() {
- $sql_where = [
- 'and',
- ['=', 's.cancel_flag', 0],
- ['=', 's.supplier_type', 187],
- ['=', 'p.cancel_flag', 0],
- ['=', 'p.product_type', 259]
- ];
- $motorcade_info = self::find()->select('p.supplier_id,s.supplier_name,s.supplier_code')
- ->from(['s' => self::tableName()])
- ->leftJoin(BaseSupplierPurchase::tableName() . ' as p', 's.id = p.supplier_id')
- ->where($sql_where)->groupBy('s.id')
- ->asArray()
- ->all();
- return $motorcade_info;
- }
-
-
- /**
- * Function Description:
- * Function Name: getMotorcade
- *
- * @return mixed
- *
- * @author 张帅
- */
- public function getMotorcadeCodeAndName()
- {
- //1.获取车队信息
- $motorcade_info = $this->getMotorcadeInfo();
-
- #region 2.获取车队名称数组 和 车队代码数组
- $motorcade_name = [];
- $motorcade_code = [];
- foreach ($motorcade_info as $key => $vel) {
- $motorcade_name[$vel['supplier_name']] = $vel['supplier_name'];
- $motorcade_code[$vel['supplier_code']] = $vel['supplier_code'];
- }
- #endregion
-
- $result['motorcade_name'] = $motorcade_name;
- $result['motorcade_code'] = $motorcade_code;
- return $result;
- }
-
- /**
- * Function Description:获取渠道商名称
- * Function Name: getChannelName
- *
- * @return array|ActiveRecord[]
- *
- * @author 张帅
- */
- public function getChannelName()
- {
- $base_user = new BaseUser();
- $user_main_corp = $base_user->getMainCorp();
- $result = self::find()
- ->select([
- 'supplier_id' => 'id',
- 'supplier_name',
- ])
- ->where([
- 'and',
- ['=', 'cancel_flag', 0],
- ['=', 'is_disabled', 0],
- ['=', 'supplier_type', 301],
- ['or', ['=', 'main_corp_id', $user_main_corp], ['=', 'main_corp_id', 0]]
- ])
- ->asArray()->all();
- return $result;
- }
-
- /**
- * Function Description:获取姓名和id
- * Function Name: getNameAndId
- * @param $supplier_type
- *
- * @return array|\yii\db\ActiveRecord[]
- *
- * @author 李健
- */
- public function getNameAndId($supplier_type)
- {
- $result = self::find()
- ->select([
- 'supplier_id' => 'id',
- 'supplier_name',
- ])
- ->where([
- 'and',
- ['=', 'cancel_flag', 0],
- ['=', 'is_disabled', 0],
- ['=', 'supplier_type', $supplier_type],
- ])
- ->asArray()->all();
- return $result;
- }
-
- /**
- * Function Description:获取渠道下所有可用的渠道商列表
- * Function Name: getDistribAll
- * @param $user_main_corp
- * @param $line_type
- * @param $current_page
- * @param $page_size
- *
- * @return array
- *
- * @author 娄梦宁
- */
- public function getDistribAll($user_main_corp, $line_type, $current_page, $page_size, $is_agent, $supplier_name, $is_main_corp)
- {
- $base_area = new BaseArea();
- $where = ['and',
- ['=', 'a.cancel_flag', 0],
- ['=', 'b.cancel_flag', 0],
- ['or', ['=', 'a.main_corp_id', $user_main_corp],
- ['=', 'a.main_corp_id', 0]],
- ['=', 'a.supplier_type', 301],
- ['=', 'b.parent_type', 310],
- ['=', 'a.IS_DISABLED', 0],
- ['!=', 'a.REFLECT_MAIN_CORP', $user_main_corp]];
- if ($line_type == 255) {
- $where[] = [
- 'in', 'b.product_type', [0, 255, 258]
- ];
- } elseif ($line_type == 256) {
- $where[] = [
- 'in', 'b.product_type', [0, 256]
- ];
- } elseif ($line_type == 316) {
- $where[] = [
- 'in', 'b.product_type', [0, 316]
- ];
- }
- if ($is_agent == 1 || $user_main_corp == 1) {
- $where[] = ['!=', 'a.id', 1];
- }
- if ($supplier_name != '') {
- $where[] = ['like', 'a.supplier_name', $supplier_name];
- }
- if ($is_main_corp != -1) {
- if ($is_main_corp == 0) {
- $where[] = ['=', 'a.reflect_main_corp', '-1'];
- } else {
- $where[] = ['<>', 'a.reflect_main_corp', '-1'];
- }
- }
- $offset = ($current_page - 1) * $page_size;
- $list = self::find()->select('a.id,b.id as sale_id,a.reflect_main_corp')
- ->from(self::tableName() . ' a')
- ->leftJoin('base_supplier_sale as b', 'a.id=b.supplier_id')
- ->where($where)
- ->groupBy('a.id')
- ->offset($offset)
- ->limit($page_size)
- ->asArray()
- ->all();
- $total_row = self::find()->from(self::tableName() . ' a')->leftJoin('base_supplier_sale as b', 'a.id=b.supplier_id')
- ->where($where)
- ->count();
- $page_arr = $base_area->getPage($total_row, $page_size, $current_page);
- $data = [
- 'list' => $list,
- 'page_size_arr' => [10, 30, 50, 100],
- 'page' => [
- 'page_size' => $page_size,
- 'current_page' => $current_page,
- 'total_row' => $total_row,
- 'total_page' => ceil($total_row / $page_size)
- ],
- 'page_arr' => $page_arr
- ];
- return $data;
- }
-
- /*
- * 根据渠道ID查询其对应运营主体
- */
- public function check_main_corp($supplier_id)
- {
- $result = self::find()->select('REFLECT_MAIN_CORP')->from(self::tableName())->where(['ID' => $supplier_id])->asArray()->one();
- return $result['REFLECT_MAIN_CORP'];
- }
-
- public function getdepart_status()
- {
- return $this->hasOne(DictType::className(), ['ID' => 'STATUS']);
- }
-
- /**
- * Des:获取供应商列表
- * Name: getSupplierList
- * @author 倪宗锋
- */
- public function getSupplierList()
- {
- $base_user = new BaseUser();
- $user_main_corp = $base_user->getMainCorp();
- $result = self::find()
- ->select([
- 'org_id' => 'id',
- 'org_name' => 'supplier_name',
- ])
- ->where([
- 'and',
- ['=', 'cancel_flag', 0],
- ['=', 'is_disabled', 0],
- ['=', 'supplier_type', 187],
- ['or', ['=', 'main_corp_id', $user_main_corp], ['=', 'main_corp_id', 0],['!=', 'reflect_main_corp', 0]]
- ])
- ->orderBy('SUPPLIER_NAME')
- ->asArray()->all();
- return $result;
- }
-
- public function getChannelList()
- {
- $base_user = new BaseUser();
- $user_main_corp = $base_user->getMainCorp();
- $result = self::find()
- ->select([
- 'org_id' => 'id',
- 'org_name' => 'supplier_name',
- ])
- ->where([
- 'and',
- ['=', 'cancel_flag', 0],
- ['=', 'is_disabled', 0],
- ['=', 'supplier_type', 301],
- ['or', ['=', 'main_corp_id', $user_main_corp], ['=', 'main_corp_id', 0],['!=', 'reflect_main_corp', 0]]
- ])
- ->orderBy('SUPPLIER_NAME')
- ->asArray()->all();
- return $result;
- }
-
- /**
- * Des:获取门票供应商列表
- * Name: getSupplierList
- * @author 邱颂
- */
- public function getProductSupplierList()
- {
- $base_user = new BaseUser();
- $user_main_corp = $base_user->getMainCorp();
- $result = self::find()
- ->select([
- 'org_id' => 'base_supplier.id',
- 'org_name' => 'base_supplier.supplier_name',
- ])
- ->from(self::tableName())
- ->innerJoin("base_supplier_purchase","base_supplier_purchase.supplier_id=base_supplier.id")
- ->where([
- 'and',
- ['=', 'base_supplier.cancel_flag', 0],
- ['=', 'base_supplier.is_disabled', 0],
- ['=', 'base_supplier.supplier_type', 187],
- ['=', 'base_supplier_purchase.product_type', 311],
- ['or', ['=', 'base_supplier.main_corp_id', $user_main_corp], ['=', 'base_supplier.main_corp_id', 0]]
- ])
- ->orderBy('SUPPLIER_NAME')
- ->asArray()->all();
- return $result;
-
- }
-
-
- public function getBaseSupplierPurchase()
- {
- return $this->hasMany(BaseSupplierPurchase::className(), ['SUPPLIER_ID' => 'ID'])->where(['CANCEL_FLAG' => 0]);
- }
-
- /**
- * Des:获取所有车队信息
- * Name: getFleetList
- * @return array
- * @author 倪宗锋
- */
- public function getFleetList()
- {
- $sql_where = [
- 'and',
- ['=', 's.cancel_flag', 0],
- ['=', 's.supplier_type', 187],
- ['=', 'p.cancel_flag', 0],
- ['=', 'p.product_type', 259]
- ];
- $motorcade_info = self::find()->select('p.supplier_id,s.supplier_name,s.supplier_code')
- ->from(['s' => self::tableName()])
- ->leftJoin(BaseSupplierPurchase::tableName() . ' as p', 's.id = p.supplier_id')
- ->where($sql_where)->groupBy('s.id')
- ->asArray()
- ->all();
- return $motorcade_info;
- }
-
- /**
- * Function Description:获取渠道商的列表
- * Function Name: getChannelInfoList
- * @param $id
- * @param $supplier_name
- * @param $is_disabled
- * @param $page_size
- * @param $current_page
- *
- * @return array
- *
- * @author 李健
- */
- public function getChannelInfoList($id,$supplier_name,$is_disabled,$page_size,$current_page)
- {
- $where = ['and'];
- $where[] = ['=','cancel_flag',0];
- if(!empty($id)){
- $where[] = ['in','id',$id];
- }
-
- if (!empty($is_disabled) && $is_disabled != -1) {
- $where[] = ['=','is_disabled',$is_disabled];
- }elseif($is_disabled==0){
- $where[] = ['=','is_disabled',$is_disabled];
- }
-
- if (!empty($supplier_name)) {
- $where[] = " supplier_name like '%%" . $supplier_name . "%%' ";
- }
- $main_corp_id = isset($_COOKIE["user_main_corp"]) ? $_COOKIE["user_main_corp"] : 0;
- if( $main_corp_id == 0 ) {
- $main_corp_id = 1;
- }
- $where[] = ['in','main_corp_id',$main_corp_id];
- $where[] = ['=','supplier_type','301'];
-
- $select = [
- 'id',
- 'supplier_name',
- 'area_id',
- 'is_disabled',
- 'supplier_type',
- 'manage_type'
- ];
-
- $offset = ($current_page-1)*$page_size;
-
- $res = self::find()
- ->select($select)
- ->from(self::tableName())
- ->where($where)
- ->offset($offset)
- ->limit($page_size);
- $sql = $res->createCommand()->rawSql;
- $data = $res->asArray()->all();
- return [
- 'sql'=>$sql,
- 'data'=>$data
- ];
-
- }
-
- /**
- * Function Description:获取渠道商总数
- * Function Name: getChannelInfoCount
- * @param $id
- * @param $supplier_name
- * @param $is_disabled
- *
- * @return int|string
- *
- * @author 李健
- */
- public function getChannelInfoCount($id,$supplier_name,$is_disabled)
- {
- $where = ['and'];
- $where[] = ['=','cancel_flag',0];
- if(!empty($id)){
- $where[] = ['in','id',$id];
- }
-
- if (!empty($is_disabled) && $is_disabled != -1) {
- $where[] = ['=','is_disabled',$is_disabled];
- }elseif($is_disabled==0){
- $where[] = ['=','is_disabled',$is_disabled];
- }
-
- if (!empty($supplier_name)) {
- $where[] = " supplier_name like '%%" . $supplier_name . "%%' ";
- }
- $main_corp_id = isset($_COOKIE["user_main_corp"]) ? $_COOKIE["user_main_corp"] : 0;
- if( $main_corp_id == 0 ) {
- $main_corp_id = 1;
- }
- $where[] = ['in','main_corp_id',$main_corp_id];
- $where[] = ['=','supplier_type','301'];
-
- $select = [
- 'id',
- 'supplier_name',
- 'area_id',
- 'is_disabled',
- 'supplier_type',
- 'manage_type'
- ];
-
- $count = self::find()
- ->select($select)
- ->from(self::tableName())
- ->where($where)
- ->count();
- return $count;
-
- }
-
- /**
- * Function Description:检查渠道商民是否存在
- * Function Name: getCheckSupplierName
- * @param $supplier_name
- * @param $main_corp_id
- * @param int $supplier_type
- * @param string $supplier_id
- *
- * @return array
- *
- * @author 李健
- */
- public function getCheckSupplierName($supplier_name,$main_corp_id,$supplier_type=301,$supplier_id='')
- {
- $select = ['supplier_name'];
- $where = ['and'];
- $where[] = ['=','cancel_flag',0];
- $where[] = ['=','supplier_name',$supplier_name];
- $where[] = ['=','supplier_type',$supplier_type];
- $where[] = ['=','main_corp_id',$main_corp_id];
- if(!empty($supplier_id)){
- $where[] = ['!=','id',$supplier_id];
- }
-
- $res = self::find()->select($select)->from(self::tableName())->where($where);
- $sql = $res->createCommand()->rawSql;
- $data = $res->asArray()->all();
- return [
- 'sql'=>$sql,
- 'data'=>$data
- ];
- }
-
- /**
- * Function Description:插入渠道商
- * Function Name: insertChannel
- * @param $user_id
- * @param $time
- * @param supplier_type
- * @param $supplier_name
- * @param $area_id
- * @param $manage_type
- * @param $company_name
- * @param $id_card
- * @param $sett_type
- * @param $sett_frequency
- * @param $account_bank
- * @param $account_num
- * @param $account_name
- * @param $sales_man
- * @param $main_corp_id
- * @param $deduct_type
- * @param $alert_balance
- *
- * @return bool
- *
- * @author 李健
- */
- public function insertChannel($user_id, $time, $supplier_type, $supplier_name, $area_id, $manage_type, $company_name, $id_card, $sett_type, $sett_frequency, $account_bank , $account_num , $account_name, $sales_man, $main_corp_id , $deduct_type, $alert_balance)
- {
- try {
- $this->CREATE_USER_ID = $user_id;
- $this->CREATE_TIME = $time;
- $this->SUPPLIER_TYPE = $supplier_type;
- $this->SUPPLIER_NAME = $supplier_name;
- $this->AREA_ID = $area_id;
- $this->MANAGE_TYPE = $manage_type;
- $this->COMPANY_NAME = $company_name;
- $this->ID_CARD = $id_card;
- $this->IS_DISABLED = 0;
- $this->SETT_TYPE = $sett_type;
- $this->SETT_FREQUENCY = $sett_frequency;
- $this->ACCOUNT_BANK = $account_bank;
- $this->ACCOUNT_NUM = $account_num;
- $this->ACCOUNT_NAME = $account_name;
- $this->SALES_MAN = $sales_man;
- $this->MAIN_CORP_ID = $main_corp_id;
- $this->DEDUCT_TYPE = $deduct_type;
- $this->ALERT_BALANCE = $alert_balance;
- $this->save();
- return Yii::$app->db->lastInsertID;
- } catch (Exception $e) {
- return false;
- }
- }
-
- /**
- * Function Description:插入供应商
- * Function Name: insertSupplier
- * @param $user_id
- * @param $time
- * @param $supplier_type
- * @param $supplier_name
- * @param $area_id
- * @param $company_name
- * @param $sett_type
- * @param $sett_frequency
- * @param $account_bank
- * @param $account_num
- * @param $account_name
- * @param $main_corp_id
- * @param $deduct_type
- * @param $alert_balance
- *
- * @return bool
- *
- * @author 李健
- */
- public function insertSupplier($user_id, $time, $supplier_type, $supplier_name, $area_id, $company_name, $sett_type, $sett_frequency, $account_bank , $account_num , $account_name, $main_corp_id , $deduct_type, $alert_balance)
- {
- try {
- $this->CREATE_USER_ID = $user_id;
- $this->CREATE_TIME = $time;
- $this->SUPPLIER_TYPE = $supplier_type;
- $this->SUPPLIER_NAME = $supplier_name;
- $this->AREA_ID = $area_id;
- $this->COMPANY_NAME = $company_name;
- $this->IS_DISABLED = 0;
- $this->SETT_TYPE = $sett_type;
- $this->SETT_FREQUENCY = $sett_frequency;
- $this->ACCOUNT_BANK = $account_bank;
- $this->ACCOUNT_NUM = $account_num;
- $this->ACCOUNT_NAME = $account_name;
- $this->MAIN_CORP_ID = $main_corp_id;
- $this->DEDUCT_TYPE = $deduct_type;
- $this->ALERT_BALANCE = $alert_balance;
- return $this->save();
- } catch (Exception $e) {
- return false;
- }
- }
-
- /**
- * Function Description:获取渠道商信息
- * Function Name: getChannel
- * @param $channel_id
- *
- * @return array|\yii\db\ActiveRecord[]
- *
- * @author 李健
- */
- public function getChannel($channel_id)
- {
- $select = [
- 'id',
- 'supplier_name',
- 'area_id',
- 'manage_type',
- 'company_name',
- 'id_card',
- 'sett_type',
- 'sett_frequency',
- 'account_bank',
- 'account_num',
- 'account_name',
- 'sales_man',
- 'deduct_type',
- 'alert_balance'
- ];
- $where = ['and'];
- $where[] = ['=','cancel_flag',0];
- $where[] = ['=','id',$channel_id];
-
- $res = self::find()
- ->select($select)
- ->from(self::tableName())
- ->where($where)
- ->asArray()
- ->all();
- return $res;
- }
-
- /**
- * Function Description:根据渠道号获取渠道结算方式
- * Function Name: getSettType
- * @param $id
- *
- * @return mixed
- *
- * @author 娄梦宁
- */
- public function getSettType($id){
- $result=self::find()->select('sett_type')->from(self::tableName())->where(['id'=>$id])->asArray()->one();
- return $result['sett_type'];
- }
-
- /**
- * Function Description:修改属性
- * Function Name: updateInfo
- * @param id
- * @param $data
- *
- * @return bool
- *
- * @author 李健
- */
- public function updateInfo($id,$data)
- {
- try {
- $obj = self::findOne($id);
- $obj->attributes = $data;
- return $obj->save();
- } catch (Exception $e) {
- return false;
- }
-
- }
-
- /**
- * Function Description:改变状态
- * Function Name: changeStatus
- * @param $user_id
- * @param $time
- * @param $is_disabled
- * @param $channel_id
- *
- * @return bool|int
- *
- * @author 李健
- */
- public function changeStatus($user_id,$time,$is_disabled,$channel_id)
- {
- try {
- return self::updateAll(['update_user_id' => $user_id,'update_time'=>$time,'is_disabled'=>$is_disabled],['id'=>$channel_id]);
- } catch (Exception $e) {
- return false;
- }
- }
-
- /**
- * Function Description:获取MainCorpId
- * Function Name: getMainCorpId
- * @param $supplier_id
- *
- * @return array|\yii\db\ActiveRecord[]
- *
- * @author 李健
- */
- public function getMainCorpId($supplier_id)
- {
- $select = ['main_corp_id'];
- $where = ['and'];
- $where[] = ['=','cancel_flag',0];
- $where[] = ['=','id',$supplier_id];
- $res = self::find()->select($select)->from(self::tableName())->where($where)->asArray()->all();
- return $res;
- }
-
- /**
- * Function Description:获得渠道商类型
- * Function Name: getProductType
- * @param $supplier_id
- *
- * @return array|\yii\db\ActiveRecord[]
- *
- * @author 李健
- */
- public function getProductType($supplier_id)
- {
- $select = [
- 'b.product_type as product_type'
- ];
- $where = ['and'];
- $where[] = ['=','a.cancel_flag',0];
- $where[] = ['=','b.cancel_flag',0];
- $where[] = ['=','b.product_type',25];
- $where[] = ['=','a.id',$supplier_id];
-
- $res = self::find()
- ->select($select)
- ->from(self::tableName().' a')
- ->innerJoin(BaseSupplierPurchase::tableName().' b','a.id=b.supplier_id')
- ->where($where)
- ->asArray()
- ->all();
- return $res;
- }
-
- /**
- * Function Description:获取供应商信息
- * Function Name: getSupplierInfo
- * @param $supplier_name
- * @param $is_disabled
- * @param $supplier_id
- * @param $page_size
- * @param $current
- *
- * @return array|\yii\db\ActiveRecord[]
- *
- * @author 李健
- */
- public function getSupplierInfo($supplier_name, $is_disabled,$supplier_id,$page_size,$current)
- {
- $select = [
- 'id',
- 'supplier_name',
- 'area_id',
- 'is_disabled',
- 'supplier_type'
- ];
- $where = ['and'];
- $where[] = ['=','cancel_flag',0];
- $where[] = ['=','supplier_type',187];
- if (!empty($is_disabled) && $is_disabled != -1) {
- $where[] = ['=','is_disabled',$is_disabled];
- }elseif($is_disabled==0){
- $where[] = ['=','is_disabled',$is_disabled];
- }
-
- if (!empty($supplier_name)) {
- $where[] = " supplier_name like '%%" . $supplier_name . "%%' ";
- }
- $main_corp_id = Yii::$app->request->cookies->getValue('user_main_corp',0);
- if( $main_corp_id != 0 ) {
- $main_corp_id = explode(',',$main_corp_id);
- $where[] = ['in','main_corp_id',$main_corp_id];
- }
-
- if(!empty($supplier_id)){
- $where[] = ['in','id',$supplier_id];
- }
-
- $offset = ($current - 1) * $page_size;
-
- $res = self::find()
- ->select($select)
- ->from(self::tableName())
- ->where($where)
- ->offset($offset)
- ->limit($page_size)
- ->asArray()
- ->all();
-
- return $res;
- }
-
- /**
- * Function Description:获取供应商总数
- * Function Name: getSupplierCount
- * @param $supplier_name
- * @param $is_disabled
- * @param $supplier_id
- *
- * @return int|string
- *
- * @author 李健
- */
- public function getSupplierCount($supplier_name, $is_disabled,$supplier_id)
- {
- $where = ['and'];
- $where[] = ['=','a.cancel_flag',0];
- $where[] = ['=','b.cancel_flag',0];
- $where[] = ['=','a.supplier_type',187];
- if (!empty($is_disabled) && $is_disabled != -1) {
- $where[] = ['=','is_disabled',$is_disabled];
- }elseif($is_disabled==0){
- $where[] = ['=','is_disabled',$is_disabled];
- }
-
- if (!empty($supplier_name)) {
- $where[] = " a.supplier_name like '%%" . $supplier_name . "%%' ";
- }
- $main_corp_id = Yii::$app->request->cookies->getValue('user_main_corp',0);
- if( $main_corp_id != 0 ) {
- $main_corp_id = explode(',',$main_corp_id);
- $where[] = ['in','a.main_corp_id',$main_corp_id];
- }
-
- if(!empty($supplier_id)){
- $where[] = ['in','a.id',$supplier_id];
- }
-
- $res = self::find()
- ->select('a.id')
- ->from(self::tableName().' a')
- ->innerJoin(BaseSupplierPurchase::tableName().' b','a.id=b.supplier_id')
- ->where($where)
- ->groupBy('b.supplier_id')
- ->count();
- return $res;
- }
-
- /**
- * Function Description:获取供应商信息
- * Function Name: getSupplier
- * @param $supply_id
- *
- * @return array|\yii\db\ActiveRecord[]
- *
- * @author 李健
- */
- public function getSupplier($supply_id)
- {
- $select = [
- 'supplier_name',
- 'area_id',
- 'company_name',
- 'sett_type',
- 'sett_frequency',
- 'account_bank',
- 'account_num',
- 'account_name',
- 'deduct_type',
- 'alert_balance'
- ];
- $where = ['and'];
- $where[] = ['=','cancel_flag',0];
- $where[] = ['=','id',$supply_id];
-
- $res = self::find()
- ->select($select)
- ->from(self::tableName())
- ->where($where)
- ->asArray()
- ->all();
- return $res;
- }
-
- /**
- * Function Description:修改供应商
- * Function Name: changeSupplier
- * @param $id
- * @param $data
- *
- * @return bool
- *
- * @author 李健
- */
- public function changeSupplier($id,$data)
- {
- try {
- $obj = self::findOne($id);
- $obj->attributes = $data;
- return $obj->save();
- } catch (Exception $e) {
- return false;
- }
- }
-
- /**
- * Function Description:获取订单的id
- * Function Name: getOrderOrg
- * @param $main_corp_id
- *
- * @return array|\yii\db\ActiveRecord[]
- *
- * @author 李健
- */
- public function getOrderOrg($main_corp_id)
- {
- $select = [
- 'ID as org_id',
- 'supplier_name as source',
- ];
- $where = ['and'];
- $where[] = ['=','cancel_flag',0];
- $where[] = ['=','SUPPLIER_TYPE',301];
- if( $main_corp_id > 0 ) {
- $where[] = "MAIN_CORP_ID IN(0,{$main_corp_id}) ";
- }
- if( $main_corp_id != 3 ) {
- $where[] = "MAIN_CORP_ID NOT IN(3) ";
- }
-
- $res = self::find()
- ->select($select)
- ->from(self::tableName())
- ->where($where)
- ->asArray()
- ->all();
- return $res;
- }
-
- /**
- * Function Description:得到所有可售票的渠道商
- * Function Name: getAllToOrg
- *
- * @return array|\yii\db\ActiveRecord[]
- *
- * @author 冒炎
- */
- public function getAllToOrg(){
- $select = [
- 'id'=>'a.id',
- 'supplier_name'=>'a.supplier_name'
- ];
- $main_corp_id = isset($_COOKIE["user_main_corp"]) ? $_COOKIE["user_main_corp"] : 0;
- if( $main_corp_id == 0 ) {
- $main_corp_id = 1;
- }
- $list = self::find()
- ->select($select)
- ->from(self::tableName() . ' a')
- ->innerJoin('base_supplier_sale as b','a.id = b.supplier_id and b.cancel_flag = 0 and b.PARENT_TYPE = 311')
- ->where(['and',['=','a.cancel_flag',0],['=','a.IS_DISABLED',0],['=','a.SUPPLIER_TYPE',301],['!=','a.STATUS',612],['in','a.main_corp_id',$main_corp_id]])
- ->asArray()
- ->all();
- return $list;
- }
-
- /**
- * Function Description:获取自由行渠道商
- * Function Name: getTouristOrg
- *
- * @return array|\yii\db\ActiveRecord[]
- *
- * @author 冒炎
- */
- public function getTouristOrg(){
- $select = [
- 'id'=>'a.id',
- 'supplier_name'=>'a.supplier_name'
- ];
- $main_corp_id = isset($_COOKIE["user_main_corp"]) ? $_COOKIE["user_main_corp"] : 0;
- if( $main_corp_id == 0 ) {
- $main_corp_id = 1;
- }
- $list = self::find()
- ->select($select)
- ->from(self::tableName() . ' a')
- ->innerJoin('base_supplier_sale as b','a.id = b.supplier_id and b.cancel_flag = 0')
- ->where(['and',['=','a.cancel_flag',0],['=','a.IS_DISABLED',0],['=','a.SUPPLIER_TYPE',301],['!=','a.STATUS',612],['in','a.main_corp_id',$main_corp_id]])
- ->asArray()
- ->all();
- return $list;
- }
- }
|