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.
 
 
 
 
 
 

497 lines
21 KiB

  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: admin
  5. * Date: 2017/5/31
  6. * Time: 9:54
  7. */
  8. namespace backend\modules\zzcs\models;
  9. use yii\db\ActiveRecord;
  10. class OrderFinanceBalanceAccount extends ActiveRecord
  11. {
  12. /**
  13. * @inheritdoc
  14. */
  15. public static function tableName()
  16. {
  17. return 'order_finance_balance_account';
  18. }
  19. /**
  20. * @inheritdoc
  21. */
  22. public function rules()
  23. {
  24. return [
  25. [['id', 'org_id', 'type', 'status', 'order_type'], 'integer'],
  26. [['price', 'commission_price', 'reparations_price', ''], 'number'],
  27. [['date', 'batch_id', 'start_date', 'end_date', 'account_num', 'account_name', 'sett_frequency'], 'string', 'max' => 50],
  28. [['org_name', 'account_bank'], 'string', 'max' => 255],
  29. [['remark'], 'string', 'max' => 500],
  30. [['PAY_MAIN_ID'], 'unique'],
  31. ];
  32. }
  33. /**
  34. * @inheritdoc
  35. */
  36. public function attributeLabels()
  37. {
  38. return [
  39. 'id' => 'ID',
  40. 'org_id' => '渠道商ID',
  41. 'org_name' => '渠道商名称',
  42. 'price' => '对账金额',
  43. 'commission_price' => '佣金',
  44. 'reparations_price' => '赔款金额',
  45. 'date' => 'date',
  46. 'type' => 'type',
  47. 'batch_id' => 'batch_id',
  48. 'start_date' => 'start_date',
  49. 'end_date' => 'end_date',
  50. 'account_bank' => 'account_bank',
  51. 'account_num' => 'account_num',
  52. 'account_name' => 'account_name',
  53. 'sett_frequency' => 'sett_frequency',
  54. 'status' => 'status',
  55. 'order_type' => 'order_type'
  56. ];
  57. }
  58. /**
  59. * Des:生成对账单
  60. * Name: addBalance
  61. * @param $getWhere
  62. * @param $time
  63. * @return int
  64. * @throws \yii\db\Exception
  65. * @author 倪宗锋
  66. */
  67. public function addBalanceForGathering($getWhere, $time)
  68. {
  69. /**============生成对账单===================**/
  70. $sql = "
  71. INSERT into order_finance_balance_account(main_corp_id,org_id,org_name,price,commission_price,
  72. reparations_price,type,batch_id,start_date,end_date,account_bank,account_name,account_num,sett_frequency,order_type)
  73. SELECT {$getWhere["main_corp_id"]},s.org_id,s.org_name,sum(price),sum(affi),sum(reparations),2 as 'type',concat('{$time}','',s.org_id) 'batch_id',
  74. '{$getWhere['param']['start_date']}' as 'start_date','{$getWhere['param']['end_date']}' as 'end_date',
  75. s.ACCOUNT_BANK,s.ACCOUNT_NAME,s.ACCOUNT_NUM,s.TYPE_NAME,1
  76. FROM (
  77. SELECT x.org_id,(SELECT SUPPLIER_NAME from base_supplier WHERE ID = x.org_id) 'org_name',
  78. x.price,x.affi,x.reparations,
  79. c.ACCOUNT_BANK,c.ACCOUNT_NAME,c.ACCOUNT_NUM,d.TYPE_NAME
  80. from(
  81. SELECT a.outside_sale_org_id 'org_id',SUM(a.order_title_all_price) 'price',SUM(a.order_title_all_affi) 'affi',
  82. IFNULL(SUM(c.reparations),0) 'reparations'
  83. from order_title a
  84. LEFT JOIN order_finance_status b on a.order_title_id = b.order_id and b.type =1
  85. LEFT JOIN order_finance_reparations c on a.order_title_id = c.order_id
  86. WHERE {$getWhere['ziyou_where']}
  87. GROUP BY a.outside_sale_org_id
  88. ) x
  89. LEFT join base_supplier c on c.ID=x.org_id
  90. LEFT JOIN dict_type d on c.SETT_FREQUENCY = d.ID
  91. UNION ALL
  92. SELECT t.*
  93. from(
  94. SELECT x.org_id,x.org_name,
  95. sum(x.price) 'price',sum(x.commission_price) 'affi',sum(x.reparations_price) 'reparations',
  96. c.ACCOUNT_BANK,c.ACCOUNT_NAME,c.ACCOUNT_NUM,d.TYPE_NAME
  97. FROM (
  98. SELECT a.OUTSIDE_SALE_ORG_ID 'org_id',
  99. (SELECT SUPPLIER_NAME from base_supplier WHERE ID = a.OUTSIDE_SALE_ORG_ID) 'org_name',
  100. a.ORDER_PRICE 'price',
  101. a.TOTAL_COMMISSION 'commission_price',
  102. IFNULL((SELECT reparations from order_finance_reparations WHERE order_id=a.ORDER_ID),0) as 'reparations_price',
  103. 2 as 'type',
  104. IFNULL(b.gathering_status,1) 'status',
  105. (SELECT MAX(RUN_DATE) from order_main WHERE ORDER_ID = a.PARENT_ORDER_ID) 'run_date'
  106. from order_main a
  107. LEFT JOIN order_finance_status b on a.ORDER_ID = b.order_id and b.type =1
  108. WHERE {$getWhere['order_where']}
  109. and b.gathering_status = 2
  110. ) x
  111. LEFT join base_supplier c on c.ID=x.org_id
  112. LEFT JOIN dict_type d on c.SETT_FREQUENCY = d.ID
  113. GROUP BY x.org_id
  114. ) as t
  115. ) as s
  116. GROUP BY s.org_id
  117. ";
  118. $flag = \Yii::$app->getDb()->createCommand($sql)->execute();
  119. return $flag;
  120. }
  121. /**
  122. * Function Description:插入数据
  123. * Function Name: addBalance
  124. * @param $order_id
  125. * @param $start_date
  126. * @param $end_date
  127. * @param $main_corp_id
  128. * @param $time
  129. *
  130. * @return int
  131. * @throws \yii\db\Exception
  132. *
  133. * @author 李健
  134. */
  135. public function addBalance($order_id,$start_date,$end_date,$main_corp_id,$time)
  136. {
  137. $sql = "INSERT into order_finance_balance_account(main_corp_id,org_id,org_name,price,commission_price,reparations_price,type,batch_id,start_date,end_date,account_bank,account_name,account_num,sett_frequency,order_type) SELECT {$main_corp_id},s.org_id,s.org_name,sum(price),sum(affi),sum(reparations),2 as 'type',concat('{$time}','',s.org_id) 'batch_id','{$start_date}' as 'start_date','{$end_date}' as 'end_date',
  138. s.ACCOUNT_BANK,s.ACCOUNT_NAME,s.ACCOUNT_NUM,s.TYPE_NAME,1
  139. FROM (
  140. SELECT x.org_id,(SELECT SUPPLIER_NAME from base_supplier WHERE ID = x.org_id) 'org_name',
  141. x.price,x.affi,x.reparations,
  142. c.ACCOUNT_BANK,c.ACCOUNT_NAME,c.ACCOUNT_NUM,d.TYPE_NAME
  143. from(
  144. SELECT a.outside_sale_org_id 'org_id',SUM(a.order_title_all_price) 'price',SUM(a.order_title_all_affi) 'affi',
  145. IFNULL(SUM(c.reparations),0) 'reparations'
  146. from order_title a
  147. LEFT JOIN order_finance_status b on a.order_title_id = b.order_id and b.type =1
  148. LEFT JOIN order_finance_reparations c on a.order_title_id = c.order_id
  149. WHERE a.order_title_id in (".$order_id.") and a.CANCEL_FLAG = 0
  150. GROUP BY a.outside_sale_org_id
  151. ) x
  152. LEFT join base_supplier c on c.ID=x.org_id
  153. LEFT JOIN dict_type d on c.SETT_FREQUENCY = d.ID
  154. UNION ALL
  155. SELECT t.*
  156. from(
  157. SELECT x.org_id,x.org_name,
  158. sum(x.price) 'price',sum(x.commission_price) 'affi',sum(x.reparations_price) 'reparations',
  159. c.ACCOUNT_BANK,c.ACCOUNT_NAME,c.ACCOUNT_NUM,d.TYPE_NAME
  160. FROM (
  161. SELECT a.OUTSIDE_SALE_ORG_ID 'org_id',
  162. (SELECT SUPPLIER_NAME from base_supplier WHERE ID = a.OUTSIDE_SALE_ORG_ID) 'org_name',
  163. a.ORDER_PRICE 'price',
  164. a.TOTAL_COMMISSION 'commission_price',
  165. IFNULL((SELECT reparations from order_finance_reparations WHERE order_id=a.ORDER_ID),0) as 'reparations_price',
  166. 2 as 'type'
  167. from order_main a
  168. LEFT JOIN order_finance_status b on a.ORDER_ID = b.order_id and b.type =1
  169. WHERE a.order_id in (".$order_id.") and a.CANCEL_FLAG = 0
  170. and b.gathering_status = 2
  171. ) x
  172. LEFT join base_supplier c on c.ID=x.org_id
  173. LEFT JOIN dict_type d on c.SETT_FREQUENCY = d.ID
  174. GROUP BY x.org_id
  175. ) as t
  176. ) as s
  177. GROUP BY s.org_id
  178. ";
  179. $flag = \Yii::$app->getDb()->createCommand($sql)->execute();
  180. return $flag;
  181. }
  182. /**
  183. * Des:生成对账单
  184. * Name: addBalance
  185. * @param $getWhere
  186. * @param $time
  187. * @return int
  188. * @throws \yii\db\Exception
  189. * @author 倪宗锋
  190. */
  191. public function addBalanceForPayment($getWhere, $time)
  192. {
  193. /**============生成对账单===================**/
  194. $sql = "
  195. INSERT into order_finance_balance_account(main_corp_id,org_id,org_name,price,
  196. reparations_price,type,batch_id,start_date,end_date,account_bank,account_name,account_num,sett_frequency,order_type)
  197. SELECT {$getWhere["main_corp_id"]},x.org_id,(SELECT SUPPLIER_NAME from base_supplier WHERE ID = x.org_id) 'org_name',
  198. SUM(x.price),SUM(x.reparations),1,concat('{$time}','',x.org_id),'{$getWhere['start_date']}','{$getWhere['end_date']}',
  199. c.ACCOUNT_BANK,c.ACCOUNT_NAME,c.ACCOUNT_NUM,d.TYPE_NAME,1
  200. from(
  201. SELECT a.BUS_ORG_ID 'org_id',SUM(a.TOTAL_COST_PRICE) 'price',
  202. (SELECT IFNULL(SUM(v.reparations),0) from order_main u
  203. JOIN order_finance_reparations v on u.order_id = v.order_id
  204. WHERE u.RUN_ID = a.RUN_ID and u.RUN_BUS_ORDER_ID = a.BUS_ORDER_ID
  205. ) as 'reparations'
  206. from bus_cost a
  207. LEFT JOIN opera_line d ON a.LINE_ID = d.LINE_ID
  208. left JOIN order_finance_status b on a.ID = b.order_id and b.type=2
  209. WHERE {$getWhere['bus_where']}
  210. GROUP BY a.BUS_ORG_ID
  211. union ALL
  212. SELECT a.PROD_TOP_ORG_ID 'org_id',SUM(a.BASE_PRICE) 'price',IFNULL(SUM(d.reparations),0) 'reparations'
  213. from order_main a
  214. left JOIN order_finance_status b ON a.ORDER_ID = b.order_id and b.type=1
  215. LEFT JOIN order_finance_reparations d on a.order_id=d.order_id
  216. WHERE {$getWhere['order_where']}
  217. GROUP BY a.PROD_TOP_ORG_ID
  218. )x
  219. LEFT join base_supplier c on c.ID=x.org_id
  220. LEFT JOIN dict_type d on c.SETT_FREQUENCY = d.ID
  221. GROUP BY x.org_id
  222. ";
  223. $flag = \Yii::$app->getDb()->createCommand($sql)->execute();
  224. return $flag;
  225. }
  226. /**
  227. * Function Description:生成对账单
  228. * Function Name: addBalanceForPayment2
  229. * @param $order_id
  230. * @param $start_date
  231. * @param $end_date
  232. * @param $main_corp_id
  233. * @param $time
  234. *
  235. * @return int
  236. * @throws \yii\db\Exception
  237. *
  238. * @author 李健
  239. */
  240. public function addBalanceForPayment2($order_id,$start_date,$end_date,$main_corp_id,$time)
  241. {
  242. /**============生成对账单===================**/
  243. $sql = "
  244. INSERT into order_finance_balance_account(main_corp_id,org_id,org_name,price,
  245. reparations_price,type,batch_id,start_date,end_date,account_bank,account_name,account_num,sett_frequency,order_type)
  246. SELECT {$main_corp_id},x.org_id,(SELECT SUPPLIER_NAME from base_supplier WHERE ID = x.org_id) 'org_name',
  247. SUM(x.price),SUM(x.reparations),1,concat('{$time}','',x.org_id),'{$start_date}','{$end_date}',
  248. c.ACCOUNT_BANK,c.ACCOUNT_NAME,c.ACCOUNT_NUM,d.TYPE_NAME,1
  249. from(
  250. SELECT a.BUS_ORG_ID 'org_id',SUM(a.TOTAL_COST_PRICE) 'price',
  251. (SELECT IFNULL(SUM(v.reparations),0) from order_main u
  252. JOIN order_finance_reparations v on u.order_id = v.order_id
  253. WHERE u.RUN_ID = a.RUN_ID and u.RUN_BUS_ORDER_ID = a.BUS_ORDER_ID
  254. ) as 'reparations'
  255. from bus_cost a
  256. LEFT JOIN opera_line d ON a.LINE_ID = d.LINE_ID
  257. left JOIN order_finance_status b on a.ID = b.order_id and b.type=2
  258. WHERE a.id in (".$order_id.") and a.CANCEL_FLAG = 0
  259. GROUP BY a.BUS_ORG_ID
  260. union ALL
  261. SELECT a.PROD_TOP_ORG_ID 'org_id',SUM(a.BASE_PRICE) 'price',IFNULL(SUM(d.reparations),0) 'reparations'
  262. from order_main a
  263. left JOIN order_finance_status b ON a.ORDER_ID = b.order_id and b.type=1
  264. LEFT JOIN order_finance_reparations d on a.order_id=d.order_id
  265. WHERE a.order_id in (".$order_id.") and a.CANCEL_FLAG = 0
  266. GROUP BY a.PROD_TOP_ORG_ID
  267. )x
  268. LEFT join base_supplier c on c.ID=x.org_id
  269. LEFT JOIN dict_type d on c.SETT_FREQUENCY = d.ID
  270. GROUP BY x.org_id
  271. ";
  272. $flag = \Yii::$app->getDb()->createCommand($sql)->execute();
  273. return $flag;
  274. }
  275. /**
  276. * Des:更新订单状态
  277. * Name: editStatus
  278. * @param $id
  279. * @return bool
  280. * @author 倪宗锋
  281. */
  282. public function editStatus($id)
  283. {
  284. //更新条件
  285. $update_where = ['=', 'id', $id];
  286. //更新数据
  287. $update_data = [
  288. 'status' => 2
  289. ];
  290. $rows = self::updateAll($update_data, $update_where);
  291. if ($rows) {
  292. return true;
  293. }
  294. return false;
  295. }
  296. /**
  297. * Des:获取对账单详情
  298. * Name: getInfoById
  299. * @param $id
  300. * @return array
  301. * @author 倪宗锋
  302. */
  303. public function getInfoById($id)
  304. {
  305. $select = [
  306. 'id',
  307. 'org_id',
  308. 'org_name',
  309. 'start_date',
  310. 'end_date',
  311. 'order_type'
  312. ];
  313. $result = self::find()->select($select)
  314. ->where(['=', 'id', $id])
  315. ->asArray()
  316. ->one();
  317. return $result;
  318. }
  319. /**
  320. * Des:获取导出excel的数据 应收
  321. * Name: getExcelForGathering
  322. * @param $info
  323. * @return array
  324. * @author 倪宗锋
  325. */
  326. public function getExcelForGathering($info)
  327. {
  328. $sql = "select z.* from (
  329. SELECT x.order_id '订单ID',x.cus_name '客人姓名', CONCAT(x.outside_order_no,\"\t\") '渠道订单ID',x.start_date '出游时间',
  330. x.create_time '预定时间','' as 'order_description',
  331. x.order_title_prod_name '产品名称','巴士自由行' as '产品类型',
  332. '' as '房型/票种',
  333. 0 as '间夜/票数',
  334. x.order_title_all_price '订单金额',x.order_title_all_affi '佣金',x.reparations '赔款',
  335. '{$info['org_name']}' as '供应商'
  336. from (
  337. SELECT a.order_title_id 'order_id' ,a.cus_name,a.outside_order_no ,a.start_date ,
  338. a.create_time,a.order_title_prod_name ,a.order_title_all_price ,a.order_title_all_affi ,
  339. IFNULL((SELECT reparations from order_finance_reparations WHERE order_id=a.order_title_id),0) as 'reparations'
  340. from order_title a
  341. JOIN order_finance_status b on a.order_title_id = b.order_id and b.type =3
  342. join order_finance_balance_account d on b.gathering_batch_id = d.batch_id
  343. LEFT JOIN order_finance_reparations c on a.order_title_id = c.order_id
  344. WHERE d.id={$info['id']}
  345. ) x
  346. GROUP BY x.order_id
  347. UNION ALL
  348. SELECT
  349. c.ORDER_ID '订单ID',c.CUSTOMER_NAME '客人姓名',CONCAT(c.OUTSIDE_ORDER_NO,\"\t\") '渠道订单ID',
  350. (SELECT MAX(RUN_DATE) from order_main WHERE PARENT_ORDER_ID = c.ORDER_ID) '出游时间',
  351. c.CREATE_TIME '预定时间',
  352. c.ORDER_DESCRIPTION 'order_description',
  353. (SELECT CONCAT(PARENT_PROD_NAME, '<br />',PROD_START_STATION_RES_NAME,' - ',PROD_END_STATION_RES_NAME) from order_main WHERE PARENT_ORDER_ID = c.ORDER_ID LIMIT 1) '产品名称',
  354. CASE
  355. WHEN c.ORDER_PROD_TYPE in (25,26) THEN '酒店'
  356. WHEN c.ORDER_PROD_TYPE in (81,82,38,369) THEN '车票'
  357. WHEN c.ORDER_PROD_TYPE in (258,282,311) THEN '门票'
  358. else '' END as '产品类型',
  359. '' as '房型/票种',0 as '间夜/票数',
  360. c.ORDER_PRICE '订单金额',c.TOTAL_COMMISSION '佣金',
  361. IFNULL((SELECT reparations from order_finance_reparations WHERE order_id=c.ORDER_ID),0) as '赔款',
  362. ifnull(a.org_name,'-') '供应商'
  363. from order_finance_balance_account a
  364. JOIN order_finance_status b on a.batch_id = b.gathering_batch_id and b.type =1
  365. JOIN order_main c on b.order_id=c.ORDER_ID
  366. LEFT JOIN order_finance_reparations d on b.order_id=d.order_id
  367. WHERE a.id={$info['id']} and c.cancel_flag=0
  368. )z
  369. ORDER BY z.出游时间
  370. ";
  371. $list = \Yii::$app->getDb()->createCommand($sql)->queryAll();
  372. if (empty($list) == false) {
  373. foreach ($list as $key => $value) {
  374. $order_description = $value['order_description'];
  375. unset($list[$key]['order_description']);
  376. if (empty($order_description)) {
  377. continue;
  378. }
  379. $list[$key]['间页/票数'] = 0;
  380. $list[$key]['房型/票种'] = '';
  381. $scripTionArr = explode('|', $order_description);
  382. foreach ($scripTionArr as $vl) {
  383. if (empty($vl)) {
  384. continue;
  385. }
  386. $vls = explode(',', $vl);
  387. if (empty($vls['2'])) {
  388. $list[$key]['间页/票数'] = $vls[0];
  389. } else {
  390. $list[$key]['间页/票数'] = $vls['2'];
  391. $list[$key]['房型/票种'] = $vls['0'];
  392. }
  393. }
  394. }
  395. }
  396. return $list;
  397. }
  398. /**
  399. * Des:获取导出excel的数据 应付
  400. * Name: getExcelForGathering
  401. * @param $info
  402. * @return array
  403. * @author 倪宗锋
  404. */
  405. public function getExcelForPayment($info)
  406. {
  407. $sql = "
  408. select z.* FROM (
  409. SELECT c.ID '订单ID','' as '渠道订单ID',c.START_TIME '出游时间',a.start_date '预定时间',
  410. '' as 'order_description',
  411. d.LINE_NAME '产品名称','巴士成本' as '产品类型','' as '房型/票种',0 as '间夜/票数',
  412. c.TOTAL_COST_PRICE '成本',
  413. (SELECT IFNULL(SUM(v.reparations),0) from order_main u
  414. JOIN order_finance_reparations v on u.order_id = v.order_id
  415. WHERE u.RUN_ID = c.RUN_ID and u.RUN_BUS_ORDER_ID = c.BUS_ORDER_ID
  416. )
  417. as '赔款',
  418. ifnull((SELECT SUPPLIER_NAME FROM base_supplier WHERE c.BUS_ORG_ID = ID),'-') '供应商'
  419. from order_finance_balance_account a
  420. JOIN order_finance_status b on a.batch_id = b.payment_batch_id and b.type=2
  421. JOIN bus_cost c on b.order_id = c.ID
  422. LEFT JOIN opera_line d on c.LINE_ID = d.LINE_ID
  423. WHERE a.ID={$info['id']}
  424. UNION ALL
  425. SELECT
  426. c.ORDER_ID '订单ID',c.OUTSIDE_ORDER_NO '渠道订单ID',
  427. (SELECT MAX(RUN_DATE) from order_main WHERE c.ORDER_ID = PARENT_ORDER_ID) '出游时间',
  428. c.CREATE_TIME '预定时间',
  429. c.ORDER_DESCRIPTION 'order_description',
  430. (SELECT CONCAT(PARENT_PROD_NAME, '<br />',PROD_START_STATION_RES_NAME,' - ',PROD_END_STATION_RES_NAME) from order_main WHERE PARENT_ORDER_ID = c.ORDER_ID LIMIT 1) '产品名称',
  431. CASE
  432. WHEN c.ORDER_PROD_TYPE in (25,26) THEN '酒店'
  433. WHEN c.ORDER_PROD_TYPE in (81,82,38,369) THEN '车票'
  434. WHEN c.ORDER_PROD_TYPE in (258,282,311) THEN '门票'
  435. else '' END as '产品类型',
  436. '' as '房型/票种',0 as '间夜/票数',
  437. c.BASE_PRICE '订单金额',
  438. IFNULL((SELECT reparations from order_finance_reparations WHERE order_id=c.ORDER_ID),0) as '赔款',
  439. ifnull(a.org_name,'-') '供应商'
  440. from order_finance_balance_account a
  441. JOIN order_finance_status b on a.batch_id = b.payment_batch_id and b.type=1
  442. JOIN order_main c on b.order_id = c.ORDER_ID
  443. WHERE a.id={$info['id']} and c.cancel_flag=0
  444. ) z
  445. ORDER BY z.出游时间
  446. ";
  447. $list = \Yii::$app->getDb()->createCommand($sql)->queryAll();
  448. if (empty($list[0]['订单ID'])) {
  449. return [];
  450. }
  451. if (empty($list) == false) {
  452. foreach ($list as $key => $value) {
  453. $order_description = $value['order_description'];
  454. unset($list[$key]['order_description']);
  455. if (empty($order_description)) {
  456. continue;
  457. }
  458. $list[$key]['间页/票数'] = 0;
  459. $list[$key]['房型/票种'] = '';
  460. $scripTionArr = explode('|', $order_description);
  461. foreach ($scripTionArr as $vl) {
  462. if (empty($vl)) {
  463. continue;
  464. }
  465. $vls = explode(',', $vl);
  466. if (empty($vls['2'])) {
  467. $list[$key]['间页/票数'] = $vls[0];
  468. } else {
  469. $list[$key]['间页/票数'] = $vls['2'];
  470. $list[$key]['房型/票种'] = $vls['0'];
  471. }
  472. }
  473. }
  474. }
  475. return $list;
  476. }
  477. }