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.
 
 
 
 
 
 

249 line
7.1 KiB

  1. <?php
  2. namespace backend\modules\zzcs\models;
  3. use yii\db\ActiveRecord;
  4. use yii\db\Exception;
  5. use yii\db\Expression;
  6. /**
  7. * This is the model class for table "base_supplier_sale".
  8. *
  9. * @property integer $ID
  10. * @property integer $CREATE_USER_ID
  11. * @property string $CREATE_TIME
  12. * @property integer $UPDATE_USER_ID
  13. * @property string $UPDATE_TIME
  14. * @property integer $CANCEL_FLAG
  15. * @property integer $SUPPLIER_ID
  16. * @property integer $PROD_SUPPLIER_ID
  17. * @property integer $PRODUCT_TYPE
  18. * @property integer $PARENT_TYPE
  19. * @property integer $SALE_TYPE
  20. * @property integer $COMMISION_FLAG
  21. * @property integer $COMMISION_TYPE
  22. * @property integer $BACK_COMMISION_TYPE
  23. * @property integer $BACK_COMMISION_METHOD
  24. * @property string $BACK_PERCENT
  25. * @property string $BACK_VALUE
  26. */
  27. class BaseSupplierSale extends ActiveRecord
  28. {
  29. /**
  30. * @inheritdoc
  31. */
  32. public static function tableName()
  33. {
  34. return 'base_supplier_sale';
  35. }
  36. /**
  37. * @inheritdoc
  38. */
  39. public function rules()
  40. {
  41. return [
  42. [['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'],
  43. [['UPDATE_TIME', 'CREATE_TIME'], 'safe'],
  44. [['BACK_PERCENT', 'BACK_VALUE'], 'number'],
  45. [['CREATE_TIME'], 'string', 'max' => 20],
  46. ];
  47. }
  48. /**
  49. * @inheritdoc
  50. */
  51. public function attributeLabels()
  52. {
  53. return [
  54. 'ID' => 'ID',
  55. 'CREATE_USER_ID' => 'Create User ID',
  56. 'CREATE_TIME' => 'Create Time',
  57. 'UPDATE_USER_ID' => 'Update User ID',
  58. 'UPDATE_TIME' => 'Update Time',
  59. 'CANCEL_FLAG' => 'Cancel Flag',
  60. 'SUPPLIER_ID' => 'Supplier ID',
  61. 'PROD_SUPPLIER_ID' => 'Prod Supplier ID',
  62. 'PRODUCT_TYPE' => 'Product Type',
  63. 'PARENT_TYPE' => 'Parent Type',
  64. 'SALE_TYPE' => 'Sale Type',
  65. 'COMMISION_FLAG' => 'Commision Flag',
  66. 'COMMISION_TYPE' => 'Commision Type',
  67. 'BACK_COMMISION_TYPE' => 'Back Commision Type',
  68. 'BACK_COMMISION_METHOD' => 'Back Commision Method',
  69. 'BACK_PERCENT' => 'Back Percent',
  70. 'BACK_VALUE' => 'Back Value',
  71. ];
  72. }
  73. /**
  74. * Function Description:获取渠道基础信息
  75. * Function Name: getInfo
  76. * @param $product_type
  77. *
  78. * @return array
  79. *
  80. * @author 李健
  81. */
  82. public function getInfo($product_type)
  83. {
  84. $where = ['and'];
  85. $where[] = ['=','cancel_flag',0];
  86. if (!empty($product_type) && $product_type != -1)//如果选了采购类型
  87. {
  88. $where[] = ['or',['=','product_type',$product_type],['=','parent_type',$product_type]];
  89. }
  90. $select = [
  91. 'supplier_id',
  92. 'product_type',
  93. 'parent_type'
  94. ];
  95. $data = self::find()
  96. ->select($select)
  97. ->from(self::tableName())
  98. ->where($where)
  99. ->groupBy('supplier_id');
  100. $sql = $data->createCommand()->rawSql;
  101. $data = $data->asArray()->all();
  102. return [
  103. 'sql'=>$sql,
  104. 'data'=>$data
  105. ];
  106. }
  107. /**
  108. * Function Description:获取渠道商销售种类
  109. * Function Name: getProductType
  110. * @param $id_array
  111. *
  112. * @return array
  113. *
  114. * @author 李健
  115. */
  116. public function getProductType($id_array)
  117. {
  118. $select = [
  119. 'product_type' => new Expression('group_concat(product_type)'),
  120. 'parent_type' => new Expression('group_concat(parent_type)'),
  121. 'supplier_id'
  122. ];
  123. $where = ['and'];
  124. $where[] = ['=','cancel_flag',0];
  125. $where[] = ['in','supplier_id',$id_array];
  126. $res = self::find()
  127. ->select($select)
  128. ->from(self::tableName())
  129. ->where($where)
  130. ->groupBy('supplier_id');
  131. $sql = $res->createCommand()->rawSql;
  132. $data = $res->asArray()->all();
  133. return [
  134. 'sql'=>$sql,
  135. 'data'=>$data
  136. ];
  137. }
  138. /**
  139. * Function Description:插入信息
  140. * Function Name: insertInfo
  141. * @param $user_id
  142. * @param $time
  143. * @param $supplier_id
  144. * @param $prod_supplier_id
  145. * @param $product_type
  146. * @param $parent_type
  147. * @param $sale_type
  148. * @param $commision_flag
  149. * @param $commision_type
  150. * @param $back_commision_type
  151. * @param $back_commision_method
  152. * @param $back_percent
  153. * @param $back_value
  154. *
  155. * @return bool
  156. *
  157. * @author 李健
  158. */
  159. 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)
  160. {
  161. try {
  162. $this->CREATE_USER_ID = $user_id;
  163. $this->CREATE_TIME = $time;
  164. $this->SUPPLIER_ID = $supplier_id;
  165. $this->PROD_SUPPLIER_ID = $prod_supplier_id;
  166. $this->PRODUCT_TYPE = $product_type;
  167. $this->PARENT_TYPE = $parent_type;
  168. $this->SALE_TYPE = $sale_type;
  169. $this->COMMISION_FLAG = $commision_flag;
  170. $this->COMMISION_TYPE = $commision_type;
  171. $this->BACK_COMMISION_TYPE = $back_commision_type;
  172. $this->BACK_COMMISION_METHOD = $back_commision_method;
  173. $this->BACK_PERCENT = $back_percent;
  174. $this->BACK_VALUE = $back_value;
  175. return $this->save();
  176. } catch (Exception $e) {
  177. return false;
  178. }
  179. }
  180. /**
  181. * Function Description:获取销售信息
  182. * Function Name: getSaleInfo
  183. * @param $channel_id
  184. *
  185. * @return array|ActiveRecord[]
  186. *
  187. * @author 李健
  188. */
  189. public function getSaleInfo($channel_id)
  190. {
  191. $select = [
  192. 'id',
  193. 'prod_supplier_id',
  194. 'product_type',
  195. 'parent_type',
  196. 'sale_type',
  197. 'commision_flag',
  198. 'commision_type',
  199. 'back_commision_type',
  200. 'back_commision_method',
  201. 'back_percent',
  202. 'back_value'
  203. ];
  204. $where = ['and'];
  205. $where[] = ['=','cancel_flag',0];
  206. $where[] = ['=','supplier_id',$channel_id];
  207. $res = self::find()
  208. ->select($select)
  209. ->from(self::tableName())
  210. ->where($where)
  211. ->asArray()
  212. ->all();
  213. return $res;
  214. }
  215. /**
  216. * Function Description:修改信息
  217. * Function Name: updateInfo
  218. * @param $id
  219. * @param $data
  220. *
  221. * @return bool|static
  222. *
  223. * @author 李健
  224. */
  225. public function updateInfo($id,$data)
  226. {
  227. try {
  228. $obj = self::findOne($id);
  229. $obj->attributes = $data;
  230. return $obj->save();
  231. } catch (Exception $e) {
  232. return false;
  233. }
  234. }
  235. }