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.
 
 
 
 
 
 

1105 line
33 KiB

  1. <?php
  2. namespace backend\modules\zzcs\models;
  3. use Yii;
  4. use yii\db\Exception;
  5. /**
  6. * This is the model class for table "base_supplier".
  7. *
  8. * @property integer $ID
  9. * @property integer $MAIN_CORP_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 $AREA_ID
  16. * @property integer $SUPPLIER_TYPE
  17. * @property string $SUPPLIER_NAME
  18. * @property string $SUPPLIER_CODE
  19. * @property integer $MANAGE_TYPE
  20. * @property string $COMPANY_NAME
  21. * @property string $ID_CARD
  22. * @property integer $IS_DISABLED
  23. * @property integer $SETT_TYPE
  24. * @property integer $SETT_FREQUENCY
  25. * @property string $ACCOUNT_BANK
  26. * @property string $ACCOUNT_NUM
  27. * @property string $ACCOUNT_NAME
  28. * @property string $SALES_MAN
  29. * @property integer $REFLECT_MAIN_CORP
  30. * @property integer $NEED_SERIAL_NO
  31. * @property string $ACCOUNT_BALANCE
  32. * @property integer $DEDUCT_TYPE
  33. * @property string $ALERT_BALANCE
  34. * @property integer $STATUS
  35. */
  36. class BaseSupplier extends \yii\db\ActiveRecord
  37. {
  38. /**
  39. * @inheritdoc
  40. */
  41. public static function tableName()
  42. {
  43. return 'base_supplier';
  44. }
  45. /**
  46. * @inheritdoc
  47. */
  48. public function rules()
  49. {
  50. return [
  51. [['MAIN_CORP_ID', 'CREATE_USER_ID', 'UPDATE_USER_ID', 'CANCEL_FLAG', 'AREA_ID', 'SUPPLIER_TYPE', 'MANAGE_TYPE', 'IS_DISABLED', 'SETT_TYPE', 'SETT_FREQUENCY', 'REFLECT_MAIN_CORP', 'NEED_SERIAL_NO', 'DEDUCT_TYPE', 'STATUS'], 'integer'],
  52. [['SUPPLIER_TYPE', 'SUPPLIER_NAME'], 'required'],
  53. [['UPDATE_TIME'], 'safe'],
  54. [['ACCOUNT_BALANCE', 'ALERT_BALANCE'], 'number'],
  55. [['CREATE_TIME', 'ID_CARD', 'ACCOUNT_NUM'], 'string', 'max' => 20],
  56. [['SUPPLIER_NAME', 'SUPPLIER_CODE', 'COMPANY_NAME', 'ACCOUNT_BANK', 'ACCOUNT_NAME'], 'string', 'max' => 100],
  57. [['SALES_MAN'], 'string', 'max' => 30],
  58. ];
  59. }
  60. /**
  61. * @inheritdoc
  62. */
  63. public function attributeLabels()
  64. {
  65. return [
  66. 'ID' => 'ID',
  67. 'MAIN_CORP_ID' => 'Main Corp ID',
  68. 'CREATE_USER_ID' => 'Create User ID',
  69. 'CREATE_TIME' => 'Create Time',
  70. 'UPDATE_USER_ID' => 'Update User ID',
  71. 'UPDATE_TIME' => 'Update Time',
  72. 'CANCEL_FLAG' => 'Cancel Flag',
  73. 'AREA_ID' => 'Area ID',
  74. 'SUPPLIER_TYPE' => 'Supplier Type',
  75. 'SUPPLIER_NAME' => 'Supplier Name',
  76. 'SUPPLIER_CODE' => 'Supplier Code',
  77. 'MANAGE_TYPE' => 'Manage Type',
  78. 'COMPANY_NAME' => 'Company Name',
  79. 'ID_CARD' => 'Id Card',
  80. 'IS_DISABLED' => 'Is Disabled',
  81. 'SETT_TYPE' => 'Sett Type',
  82. 'SETT_FREQUENCY' => 'Sett Frequency',
  83. 'ACCOUNT_BANK' => 'Account Bank',
  84. 'ACCOUNT_NUM' => 'Account Num',
  85. 'ACCOUNT_NAME' => 'Account Name',
  86. 'SALES_MAN' => 'Sales Man',
  87. 'REFLECT_MAIN_CORP' => 'Reflect Main Corp',
  88. 'NEED_SERIAL_NO' => 'Need Serial No',
  89. 'ACCOUNT_BALANCE' => 'Account Balance',
  90. 'DEDUCT_TYPE' => 'Deduct Type',
  91. 'ALERT_BALANCE' => 'Alert Balance',
  92. 'STATUS' => 'Status',
  93. ];
  94. }
  95. /**
  96. * Function Description:获取车队信息
  97. * Function Name: getMotorcadeInfo
  98. *
  99. * @return mixed
  100. *
  101. * @author 张帅
  102. */
  103. public function getMotorcadeInfo($add_code_mode = false)
  104. {
  105. #region 获取用户信息
  106. //获取cookies
  107. $cookies = Yii::$app->request->cookies;
  108. //账号权限
  109. $user_id = $cookies->getValue('user_id');
  110. $user_info = BaseUser::find()
  111. ->select('opera_org_id,main_corp_id')
  112. ->where(['id' => $user_id, 'cancel_flag' => 0])
  113. ->asArray()
  114. ->one();
  115. $opera_org_id = $user_info['opera_org_id'];
  116. $main_corp_id = $user_info['main_corp_id'];
  117. #endregion
  118. $sql_where = [
  119. 'and',
  120. ['=', 's.cancel_flag', 0],
  121. ['=', 's.supplier_type', 187],
  122. ['=', 'p.cancel_flag', 0],
  123. ['=', 'p.product_type', 259]
  124. ];
  125. // //用户权限
  126. // if (!empty($opera_org_id)) {
  127. // $sql_where[] = ['in', 's.id', explode(',', $opera_org_id)];
  128. // }
  129. if ($main_corp_id == 0) {
  130. $main_corp_id = 1;
  131. }
  132. if ($main_corp_id != 0) {
  133. if ($add_code_mode == true) {
  134. $sql_where[] = ['or', ['in', 's.main_corp_id', explode(',', $main_corp_id)], ['>', 's.reflect_main_corp', 0]];
  135. } else {
  136. $sql_where[] = ['in', 's.main_corp_id', explode(',', $main_corp_id)];
  137. }
  138. }
  139. $motorcade_info = self::find()->select('p.supplier_id,s.supplier_name,s.supplier_code')
  140. ->from(['s' => self::tableName()])
  141. ->leftJoin(BaseSupplierPurchase::tableName() . ' as p', 's.id = p.supplier_id')
  142. ->where($sql_where)->groupBy('s.id')
  143. ->asArray()
  144. ->all();
  145. return $motorcade_info;
  146. }
  147. /**
  148. * Des:获取所有列表
  149. * Name: getListAll
  150. * @return array
  151. * @author 倪宗锋
  152. */
  153. public function getListAll() {
  154. $sql_where = [
  155. 'and',
  156. ['=', 's.cancel_flag', 0],
  157. ['=', 's.supplier_type', 187],
  158. ['=', 'p.cancel_flag', 0],
  159. ['=', 'p.product_type', 259]
  160. ];
  161. $motorcade_info = self::find()->select('p.supplier_id,s.supplier_name,s.supplier_code')
  162. ->from(['s' => self::tableName()])
  163. ->leftJoin(BaseSupplierPurchase::tableName() . ' as p', 's.id = p.supplier_id')
  164. ->where($sql_where)->groupBy('s.id')
  165. ->asArray()
  166. ->all();
  167. return $motorcade_info;
  168. }
  169. /**
  170. * Function Description:
  171. * Function Name: getMotorcade
  172. *
  173. * @return mixed
  174. *
  175. * @author 张帅
  176. */
  177. public function getMotorcadeCodeAndName()
  178. {
  179. //1.获取车队信息
  180. $motorcade_info = $this->getMotorcadeInfo();
  181. #region 2.获取车队名称数组 和 车队代码数组
  182. $motorcade_name = [];
  183. $motorcade_code = [];
  184. foreach ($motorcade_info as $key => $vel) {
  185. $motorcade_name[$vel['supplier_name']] = $vel['supplier_name'];
  186. $motorcade_code[$vel['supplier_code']] = $vel['supplier_code'];
  187. }
  188. #endregion
  189. $result['motorcade_name'] = $motorcade_name;
  190. $result['motorcade_code'] = $motorcade_code;
  191. return $result;
  192. }
  193. /**
  194. * Function Description:获取渠道商名称
  195. * Function Name: getChannelName
  196. *
  197. * @return array|ActiveRecord[]
  198. *
  199. * @author 张帅
  200. */
  201. public function getChannelName()
  202. {
  203. $base_user = new BaseUser();
  204. $user_main_corp = $base_user->getMainCorp();
  205. $result = self::find()
  206. ->select([
  207. 'supplier_id' => 'id',
  208. 'supplier_name',
  209. ])
  210. ->where([
  211. 'and',
  212. ['=', 'cancel_flag', 0],
  213. ['=', 'is_disabled', 0],
  214. ['=', 'supplier_type', 301],
  215. ['or', ['=', 'main_corp_id', $user_main_corp], ['=', 'main_corp_id', 0]]
  216. ])
  217. ->asArray()->all();
  218. return $result;
  219. }
  220. /**
  221. * Function Description:获取姓名和id
  222. * Function Name: getNameAndId
  223. * @param $supplier_type
  224. *
  225. * @return array|\yii\db\ActiveRecord[]
  226. *
  227. * @author 李健
  228. */
  229. public function getNameAndId($supplier_type)
  230. {
  231. $result = self::find()
  232. ->select([
  233. 'supplier_id' => 'id',
  234. 'supplier_name',
  235. ])
  236. ->where([
  237. 'and',
  238. ['=', 'cancel_flag', 0],
  239. ['=', 'is_disabled', 0],
  240. ['=', 'supplier_type', $supplier_type],
  241. ])
  242. ->asArray()->all();
  243. return $result;
  244. }
  245. /**
  246. * Function Description:获取渠道下所有可用的渠道商列表
  247. * Function Name: getDistribAll
  248. * @param $user_main_corp
  249. * @param $line_type
  250. * @param $current_page
  251. * @param $page_size
  252. *
  253. * @return array
  254. *
  255. * @author 娄梦宁
  256. */
  257. public function getDistribAll($user_main_corp, $line_type, $current_page, $page_size, $is_agent, $supplier_name, $is_main_corp)
  258. {
  259. $base_area = new BaseArea();
  260. $where = ['and',
  261. ['=', 'a.cancel_flag', 0],
  262. ['=', 'b.cancel_flag', 0],
  263. ['or', ['=', 'a.main_corp_id', $user_main_corp],
  264. ['=', 'a.main_corp_id', 0]],
  265. ['=', 'a.supplier_type', 301],
  266. ['=', 'b.parent_type', 310],
  267. ['=', 'a.IS_DISABLED', 0],
  268. ['!=', 'a.REFLECT_MAIN_CORP', $user_main_corp]];
  269. if ($line_type == 255) {
  270. $where[] = [
  271. 'in', 'b.product_type', [0, 255, 258]
  272. ];
  273. } elseif ($line_type == 256) {
  274. $where[] = [
  275. 'in', 'b.product_type', [0, 256]
  276. ];
  277. } elseif ($line_type == 316) {
  278. $where[] = [
  279. 'in', 'b.product_type', [0, 316]
  280. ];
  281. }
  282. if ($is_agent == 1 || $user_main_corp == 1) {
  283. $where[] = ['!=', 'a.id', 1];
  284. }
  285. if ($supplier_name != '') {
  286. $where[] = ['like', 'a.supplier_name', $supplier_name];
  287. }
  288. if ($is_main_corp != -1) {
  289. if ($is_main_corp == 0) {
  290. $where[] = ['=', 'a.reflect_main_corp', '-1'];
  291. } else {
  292. $where[] = ['<>', 'a.reflect_main_corp', '-1'];
  293. }
  294. }
  295. $offset = ($current_page - 1) * $page_size;
  296. $list = self::find()->select('a.id,b.id as sale_id,a.reflect_main_corp')
  297. ->from(self::tableName() . ' a')
  298. ->leftJoin('base_supplier_sale as b', 'a.id=b.supplier_id')
  299. ->where($where)
  300. ->groupBy('a.id')
  301. ->offset($offset)
  302. ->limit($page_size)
  303. ->asArray()
  304. ->all();
  305. $total_row = self::find()->from(self::tableName() . ' a')->leftJoin('base_supplier_sale as b', 'a.id=b.supplier_id')
  306. ->where($where)
  307. ->count();
  308. $page_arr = $base_area->getPage($total_row, $page_size, $current_page);
  309. $data = [
  310. 'list' => $list,
  311. 'page_size_arr' => [10, 30, 50, 100],
  312. 'page' => [
  313. 'page_size' => $page_size,
  314. 'current_page' => $current_page,
  315. 'total_row' => $total_row,
  316. 'total_page' => ceil($total_row / $page_size)
  317. ],
  318. 'page_arr' => $page_arr
  319. ];
  320. return $data;
  321. }
  322. /*
  323. * 根据渠道ID查询其对应运营主体
  324. */
  325. public function check_main_corp($supplier_id)
  326. {
  327. $result = self::find()->select('REFLECT_MAIN_CORP')->from(self::tableName())->where(['ID' => $supplier_id])->asArray()->one();
  328. return $result['REFLECT_MAIN_CORP'];
  329. }
  330. public function getdepart_status()
  331. {
  332. return $this->hasOne(DictType::className(), ['ID' => 'STATUS']);
  333. }
  334. /**
  335. * Des:获取供应商列表
  336. * Name: getSupplierList
  337. * @author 倪宗锋
  338. */
  339. public function getSupplierList()
  340. {
  341. $base_user = new BaseUser();
  342. $user_main_corp = $base_user->getMainCorp();
  343. $result = self::find()
  344. ->select([
  345. 'org_id' => 'id',
  346. 'org_name' => 'supplier_name',
  347. ])
  348. ->where([
  349. 'and',
  350. ['=', 'cancel_flag', 0],
  351. ['=', 'is_disabled', 0],
  352. ['=', 'supplier_type', 187],
  353. ['or', ['=', 'main_corp_id', $user_main_corp], ['=', 'main_corp_id', 0],['!=', 'reflect_main_corp', 0]]
  354. ])
  355. ->orderBy('SUPPLIER_NAME')
  356. ->asArray()->all();
  357. return $result;
  358. }
  359. public function getChannelList()
  360. {
  361. $base_user = new BaseUser();
  362. $user_main_corp = $base_user->getMainCorp();
  363. $result = self::find()
  364. ->select([
  365. 'org_id' => 'id',
  366. 'org_name' => 'supplier_name',
  367. ])
  368. ->where([
  369. 'and',
  370. ['=', 'cancel_flag', 0],
  371. ['=', 'is_disabled', 0],
  372. ['=', 'supplier_type', 301],
  373. ['or', ['=', 'main_corp_id', $user_main_corp], ['=', 'main_corp_id', 0],['!=', 'reflect_main_corp', 0]]
  374. ])
  375. ->orderBy('SUPPLIER_NAME')
  376. ->asArray()->all();
  377. return $result;
  378. }
  379. /**
  380. * Des:获取门票供应商列表
  381. * Name: getSupplierList
  382. * @author 邱颂
  383. */
  384. public function getProductSupplierList()
  385. {
  386. $base_user = new BaseUser();
  387. $user_main_corp = $base_user->getMainCorp();
  388. $result = self::find()
  389. ->select([
  390. 'org_id' => 'base_supplier.id',
  391. 'org_name' => 'base_supplier.supplier_name',
  392. ])
  393. ->from(self::tableName())
  394. ->innerJoin("base_supplier_purchase","base_supplier_purchase.supplier_id=base_supplier.id")
  395. ->where([
  396. 'and',
  397. ['=', 'base_supplier.cancel_flag', 0],
  398. ['=', 'base_supplier.is_disabled', 0],
  399. ['=', 'base_supplier.supplier_type', 187],
  400. ['=', 'base_supplier_purchase.product_type', 311],
  401. ['or', ['=', 'base_supplier.main_corp_id', $user_main_corp], ['=', 'base_supplier.main_corp_id', 0]]
  402. ])
  403. ->orderBy('SUPPLIER_NAME')
  404. ->asArray()->all();
  405. return $result;
  406. }
  407. public function getBaseSupplierPurchase()
  408. {
  409. return $this->hasMany(BaseSupplierPurchase::className(), ['SUPPLIER_ID' => 'ID'])->where(['CANCEL_FLAG' => 0]);
  410. }
  411. /**
  412. * Des:获取所有车队信息
  413. * Name: getFleetList
  414. * @return array
  415. * @author 倪宗锋
  416. */
  417. public function getFleetList()
  418. {
  419. $sql_where = [
  420. 'and',
  421. ['=', 's.cancel_flag', 0],
  422. ['=', 's.supplier_type', 187],
  423. ['=', 'p.cancel_flag', 0],
  424. ['=', 'p.product_type', 259]
  425. ];
  426. $motorcade_info = self::find()->select('p.supplier_id,s.supplier_name,s.supplier_code')
  427. ->from(['s' => self::tableName()])
  428. ->leftJoin(BaseSupplierPurchase::tableName() . ' as p', 's.id = p.supplier_id')
  429. ->where($sql_where)->groupBy('s.id')
  430. ->asArray()
  431. ->all();
  432. return $motorcade_info;
  433. }
  434. /**
  435. * Function Description:获取渠道商的列表
  436. * Function Name: getChannelInfoList
  437. * @param $id
  438. * @param $supplier_name
  439. * @param $is_disabled
  440. * @param $page_size
  441. * @param $current_page
  442. *
  443. * @return array
  444. *
  445. * @author 李健
  446. */
  447. public function getChannelInfoList($id,$supplier_name,$is_disabled,$page_size,$current_page)
  448. {
  449. $where = ['and'];
  450. $where[] = ['=','cancel_flag',0];
  451. if(!empty($id)){
  452. $where[] = ['in','id',$id];
  453. }
  454. if (!empty($is_disabled) && $is_disabled != -1) {
  455. $where[] = ['=','is_disabled',$is_disabled];
  456. }elseif($is_disabled==0){
  457. $where[] = ['=','is_disabled',$is_disabled];
  458. }
  459. if (!empty($supplier_name)) {
  460. $where[] = " supplier_name like '%%" . $supplier_name . "%%' ";
  461. }
  462. $main_corp_id = isset($_COOKIE["user_main_corp"]) ? $_COOKIE["user_main_corp"] : 0;
  463. if( $main_corp_id == 0 ) {
  464. $main_corp_id = 1;
  465. }
  466. $where[] = ['in','main_corp_id',$main_corp_id];
  467. $where[] = ['=','supplier_type','301'];
  468. $select = [
  469. 'id',
  470. 'supplier_name',
  471. 'area_id',
  472. 'is_disabled',
  473. 'supplier_type',
  474. 'manage_type'
  475. ];
  476. $offset = ($current_page-1)*$page_size;
  477. $res = self::find()
  478. ->select($select)
  479. ->from(self::tableName())
  480. ->where($where)
  481. ->offset($offset)
  482. ->limit($page_size);
  483. $sql = $res->createCommand()->rawSql;
  484. $data = $res->asArray()->all();
  485. return [
  486. 'sql'=>$sql,
  487. 'data'=>$data
  488. ];
  489. }
  490. /**
  491. * Function Description:获取渠道商总数
  492. * Function Name: getChannelInfoCount
  493. * @param $id
  494. * @param $supplier_name
  495. * @param $is_disabled
  496. *
  497. * @return int|string
  498. *
  499. * @author 李健
  500. */
  501. public function getChannelInfoCount($id,$supplier_name,$is_disabled)
  502. {
  503. $where = ['and'];
  504. $where[] = ['=','cancel_flag',0];
  505. if(!empty($id)){
  506. $where[] = ['in','id',$id];
  507. }
  508. if (!empty($is_disabled) && $is_disabled != -1) {
  509. $where[] = ['=','is_disabled',$is_disabled];
  510. }elseif($is_disabled==0){
  511. $where[] = ['=','is_disabled',$is_disabled];
  512. }
  513. if (!empty($supplier_name)) {
  514. $where[] = " supplier_name like '%%" . $supplier_name . "%%' ";
  515. }
  516. $main_corp_id = isset($_COOKIE["user_main_corp"]) ? $_COOKIE["user_main_corp"] : 0;
  517. if( $main_corp_id == 0 ) {
  518. $main_corp_id = 1;
  519. }
  520. $where[] = ['in','main_corp_id',$main_corp_id];
  521. $where[] = ['=','supplier_type','301'];
  522. $select = [
  523. 'id',
  524. 'supplier_name',
  525. 'area_id',
  526. 'is_disabled',
  527. 'supplier_type',
  528. 'manage_type'
  529. ];
  530. $count = self::find()
  531. ->select($select)
  532. ->from(self::tableName())
  533. ->where($where)
  534. ->count();
  535. return $count;
  536. }
  537. /**
  538. * Function Description:检查渠道商民是否存在
  539. * Function Name: getCheckSupplierName
  540. * @param $supplier_name
  541. * @param $main_corp_id
  542. * @param int $supplier_type
  543. * @param string $supplier_id
  544. *
  545. * @return array
  546. *
  547. * @author 李健
  548. */
  549. public function getCheckSupplierName($supplier_name,$main_corp_id,$supplier_type=301,$supplier_id='')
  550. {
  551. $select = ['supplier_name'];
  552. $where = ['and'];
  553. $where[] = ['=','cancel_flag',0];
  554. $where[] = ['=','supplier_name',$supplier_name];
  555. $where[] = ['=','supplier_type',$supplier_type];
  556. $where[] = ['=','main_corp_id',$main_corp_id];
  557. if(!empty($supplier_id)){
  558. $where[] = ['!=','id',$supplier_id];
  559. }
  560. $res = self::find()->select($select)->from(self::tableName())->where($where);
  561. $sql = $res->createCommand()->rawSql;
  562. $data = $res->asArray()->all();
  563. return [
  564. 'sql'=>$sql,
  565. 'data'=>$data
  566. ];
  567. }
  568. /**
  569. * Function Description:插入渠道商
  570. * Function Name: insertChannel
  571. * @param $user_id
  572. * @param $time
  573. * @param supplier_type
  574. * @param $supplier_name
  575. * @param $area_id
  576. * @param $manage_type
  577. * @param $company_name
  578. * @param $id_card
  579. * @param $sett_type
  580. * @param $sett_frequency
  581. * @param $account_bank
  582. * @param $account_num
  583. * @param $account_name
  584. * @param $sales_man
  585. * @param $main_corp_id
  586. * @param $deduct_type
  587. * @param $alert_balance
  588. *
  589. * @return bool
  590. *
  591. * @author 李健
  592. */
  593. public function insertChannel($user_id, $time, $supplier_type, $supplier_name, $area_id, $manage_type, $company_name, $id_card, $sett_type, $sett_frequency, $account_bank , $account_num , $account_name, $sales_man, $main_corp_id , $deduct_type, $alert_balance)
  594. {
  595. try {
  596. $this->CREATE_USER_ID = $user_id;
  597. $this->CREATE_TIME = $time;
  598. $this->SUPPLIER_TYPE = $supplier_type;
  599. $this->SUPPLIER_NAME = $supplier_name;
  600. $this->AREA_ID = $area_id;
  601. $this->MANAGE_TYPE = $manage_type;
  602. $this->COMPANY_NAME = $company_name;
  603. $this->ID_CARD = $id_card;
  604. $this->IS_DISABLED = 0;
  605. $this->SETT_TYPE = $sett_type;
  606. $this->SETT_FREQUENCY = $sett_frequency;
  607. $this->ACCOUNT_BANK = $account_bank;
  608. $this->ACCOUNT_NUM = $account_num;
  609. $this->ACCOUNT_NAME = $account_name;
  610. $this->SALES_MAN = $sales_man;
  611. $this->MAIN_CORP_ID = $main_corp_id;
  612. $this->DEDUCT_TYPE = $deduct_type;
  613. $this->ALERT_BALANCE = $alert_balance;
  614. $this->save();
  615. return Yii::$app->db->lastInsertID;
  616. } catch (Exception $e) {
  617. return false;
  618. }
  619. }
  620. /**
  621. * Function Description:插入供应商
  622. * Function Name: insertSupplier
  623. * @param $user_id
  624. * @param $time
  625. * @param $supplier_type
  626. * @param $supplier_name
  627. * @param $area_id
  628. * @param $company_name
  629. * @param $sett_type
  630. * @param $sett_frequency
  631. * @param $account_bank
  632. * @param $account_num
  633. * @param $account_name
  634. * @param $main_corp_id
  635. * @param $deduct_type
  636. * @param $alert_balance
  637. *
  638. * @return bool
  639. *
  640. * @author 李健
  641. */
  642. public function insertSupplier($user_id, $time, $supplier_type, $supplier_name, $area_id, $company_name, $sett_type, $sett_frequency, $account_bank , $account_num , $account_name, $main_corp_id , $deduct_type, $alert_balance)
  643. {
  644. try {
  645. $this->CREATE_USER_ID = $user_id;
  646. $this->CREATE_TIME = $time;
  647. $this->SUPPLIER_TYPE = $supplier_type;
  648. $this->SUPPLIER_NAME = $supplier_name;
  649. $this->AREA_ID = $area_id;
  650. $this->COMPANY_NAME = $company_name;
  651. $this->IS_DISABLED = 0;
  652. $this->SETT_TYPE = $sett_type;
  653. $this->SETT_FREQUENCY = $sett_frequency;
  654. $this->ACCOUNT_BANK = $account_bank;
  655. $this->ACCOUNT_NUM = $account_num;
  656. $this->ACCOUNT_NAME = $account_name;
  657. $this->MAIN_CORP_ID = $main_corp_id;
  658. $this->DEDUCT_TYPE = $deduct_type;
  659. $this->ALERT_BALANCE = $alert_balance;
  660. return $this->save();
  661. } catch (Exception $e) {
  662. return false;
  663. }
  664. }
  665. /**
  666. * Function Description:获取渠道商信息
  667. * Function Name: getChannel
  668. * @param $channel_id
  669. *
  670. * @return array|\yii\db\ActiveRecord[]
  671. *
  672. * @author 李健
  673. */
  674. public function getChannel($channel_id)
  675. {
  676. $select = [
  677. 'id',
  678. 'supplier_name',
  679. 'area_id',
  680. 'manage_type',
  681. 'company_name',
  682. 'id_card',
  683. 'sett_type',
  684. 'sett_frequency',
  685. 'account_bank',
  686. 'account_num',
  687. 'account_name',
  688. 'sales_man',
  689. 'deduct_type',
  690. 'alert_balance'
  691. ];
  692. $where = ['and'];
  693. $where[] = ['=','cancel_flag',0];
  694. $where[] = ['=','id',$channel_id];
  695. $res = self::find()
  696. ->select($select)
  697. ->from(self::tableName())
  698. ->where($where)
  699. ->asArray()
  700. ->all();
  701. return $res;
  702. }
  703. /**
  704. * Function Description:根据渠道号获取渠道结算方式
  705. * Function Name: getSettType
  706. * @param $id
  707. *
  708. * @return mixed
  709. *
  710. * @author 娄梦宁
  711. */
  712. public function getSettType($id){
  713. $result=self::find()->select('sett_type')->from(self::tableName())->where(['id'=>$id])->asArray()->one();
  714. return $result['sett_type'];
  715. }
  716. /**
  717. * Function Description:修改属性
  718. * Function Name: updateInfo
  719. * @param id
  720. * @param $data
  721. *
  722. * @return bool
  723. *
  724. * @author 李健
  725. */
  726. public function updateInfo($id,$data)
  727. {
  728. try {
  729. $obj = self::findOne($id);
  730. $obj->attributes = $data;
  731. return $obj->save();
  732. } catch (Exception $e) {
  733. return false;
  734. }
  735. }
  736. /**
  737. * Function Description:改变状态
  738. * Function Name: changeStatus
  739. * @param $user_id
  740. * @param $time
  741. * @param $is_disabled
  742. * @param $channel_id
  743. *
  744. * @return bool|int
  745. *
  746. * @author 李健
  747. */
  748. public function changeStatus($user_id,$time,$is_disabled,$channel_id)
  749. {
  750. try {
  751. return self::updateAll(['update_user_id' => $user_id,'update_time'=>$time,'is_disabled'=>$is_disabled],['id'=>$channel_id]);
  752. } catch (Exception $e) {
  753. return false;
  754. }
  755. }
  756. /**
  757. * Function Description:获取MainCorpId
  758. * Function Name: getMainCorpId
  759. * @param $supplier_id
  760. *
  761. * @return array|\yii\db\ActiveRecord[]
  762. *
  763. * @author 李健
  764. */
  765. public function getMainCorpId($supplier_id)
  766. {
  767. $select = ['main_corp_id'];
  768. $where = ['and'];
  769. $where[] = ['=','cancel_flag',0];
  770. $where[] = ['=','id',$supplier_id];
  771. $res = self::find()->select($select)->from(self::tableName())->where($where)->asArray()->all();
  772. return $res;
  773. }
  774. /**
  775. * Function Description:获得渠道商类型
  776. * Function Name: getProductType
  777. * @param $supplier_id
  778. *
  779. * @return array|\yii\db\ActiveRecord[]
  780. *
  781. * @author 李健
  782. */
  783. public function getProductType($supplier_id)
  784. {
  785. $select = [
  786. 'b.product_type as product_type'
  787. ];
  788. $where = ['and'];
  789. $where[] = ['=','a.cancel_flag',0];
  790. $where[] = ['=','b.cancel_flag',0];
  791. $where[] = ['=','b.product_type',25];
  792. $where[] = ['=','a.id',$supplier_id];
  793. $res = self::find()
  794. ->select($select)
  795. ->from(self::tableName().' a')
  796. ->innerJoin(BaseSupplierPurchase::tableName().' b','a.id=b.supplier_id')
  797. ->where($where)
  798. ->asArray()
  799. ->all();
  800. return $res;
  801. }
  802. /**
  803. * Function Description:获取供应商信息
  804. * Function Name: getSupplierInfo
  805. * @param $supplier_name
  806. * @param $is_disabled
  807. * @param $supplier_id
  808. * @param $page_size
  809. * @param $current
  810. *
  811. * @return array|\yii\db\ActiveRecord[]
  812. *
  813. * @author 李健
  814. */
  815. public function getSupplierInfo($supplier_name, $is_disabled,$supplier_id,$page_size,$current)
  816. {
  817. $select = [
  818. 'id',
  819. 'supplier_name',
  820. 'area_id',
  821. 'is_disabled',
  822. 'supplier_type'
  823. ];
  824. $where = ['and'];
  825. $where[] = ['=','cancel_flag',0];
  826. $where[] = ['=','supplier_type',187];
  827. if (!empty($is_disabled) && $is_disabled != -1) {
  828. $where[] = ['=','is_disabled',$is_disabled];
  829. }elseif($is_disabled==0){
  830. $where[] = ['=','is_disabled',$is_disabled];
  831. }
  832. if (!empty($supplier_name)) {
  833. $where[] = " supplier_name like '%%" . $supplier_name . "%%' ";
  834. }
  835. $main_corp_id = Yii::$app->request->cookies->getValue('user_main_corp',0);
  836. if( $main_corp_id != 0 ) {
  837. $main_corp_id = explode(',',$main_corp_id);
  838. $where[] = ['in','main_corp_id',$main_corp_id];
  839. }
  840. if(!empty($supplier_id)){
  841. $where[] = ['in','id',$supplier_id];
  842. }
  843. $offset = ($current - 1) * $page_size;
  844. $res = self::find()
  845. ->select($select)
  846. ->from(self::tableName())
  847. ->where($where)
  848. ->offset($offset)
  849. ->limit($page_size)
  850. ->asArray()
  851. ->all();
  852. return $res;
  853. }
  854. /**
  855. * Function Description:获取供应商总数
  856. * Function Name: getSupplierCount
  857. * @param $supplier_name
  858. * @param $is_disabled
  859. * @param $supplier_id
  860. *
  861. * @return int|string
  862. *
  863. * @author 李健
  864. */
  865. public function getSupplierCount($supplier_name, $is_disabled,$supplier_id)
  866. {
  867. $where = ['and'];
  868. $where[] = ['=','a.cancel_flag',0];
  869. $where[] = ['=','b.cancel_flag',0];
  870. $where[] = ['=','a.supplier_type',187];
  871. if (!empty($is_disabled) && $is_disabled != -1) {
  872. $where[] = ['=','is_disabled',$is_disabled];
  873. }elseif($is_disabled==0){
  874. $where[] = ['=','is_disabled',$is_disabled];
  875. }
  876. if (!empty($supplier_name)) {
  877. $where[] = " a.supplier_name like '%%" . $supplier_name . "%%' ";
  878. }
  879. $main_corp_id = Yii::$app->request->cookies->getValue('user_main_corp',0);
  880. if( $main_corp_id != 0 ) {
  881. $main_corp_id = explode(',',$main_corp_id);
  882. $where[] = ['in','a.main_corp_id',$main_corp_id];
  883. }
  884. if(!empty($supplier_id)){
  885. $where[] = ['in','a.id',$supplier_id];
  886. }
  887. $res = self::find()
  888. ->select('a.id')
  889. ->from(self::tableName().' a')
  890. ->innerJoin(BaseSupplierPurchase::tableName().' b','a.id=b.supplier_id')
  891. ->where($where)
  892. ->groupBy('b.supplier_id')
  893. ->count();
  894. return $res;
  895. }
  896. /**
  897. * Function Description:获取供应商信息
  898. * Function Name: getSupplier
  899. * @param $supply_id
  900. *
  901. * @return array|\yii\db\ActiveRecord[]
  902. *
  903. * @author 李健
  904. */
  905. public function getSupplier($supply_id)
  906. {
  907. $select = [
  908. 'supplier_name',
  909. 'area_id',
  910. 'company_name',
  911. 'sett_type',
  912. 'sett_frequency',
  913. 'account_bank',
  914. 'account_num',
  915. 'account_name',
  916. 'deduct_type',
  917. 'alert_balance'
  918. ];
  919. $where = ['and'];
  920. $where[] = ['=','cancel_flag',0];
  921. $where[] = ['=','id',$supply_id];
  922. $res = self::find()
  923. ->select($select)
  924. ->from(self::tableName())
  925. ->where($where)
  926. ->asArray()
  927. ->all();
  928. return $res;
  929. }
  930. /**
  931. * Function Description:修改供应商
  932. * Function Name: changeSupplier
  933. * @param $id
  934. * @param $data
  935. *
  936. * @return bool
  937. *
  938. * @author 李健
  939. */
  940. public function changeSupplier($id,$data)
  941. {
  942. try {
  943. $obj = self::findOne($id);
  944. $obj->attributes = $data;
  945. return $obj->save();
  946. } catch (Exception $e) {
  947. return false;
  948. }
  949. }
  950. /**
  951. * Function Description:获取订单的id
  952. * Function Name: getOrderOrg
  953. * @param $main_corp_id
  954. *
  955. * @return array|\yii\db\ActiveRecord[]
  956. *
  957. * @author 李健
  958. */
  959. public function getOrderOrg($main_corp_id)
  960. {
  961. $select = [
  962. 'ID as org_id',
  963. 'supplier_name as source',
  964. ];
  965. $where = ['and'];
  966. $where[] = ['=','cancel_flag',0];
  967. $where[] = ['=','SUPPLIER_TYPE',301];
  968. if( $main_corp_id > 0 ) {
  969. $where[] = "MAIN_CORP_ID IN(0,{$main_corp_id}) ";
  970. }
  971. if( $main_corp_id != 3 ) {
  972. $where[] = "MAIN_CORP_ID NOT IN(3) ";
  973. }
  974. $res = self::find()
  975. ->select($select)
  976. ->from(self::tableName())
  977. ->where($where)
  978. ->asArray()
  979. ->all();
  980. return $res;
  981. }
  982. /**
  983. * Function Description:得到所有可售票的渠道商
  984. * Function Name: getAllToOrg
  985. *
  986. * @return array|\yii\db\ActiveRecord[]
  987. *
  988. * @author 冒炎
  989. */
  990. public function getAllToOrg(){
  991. $select = [
  992. 'id'=>'a.id',
  993. 'supplier_name'=>'a.supplier_name'
  994. ];
  995. $main_corp_id = isset($_COOKIE["user_main_corp"]) ? $_COOKIE["user_main_corp"] : 0;
  996. if( $main_corp_id == 0 ) {
  997. $main_corp_id = 1;
  998. }
  999. $list = self::find()
  1000. ->select($select)
  1001. ->from(self::tableName() . ' a')
  1002. ->innerJoin('base_supplier_sale as b','a.id = b.supplier_id and b.cancel_flag = 0 and b.PARENT_TYPE = 311')
  1003. ->where(['and',['=','a.cancel_flag',0],['=','a.IS_DISABLED',0],['=','a.SUPPLIER_TYPE',301],['!=','a.STATUS',612],['in','a.main_corp_id',$main_corp_id]])
  1004. ->asArray()
  1005. ->all();
  1006. return $list;
  1007. }
  1008. /**
  1009. * Function Description:获取自由行渠道商
  1010. * Function Name: getTouristOrg
  1011. *
  1012. * @return array|\yii\db\ActiveRecord[]
  1013. *
  1014. * @author 冒炎
  1015. */
  1016. public function getTouristOrg(){
  1017. $select = [
  1018. 'id'=>'a.id',
  1019. 'supplier_name'=>'a.supplier_name'
  1020. ];
  1021. $main_corp_id = isset($_COOKIE["user_main_corp"]) ? $_COOKIE["user_main_corp"] : 0;
  1022. if( $main_corp_id == 0 ) {
  1023. $main_corp_id = 1;
  1024. }
  1025. $list = self::find()
  1026. ->select($select)
  1027. ->from(self::tableName() . ' a')
  1028. ->innerJoin('base_supplier_sale as b','a.id = b.supplier_id and b.cancel_flag = 0')
  1029. ->where(['and',['=','a.cancel_flag',0],['=','a.IS_DISABLED',0],['=','a.SUPPLIER_TYPE',301],['!=','a.STATUS',612],['in','a.main_corp_id',$main_corp_id]])
  1030. ->asArray()
  1031. ->all();
  1032. return $list;
  1033. }
  1034. }