|
- <?php
-
- namespace backend\modules\zzcs\models;
-
- use yii\db\ActiveRecord;
- use yii\db\Exception;
- use yii\db\Expression;
-
- /**
- * This is the model class for table "base_supplier_sale".
- *
- * @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 $SUPPLIER_ID
- * @property integer $PROD_SUPPLIER_ID
- * @property integer $PRODUCT_TYPE
- * @property integer $PARENT_TYPE
- * @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
- */
- class BaseSupplierSale extends ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return 'base_supplier_sale';
- }
-
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['CREATE_USER_ID', 'UPDATE_USER_ID', 'CANCEL_FLAG', 'SUPPLIER_ID', 'PROD_SUPPLIER_ID', 'PRODUCT_TYPE', 'PARENT_TYPE', 'SALE_TYPE', 'COMMISION_FLAG', 'COMMISION_TYPE', 'BACK_COMMISION_TYPE', 'BACK_COMMISION_METHOD'], 'integer'],
- [['UPDATE_TIME', 'CREATE_TIME'], 'safe'],
- [['BACK_PERCENT', 'BACK_VALUE'], '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',
- 'SUPPLIER_ID' => 'Supplier ID',
- 'PROD_SUPPLIER_ID' => 'Prod Supplier ID',
- 'PRODUCT_TYPE' => 'Product Type',
- 'PARENT_TYPE' => 'Parent Type',
- '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',
- ];
- }
-
- /**
- * Function Description:获取渠道基础信息
- * Function Name: getInfo
- * @param $product_type
- *
- * @return array
- *
- * @author 李健
- */
- public function getInfo($product_type)
- {
- $where = ['and'];
- $where[] = ['=','cancel_flag',0];
- if (!empty($product_type) && $product_type != -1)//如果选了采购类型
- {
- $where[] = ['or',['=','product_type',$product_type],['=','parent_type',$product_type]];
- }
- $select = [
- 'supplier_id',
- 'product_type',
- 'parent_type'
- ];
- $data = self::find()
- ->select($select)
- ->from(self::tableName())
- ->where($where)
- ->groupBy('supplier_id');
- $sql = $data->createCommand()->rawSql;
- $data = $data->asArray()->all();
- return [
- 'sql'=>$sql,
- 'data'=>$data
- ];
- }
-
- /**
- * Function Description:获取渠道商销售种类
- * Function Name: getProductType
- * @param $id_array
- *
- * @return array
- *
- * @author 李健
- */
- public function getProductType($id_array)
- {
- $select = [
- 'product_type' => new Expression('group_concat(product_type)'),
- 'parent_type' => new Expression('group_concat(parent_type)'),
- 'supplier_id'
- ];
- $where = ['and'];
- $where[] = ['=','cancel_flag',0];
- $where[] = ['in','supplier_id',$id_array];
-
- $res = self::find()
- ->select($select)
- ->from(self::tableName())
- ->where($where)
- ->groupBy('supplier_id');
-
- $sql = $res->createCommand()->rawSql;
- $data = $res->asArray()->all();
- return [
- 'sql'=>$sql,
- 'data'=>$data
- ];
- }
-
- /**
- * Function Description:插入信息
- * Function Name: insertInfo
- * @param $user_id
- * @param $time
- * @param $supplier_id
- * @param $prod_supplier_id
- * @param $product_type
- * @param $parent_type
- * @param $sale_type
- * @param $commision_flag
- * @param $commision_type
- * @param $back_commision_type
- * @param $back_commision_method
- * @param $back_percent
- * @param $back_value
- *
- * @return bool
- *
- * @author 李健
- */
- public function insertInfo($user_id,$time, $supplier_id,$prod_supplier_id,$product_type,$parent_type,$sale_type,$commision_flag,$commision_type,$back_commision_type,$back_commision_method,$back_percent,$back_value)
- {
- try {
- $this->CREATE_USER_ID = $user_id;
- $this->CREATE_TIME = $time;
- $this->SUPPLIER_ID = $supplier_id;
- $this->PROD_SUPPLIER_ID = $prod_supplier_id;
- $this->PRODUCT_TYPE = $product_type;
- $this->PARENT_TYPE = $parent_type;
- $this->SALE_TYPE = $sale_type;
- $this->COMMISION_FLAG = $commision_flag;
- $this->COMMISION_TYPE = $commision_type;
- $this->BACK_COMMISION_TYPE = $back_commision_type;
- $this->BACK_COMMISION_METHOD = $back_commision_method;
- $this->BACK_PERCENT = $back_percent;
- $this->BACK_VALUE = $back_value;
- return $this->save();
- } catch (Exception $e) {
- return false;
- }
- }
-
- /**
- * Function Description:获取销售信息
- * Function Name: getSaleInfo
- * @param $channel_id
- *
- * @return array|ActiveRecord[]
- *
- * @author 李健
- */
- public function getSaleInfo($channel_id)
- {
- $select = [
- 'id',
- 'prod_supplier_id',
- 'product_type',
- 'parent_type',
- 'sale_type',
- 'commision_flag',
- 'commision_type',
- 'back_commision_type',
- 'back_commision_method',
- 'back_percent',
- 'back_value'
- ];
- $where = ['and'];
- $where[] = ['=','cancel_flag',0];
- $where[] = ['=','supplier_id',$channel_id];
-
- $res = self::find()
- ->select($select)
- ->from(self::tableName())
- ->where($where)
- ->asArray()
- ->all();
- return $res;
- }
-
- /**
- * Function Description:修改信息
- * Function Name: updateInfo
- * @param $id
- * @param $data
- *
- * @return bool|static
- *
- * @author 李健
- */
- public function updateInfo($id,$data)
- {
- try {
- $obj = self::findOne($id);
- $obj->attributes = $data;
- return $obj->save();
- } catch (Exception $e) {
- return false;
- }
- }
- }
|