Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
 
 

286 righe
10 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. use yii;
  7. /**
  8. * This is the model class for table "opera_tickets_distrib".
  9. *
  10. * @property integer $ID
  11. * @property integer $CREATE_USER_ID
  12. * @property string $CREATE_TIME
  13. * @property integer $UPDATE_USER_ID
  14. * @property string $UPDATE_TIME
  15. * @property integer $CANCEL_FLAG
  16. * @property integer $LINE_ID
  17. * @property integer $TICKET_ID
  18. * @property integer $SUPPLIER_ID
  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. * @property string $PROD_PRICE
  27. * @property integer $AUTHORITY_STATUS
  28. */
  29. class OperaTicketsDistrib extends ActiveRecord
  30. {
  31. /**
  32. * @inheritdoc
  33. */
  34. public static function tableName()
  35. {
  36. return 'opera_tickets_distrib';
  37. }
  38. /**
  39. * @inheritdoc
  40. */
  41. public function rules()
  42. {
  43. return [
  44. [['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'],
  45. [['CREATE_TIME'], 'required'],
  46. [['UPDATE_TIME'], 'safe'],
  47. [['BACK_PERCENT', 'BACK_VALUE', 'PROD_PRICE'], 'number'],
  48. [['CREATE_TIME'], 'string', 'max' => 20],
  49. ];
  50. }
  51. /**
  52. * @inheritdoc
  53. */
  54. public function attributeLabels()
  55. {
  56. return [
  57. 'ID' => 'ID',
  58. 'CREATE_USER_ID' => 'Create User ID',
  59. 'CREATE_TIME' => 'Create Time',
  60. 'UPDATE_USER_ID' => 'Update User ID',
  61. 'UPDATE_TIME' => 'Update Time',
  62. 'CANCEL_FLAG' => 'Cancel Flag',
  63. 'LINE_ID' => 'Line ID',
  64. 'TICKET_ID' => 'Ticket ID',
  65. 'SUPPLIER_ID' => 'Supplier ID',
  66. 'SALE_TYPE' => 'Sale Type',
  67. 'COMMISION_FLAG' => 'Commision Flag',
  68. 'COMMISION_TYPE' => 'Commision Type',
  69. 'BACK_COMMISION_TYPE' => 'Back Commision Type',
  70. 'BACK_COMMISION_METHOD' => 'Back Commision Method',
  71. 'BACK_PERCENT' => 'Back Percent',
  72. 'BACK_VALUE' => 'Back Value',
  73. 'PROD_PRICE' => 'Prod Price',
  74. 'AUTHORITY_STATUS' => 'Authority Status',
  75. ];
  76. }
  77. /**
  78. * Function Description:获取渠道销售规则
  79. * Function Name: getDistribInfo
  80. * @param $supplier_id
  81. * @param $sale_id
  82. * @param $ticket_id
  83. * @param $is_agent
  84. * @param $user_main_corp_id
  85. *
  86. * @return array|null|ActiveRecord
  87. *
  88. * @author 娄梦宁
  89. */
  90. public function getDistribInfo($supplier_id,$sale_id,$ticket_id,$is_agent,$user_main_corp_id){
  91. if($is_agent==1){//代售入口进入
  92. $left_join='opera_tickets_agent b';
  93. }else{
  94. $left_join='opera_tickets b';
  95. }
  96. //查询自有的销售规则
  97. $where=['and',['=','a.cancel_flag',0],['=','b.cancel_flag',0],['=','a.ticket_id',$ticket_id],['=','a.supplier_id',$supplier_id]];
  98. if($is_agent==1){
  99. $where[]=['=','to_main_corp_id',$user_main_corp_id];
  100. }
  101. $select=[
  102. 'a.supplier_id',
  103. 'supplier_name'=>'(select supplier_name from base_supplier where id=a.supplier_id limit 1)',
  104. 'a.sale_type',
  105. 'sale_name'=>'(select type_name from dict_type where id=a.sale_type limit 1)',
  106. 'a.prod_price',
  107. 'b.cus_price',
  108. 'a.commision_flag',
  109. 'a.commision_type',
  110. 'a.back_commision_type',
  111. 'a.back_commision_method',
  112. '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,'%','元')),'')",
  113. 'a.authority_status',
  114. 'back_commision_value'=>"if(a.back_percent=0,a.back_value,a.back_percent)",
  115. ];
  116. $result1=self::find()->select($select)
  117. ->from(self::tableName().' a')
  118. ->leftJoin($left_join,'a.ticket_id=b.ticket_id')
  119. ->where($where)
  120. ->asArray()
  121. ->one();
  122. if(!empty($result1)){
  123. return $result1;
  124. }
  125. //没有自有销售规则。查出默认的渠道商规则
  126. $where=[
  127. 'and',
  128. ['=','b.ticket_id',$ticket_id],
  129. ['=','a.id',$supplier_id],
  130. ['=','c.id',$sale_id],
  131. ];
  132. if($is_agent==1){
  133. $where[]=['=','to_main_corp_id',$user_main_corp_id];
  134. }
  135. $select=[
  136. 'supplier_id'=>'a.id',
  137. 'a.supplier_name',
  138. 'c.sale_type',
  139. 'sale_name'=>'(select type_name from dict_type where id=c.sale_type limit 1)',
  140. 'b.prod_price',
  141. 'b.cus_price',
  142. 'c.commision_flag',
  143. 'c.commision_type',
  144. 'c.back_commision_type',
  145. 'c.back_commision_method',
  146. '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,'%','元')),'')",
  147. 'authority_status'=>new Expression('1'),
  148. 'back_commision_value'=>"if(back_percent=0,back_value,back_percent)",
  149. ];
  150. $result2=self::find()->select($select)
  151. ->from('base_supplier a')
  152. ->leftJoin($left_join,'0=0')
  153. ->leftJoin('base_supplier_sale as c','0=0')
  154. ->where($where)
  155. ->groupBy('a.id')
  156. ->asArray()
  157. ->one();
  158. return $result2;
  159. }
  160. /**
  161. * Function Description:修改售卖规则
  162. * Function Name: upt_distrib_sale_rule
  163. * @param $value
  164. *
  165. * @return bool
  166. *
  167. * @author 娄梦宁
  168. */
  169. public function upt_distrib_sale_rule($value){
  170. $cnt=self::find()->from(self::tableName())->where(['and',['=','ticket_id',(int)$value['TICKET_ID']],['=','SUPPLIER_ID',(int)$value['SUPPLIER_ID']]])
  171. ->count();
  172. $transaction=Yii::$app->db->beginTransaction();
  173. if($cnt==0){//没有就新增
  174. $cookies=Yii::$app->request->cookies;
  175. $user_id=$cookies->getValue('user_id');
  176. try{
  177. $value['CREATE_TIME']=date('Y-m-d H:i:s');
  178. $value['CREATE_USER_ID']=$user_id;
  179. $this->attributes=$value;
  180. $res=$this->insert();
  181. if(!$res){
  182. throw new Exception('添加出错');
  183. }
  184. $transaction->commit();
  185. return true;
  186. }catch (Exception $e){
  187. $transaction->rollBack();
  188. return false;
  189. }
  190. }else{//有就更新
  191. try {
  192. $base_one = self::findOne(['ticket_id'=>(int)$value['TICKET_ID'],'supplier_id'=>(int)$value['SUPPLIER_ID']]);
  193. $base_one->attributes = $value;
  194. $res = $base_one->update();
  195. if (!$res) {
  196. throw new Exception('修改出错');
  197. }
  198. $transaction->commit();
  199. return true;
  200. } catch (Exception $e) {
  201. # 回滚事务
  202. $transaction->rollBack();
  203. return false;
  204. }
  205. }
  206. }
  207. /*
  208. * 销售规则渠道表改变授权状态
  209. */
  210. public function change_authority_status($supplier_id,$ticket_id,$authority_status,$is_agent,$to_main_corp_id){
  211. if($is_agent){
  212. $price_table="(select prod_price from opera_tickets_agent where ticket_id = $ticket_id and to_main_corp_id =$to_main_corp_id)";
  213. }else{
  214. $price_table="(select prod_price from opera_tickets where ticket_id = $ticket_id)";
  215. }
  216. $cookies=Yii::$app->request->cookies;
  217. $user_id=$cookies->getValue('user_id');
  218. $cnt=self::find()->from(self::tableName())->where(['supplier_id'=>$supplier_id,'ticket_id'=>$ticket_id])->count();
  219. if($cnt==0){//没有数据新增
  220. $sql="INSERT INTO `opera_tickets_distrib` (
  221. `CREATE_USER_ID`,
  222. `CREATE_TIME`,
  223. `UPDATE_USER_ID`,
  224. `UPDATE_TIME`,
  225. `CANCEL_FLAG`,
  226. `LINE_ID`,
  227. `TICKET_ID`,
  228. `SUPPLIER_ID`,
  229. `SALE_TYPE`,
  230. `COMMISION_FLAG`,
  231. `COMMISION_TYPE`,
  232. `BACK_COMMISION_TYPE`,
  233. `BACK_COMMISION_METHOD`,
  234. `BACK_PERCENT`,
  235. `BACK_VALUE`,
  236. `PROD_PRICE`,
  237. `AUTHORITY_STATUS`
  238. )
  239. SELECT
  240. $user_id,
  241. now(),
  242. $user_id,
  243. now(),
  244. '0',
  245. (select line_id from opera_tickets where ticket_id=$ticket_id limit 1),
  246. $ticket_id,
  247. $supplier_id,
  248. SALE_TYPE,
  249. COMMISION_FLAG,
  250. COMMISION_TYPE,
  251. BACK_COMMISION_TYPE,
  252. BACK_COMMISION_METHOD,
  253. BACK_PERCENT,
  254. BACK_VALUE,
  255. $price_table,
  256. $authority_status
  257. 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";
  258. Yii::$app->db->createCommand($sql)->execute();
  259. }else{
  260. $value=[
  261. 'AUTHORITY_STATUS'=>$authority_status
  262. ];
  263. $where=[
  264. 'SUPPLIER_ID'=>$supplier_id,
  265. 'TICKET_ID'=>$ticket_id,
  266. 'CANCEL_FLAG'=>0,
  267. ];
  268. self::updateAll($value,$where);
  269. }
  270. }
  271. }