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.
 
 
 
 
 
 

336 lines
12 KiB

  1. <?php
  2. namespace backend\modules\zzcs\models;
  3. use Yii;
  4. use yii\db\Expression;
  5. /**
  6. * This is the model class for table "group_order_cost".
  7. *
  8. * @property integer $id
  9. * @property integer $order_title_id
  10. * @property integer $res_type
  11. * @property string $res_name
  12. * @property string $res_cost
  13. * @property string $sale_price
  14. * @property string $profit
  15. * @property string $profit_margin
  16. * @property string $create_time
  17. * @property string $update_time
  18. * @property integer $cancel_flag
  19. * @property integer $create_user_id
  20. */
  21. class GroupOrderCost extends \yii\db\ActiveRecord
  22. {
  23. /**
  24. * @inheritdoc
  25. */
  26. public static function tableName()
  27. {
  28. return 'group_order_cost';
  29. }
  30. /**
  31. * @inheritdoc
  32. */
  33. public function rules()
  34. {
  35. return [
  36. [['order_title_id', 'res_type', 'cancel_flag', 'create_user_id','order_id'], 'integer'],
  37. [['res_cost', 'sale_price', 'profit'], 'number'],
  38. [['res_name', 'profit_margin'], 'string', 'max' => 50],
  39. [['create_time', 'update_time','run_date'], 'string', 'max' => 20],
  40. ];
  41. }
  42. /**
  43. * @inheritdoc
  44. */
  45. public function attributeLabels()
  46. {
  47. return [
  48. 'id' => 'ID',
  49. 'order_title_id' => 'Order Title ID',
  50. 'res_type' => 'Res Type',
  51. 'res_cost' => 'Res Cost',
  52. 'res_name' => 'Res Name',
  53. 'sale_price' => 'Sale Price',
  54. 'profit' => 'Profit',
  55. 'profit_margin' => 'Profit Margin',
  56. 'create_time' => 'Create Time',
  57. 'update_time' => 'Update Time',
  58. 'cancel_flag' => 'Cancel Flag',
  59. 'create_user_id' => 'Create User ID',
  60. 'run_date' => 'Run Date',
  61. 'order_id' => 'Order Id',
  62. ];
  63. }
  64. /**
  65. * Function Description:插入数据
  66. * Function Name: IstGroupCost
  67. * @param $values
  68. *
  69. * @return bool
  70. *
  71. * @author 娄梦宁
  72. */
  73. public function IstGroupCost($values){
  74. $transaction=Yii::$app->db->beginTransaction();
  75. $tmp_group=clone $this;
  76. $tmp_group->attributes=$values;
  77. $res=$tmp_group->insert();
  78. if(!$res){
  79. $transaction->rollBack();
  80. return false;
  81. }
  82. $transaction->commit();
  83. return true;
  84. }
  85. /*
  86. * 获取组合订单成本数据
  87. */
  88. public function getInfo($order_title_id){
  89. $result=self::find()->select(['res_type','order_title_id','res_name','res_cost','sale_price','profit','profit_margin','order_id'])
  90. ->from(self::tableName())
  91. ->where(['and',['=','order_title_id',$order_title_id],['=','cancel_flag',0]])
  92. ->orderBy('res_type,id')
  93. ->asArray()
  94. ->all();
  95. $count=self::find()->select(['count(1) as cnt','sum(res_cost) as cost','sum(sale_price) as sale_price'])->from(self::tableName())
  96. ->where(['and',['=','order_title_id',$order_title_id],['=','cancel_flag',0],['=','res_type',1]])->asArray()->one();
  97. return ['res_list'=>$result,
  98. 'bus'=>$count];
  99. }
  100. /*
  101. * 更新巴士资源成本信息
  102. */
  103. public function uptBus($value,$where){
  104. self::updateAll($value,$where);
  105. }
  106. /*
  107. * 获取组合订单成本数据
  108. */
  109. public function getInfoResult($order_title_id){
  110. $result=self::find()->select(['res_type','order_title_id','res_name','res_cost','sale_price','profit','profit_margin','order_id','run_date'])
  111. ->from(self::tableName())
  112. ->where(['and',['=','order_title_id',$order_title_id],['=','cancel_flag',0]])
  113. ->orderBy('res_type,id')
  114. ->asArray()
  115. ->all();
  116. //处理结果集
  117. $new_arr=[];
  118. foreach($result as $key=>$val){
  119. if($val['res_type']==1){
  120. $new_arr['bus_arr'][$val['order_id']]=$result[$key];
  121. }elseif($val['res_type']==3){
  122. $new_arr['ticket_arr'][$val['order_id']]=$result[$key];
  123. }elseif($val['res_type']==2){
  124. $new_arr['hotel_arr'][$val['order_id']][$val['run_date']]=$result[$key];
  125. }else{
  126. $new_arr['total']=$result[$key];
  127. }
  128. }
  129. return $new_arr;
  130. }
  131. /*
  132. * 巴士资源取消
  133. */
  134. public function CancelBus($order_id,$order_title_id){
  135. self::updateAll(['cancel_flag'=>1],['order_id'=>$order_id,'order_title_id'=>$order_title_id,'res_type'=>1]);
  136. }
  137. /*
  138. * 巴士资源本来有,被取消了,。。。然后又加入了。。所用的接口
  139. */
  140. public function Cancel0Bus($order_id,$order_title_id){
  141. self::updateAll(['cancel_flag'=>0],['order_id'=>$order_id,'order_title_id'=>$order_title_id,'res_type'=>1]);
  142. }
  143. /*
  144. * 根据组合订单号获取门票产品总销售价
  145. */
  146. public function getSumTicketSalePrice($order_title_id){
  147. $result=self::find()->select('sum(sale_price) as price,count(1) as cnt,sum(res_cost) as res_cost')
  148. ->from(self::tableName())
  149. ->where(['and',['=','cancel_flag',0],['=','res_type',3],['=','order_title_id',$order_title_id]])
  150. ->asArray()
  151. ->one();
  152. return $result;
  153. }
  154. /*
  155. * 判断是否有酒店子资源(并判断酒店是否有销售价--2017-12-25 娄梦宁)
  156. */
  157. public function getSumHotelSalePrice($order_title_id){
  158. $result=self::find()->select('sum(res_cost) as price,count(1) as cnt')
  159. ->from(self::tableName())
  160. ->where(['and',['=','cancel_flag',0],['=','res_type',2],['=','order_title_id',$order_title_id],['!=','sale_price',0]])
  161. ->asArray()
  162. ->one();
  163. return $result;
  164. }
  165. /*
  166. * 获取酒店子资源详细信息
  167. */
  168. public function getHotelSon($order_title_id){
  169. $result=self::find()->select('res_cost,run_date,order_id')
  170. ->from(self::tableName())
  171. ->where(['and',['=','cancel_flag',0],['=','res_type',2],['=','order_title_id',$order_title_id]])
  172. ->asArray()
  173. ->all();
  174. return $result;
  175. }
  176. /*
  177. * 获取门票产品子资源数组
  178. */
  179. public function getTicketSonArr($order_title_id){
  180. $result=self::find()->select('res_cost,order_id')
  181. ->from(self::tableName())
  182. ->where(['and',['=','cancel_flag',0],['=','res_type',3],['=','order_title_id',$order_title_id]])
  183. ->asArray()
  184. ->all();
  185. return $result;
  186. }
  187. /*
  188. * 插入新组合订单前删除组合订单的财务信息
  189. */
  190. public function cancelOrderTitle($order_title_id){
  191. self::updateAll(['cancel_flag'=>1],['order_title_id'=>$order_title_id]);
  192. }
  193. /**
  194. * Function Description:组合订单酒店子资源价格变化时修改酒店订单的销售价,利润,佣金,支付信息,记录日志
  195. * Function Name: upt_hotel_info
  196. * @param $order_id
  197. * @param $order_price
  198. *
  199. *
  200. * @author 娄梦宁
  201. */
  202. public function upt_hotel_info($order_id,$order_price){
  203. //查出用户
  204. $cookies = Yii::$app->request->cookies;
  205. $user_id = $cookies->getValue('user_id', -1);
  206. $order_main =new OrderMain();
  207. $base_supploer_sale=new BaseSupplierSale();
  208. //取出酒店订单相关信息
  209. $select=[
  210. 'order_price',
  211. 'base_price',
  212. 'cnt'=>new Expression('substring_index(order_description,"|",-1)'),
  213. 'outside_sale_org_id',
  214. 'parent_prod_id',
  215. 'prod_id'
  216. ];
  217. $order_info=$order_main::find()->select($select)
  218. ->from('order_main')
  219. ->where(['and',['=','cancel_flag',0],['=','order_id',$order_id]])
  220. ->asArray()
  221. ->one();
  222. $parent_upt_data=[
  223. 'update_user_id'=>$user_id,
  224. 'update_time'=>date('Y-m-d H:i:s')
  225. ];
  226. $son_upt_data=[
  227. 'update_user_id'=>$user_id,
  228. 'update_time'=>date('Y-m-d H:i:s')
  229. ];
  230. //1.计算佣金,如果佣金规则是按照售价百分比来算就修改
  231. $commission_rule=$base_supploer_sale::find()->select('sale_type,commision_flag,commision_type,back_commision_type,back_commision_method,back_percent,back_value')
  232. ->from('base_supplier_sale')
  233. ->where(['and',['=','parent_type',25],['=','cancel_flag',0],['=','prod_supplier_id',$order_info['outside_sale_org_id']]])
  234. ->asArray()
  235. ->one();
  236. $percentage=$order_price/$order_info['order_price'];
  237. //佣金规则
  238. if($commission_rule['back_commision_method']==308){//按百分比算
  239. $parent_commission=(int)$commission_rule['back_percent']*0.01*$order_price;
  240. $son_commission=round($parent_commission/$order_info['cnt'],2);
  241. $parent_upt_data['total_commission']=$parent_commission;
  242. $son_upt_data['total_commission']=$son_commission;
  243. }
  244. //2.计算价格修改数据
  245. $parent_upt_data['order_price']=$order_price;
  246. $son_upt_data['order_price']=new Expression('order_price*'.$percentage);
  247. //3.利润字段修改
  248. $parent_upt_data['profit_value']=$order_price-(int)$order_info['base_price'];
  249. $son_upt_data['profit_value']=new Expression('order_price-base_price');
  250. //4.修改主订单
  251. $order_main::updateAll($parent_upt_data,['order_id'=>$order_id]);
  252. //5.修改子订单
  253. $order_main::updateAll($son_upt_data,['parent_order_id'=>$order_id]);
  254. //6.修改pay_main 和 pay_detail
  255. $order_pay_main=new OrderPayMain();
  256. $order_pay_detail=new OrderPayDetail();
  257. $order_pay_main::updateAll(['pay_total'=>$order_price,'update_user_id'=>$user_id],['and',['=','cancel_flag',0],['=','order_id',$order_id]]);
  258. $pay_main_id=$order_pay_main::find()->select('id')->from('order_pay_main')->where(['and',['=','cancel_flag',0],['=','order_id',$order_id]])
  259. ->asArray()->one();
  260. $order_pay_detail::updateAll(['pay_money'=>$order_price,'update_user_id'=>$user_id],['and',['=','cancel_flag',0],['=','pay_main_id',$pay_main_id['id']]]);
  261. //7:插入操作日志
  262. $opera_hotel_log=new OperaHotelLog();
  263. $parent_log = [
  264. 'CREATE_USER_ID' => $user_id,
  265. 'CREATE_TIME' => date('Y-m-d H:i:s'),
  266. 'LOG_TYPE' => 3,
  267. 'HOTEL_ID' => $order_info['parent_prod_id'],
  268. 'PARENT_ROOM_TYPE' => 0,
  269. 'ROOM_TYPE' => $order_info['prod_id'],
  270. 'LOG_DESC' => '组合订单:修改订单号为' . $order_id . '的订单,修改价格为:' . $order_price,
  271. 'ORDER_ID' => $order_id,
  272. ];
  273. $opera_hotel_log->attributes=$parent_log;
  274. $opera_hotel_log->insert();
  275. }
  276. /**
  277. * Function Description:组合订单门票价格变动相关改动
  278. * Function Name: upt_ticket_info
  279. * @param $order_id
  280. * @param $order_price
  281. *
  282. *
  283. * @author 娄梦宁
  284. */
  285. public function upt_ticket_info($order_id,$order_price){
  286. //查出用户
  287. $cookies = Yii::$app->request->cookies;
  288. $user_id = $cookies->getValue('user_id', -1);
  289. $order_main =new OrderMain();
  290. //取出酒店订单相关信息
  291. $select=[
  292. 'order_price',
  293. 'base_price',
  294. 'cnt'=>new Expression('substring_index(order_description,"|",-1)'),
  295. 'prod_id'
  296. ];
  297. $order_info=$order_main::find()->select($select)
  298. ->from('order_main')
  299. ->where(['and',['=','cancel_flag',0],['=','order_id',$order_id]])
  300. ->asArray()
  301. ->one();
  302. $parent_upt_data=[
  303. 'order_price'=>$order_price,
  304. 'profit_value'=>$order_price-(int)$order_info['base_price'],
  305. 'update_user_id'=>$user_id,
  306. 'update_time'=>date('Y-m-d H:i:s')
  307. ];
  308. if($order_info['order_price']!=0){
  309. $percentage=$order_price/$order_info['order_price'];
  310. }else{
  311. $percentage=0;
  312. }
  313. $son_upt_data=[
  314. 'order_price'=>new Expression('order_price*'.$percentage),
  315. 'profit_value'=>new Expression('order_price - base_price'),
  316. 'update_user_id'=>$user_id,
  317. 'update_time'=>date('Y-m-d H:i:s')
  318. ];
  319. $order_main::updateAll($parent_upt_data,['order_id'=>$order_id]);
  320. $order_main::updateAll($son_upt_data,['parent_order_id'=>$order_id]);
  321. }
  322. }