Headquarters.php 44 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161
  1. <?php
  2. namespace app\controller;
  3. use app\BaseController;
  4. use app\model\Account;
  5. use app\model\AccountCompany;
  6. use think\Exception;
  7. use think\facade\Db;
  8. use think\facade\Validate;
  9. use think\facade\Cache;
  10. //【公司汇总】
  11. class Headquarters extends BaseController
  12. {
  13. //列表
  14. public function getList()
  15. {
  16. $post = $this->request->only(['code' => '', 'name' => '', 'status' => '', 'page' => 1, 'size' => 10, 'level' => '', 'account_id' => '', 'type' => ''], 'post');
  17. $condition = [['is_del', '=', 0]];
  18. if ($post['code'] != '') $condition[] = is_array($post['code']) ? ['code', 'in', $post['code']] : ['code', 'like', "%{$post['code']}%"];
  19. if ($post['name'] != '') $condition[] = ['name', 'like', "%{$post['name']}%"];
  20. if ($post['status'] != '') $condition[] = ['status', '=', $post['status']];
  21. if ($post['level'] != 1) {
  22. $companyCode = Db::name('account_company')
  23. ->where(['account_id' => $post['account_id'], 'is_del' => 0, 'status' => 1])
  24. ->column('companyCode');
  25. $condition[] = ['code', 'in', $companyCode];
  26. }
  27. // if ($post['type'] !== '') $condition[] = ['', 'exp', Db::raw("FIND_IN_SET({$post['type']},type)")];
  28. if ($post['type'] !== '') $condition[] = ['type', '=', $post['type']];
  29. //兼容原有各个接口的筛选
  30. $count = Db::name('headquarters')
  31. ->where($condition)
  32. ->count('id');
  33. $list = Db::name('headquarters')
  34. ->field('id,code,name,type,status,addtime,relation_code')
  35. ->where($condition)
  36. ->page($post['page'], $post['size'])
  37. ->order(['addtime' => 'desc', 'id' => 'desc'])
  38. ->select()
  39. ->toArray();
  40. return json_show(0, '获取成功', ['list' => $list, 'count' => $count]);
  41. }
  42. //添加
  43. public function add()
  44. {
  45. $post = $this->request->filter('trim')->post();
  46. Db::startTrans();
  47. try {
  48. switch ($post['type']) {
  49. case 1:
  50. Db::name('business')->insert($post['data']);
  51. break;
  52. case 2:
  53. Db::name('customer_info')->insert($post['data']);
  54. break;
  55. case 3:
  56. Db::name('supplier')->insert($post['data']);
  57. break;
  58. }
  59. Db::name('headquarters')
  60. ->insert([
  61. 'code' => $post['code'],
  62. 'name' => $post['name'],
  63. 'type' => $post['type'],
  64. 'invoice_title' => $post['invoice_title'],
  65. 'invoice_people' => $post['invoice_people'],
  66. 'invoice_addr' => $post['invoice_addr'],
  67. 'invoice_code' => $post['invoice_code'],
  68. 'invoice_bank' => $post['invoice_bank'],
  69. 'invoice_bankNo' => $post['invoice_bankNo'],
  70. 'invoice_img' => $post['invoice_img'],
  71. 'remark' => $post['remark'],
  72. 'status' => $post['status'],
  73. 'is_del' => 0,
  74. 'creater' => $post['creater'],
  75. 'createrid' => $post['createrid'],
  76. 'addtime' => date('Y-m-d H:i:s'),
  77. 'updater' => $post['updater'],
  78. 'updaterid' => $post['updaterid'],
  79. 'updatetime' => date('Y-m-d H:i:s'),
  80. ]);
  81. Db::commit();
  82. Cache::store("redis")->handler()->lpush("companycopy",$post);
  83. return json_show(0, '添加成功');
  84. } catch (Exception $e) {
  85. Db::rollback();
  86. return json_show(1002, '添加失败,' . $e->getMessage());
  87. }
  88. }
  89. //编辑
  90. public function update()
  91. {
  92. $post = $this->request->filter('trim')->post();
  93. Db::startTrans();
  94. try {
  95. switch ($post['type']) {
  96. case 1:
  97. Db::name('business')->where(['companyNo' => $post['data']['companyNo'], 'is_del' => 0])->update($post['data']);
  98. break;
  99. case 2:
  100. Db::name('customer_info')->where(['companyNo' => $post['data']['companyNo'], 'is_del' => 0])->update($post['data']);
  101. break;
  102. case 3:
  103. Db::name('supplier')->where(['code' => $post['data']['code'], 'is_del' => 0])->update($post['data']);
  104. break;
  105. }
  106. Db::name('headquarters')
  107. ->where(['code' => $post['code'], 'is_del' => 0])
  108. ->update([
  109. 'code' => $post['code'],
  110. 'name' => $post['name'],
  111. 'type' => $post['type'],
  112. 'invoice_title' => $post['invoice_title'],
  113. 'invoice_people' => $post['invoice_people'],
  114. 'invoice_addr' => $post['invoice_addr'],
  115. 'invoice_code' => $post['invoice_code'],
  116. 'invoice_bank' => $post['invoice_bank'],
  117. 'invoice_bankNo' => $post['invoice_bankNo'],
  118. 'invoice_img' => $post['invoice_img'],
  119. 'remark' => $post['remark'],
  120. 'updater' => $post['updater'],
  121. 'updaterid' => $post['updaterid'],
  122. 'updatetime' => date('Y-m-d H:i:s'),
  123. ]);
  124. Db::commit();
  125. Cache::store("redis")->handler()->lpush("companycopy",json_encode($post,JSON_UNESCAPED_UNICODE));
  126. return json_show(0, '修改成功');
  127. } catch (Exception $e) {
  128. Db::rollback();
  129. return json_show(1002, '修改失败,' . $e->getMessage());
  130. }
  131. }
  132. //详情
  133. public function info()
  134. {
  135. $code = $this->request->post('code', '', 'trim');
  136. if ($code == '') return json_show(1003, "参数 code 不能为空");
  137. $res = Db::name('headquarters')
  138. ->field(true)
  139. ->where(['code' => $code, 'is_del' => 0])
  140. ->findOrEmpty();
  141. if (empty($res)) return json_show(1004, '未找到相关汇总信息');
  142. switch ($res['type']) {
  143. case 1:
  144. $child = Db::name('business')
  145. ->field(true)
  146. ->where(['companyNo' => $code, 'is_del' => 0])
  147. ->findOrEmpty();
  148. break;
  149. case 2:
  150. $child = Db::name('customer_info')
  151. ->where(['companyNo' => $code, 'is_del' => 0])
  152. ->findOrEmpty();
  153. break;
  154. case 3:
  155. $child = Db::name('supplier')
  156. ->where(['code' => $code, 'is_del' => 0])
  157. ->findOrEmpty();
  158. break;
  159. }
  160. $res['child'] = $child;
  161. $res['relation_name'] =$res['relation_code']==""?'': Db::name('headquarters')->where('code',$res['relation_code'])
  162. ->value('name','');
  163. return json_show(0, '获取成功', $res);
  164. }
  165. //删除
  166. public function delete()
  167. {
  168. $param = $this->request->only(['ids', 'type', 'updater', 'updaterid'], 'post', 'trim');
  169. $val = Validate::rule([
  170. 'ids' => 'require|array|max:100',
  171. 'type|类别' => 'require|number|in:1,2,3',
  172. 'updater|操作人' => 'require|max:255',
  173. 'updaterid|操作人id' => 'require|number|gt:0',
  174. ]);
  175. if (!$val->check($param)) return json_show(1004, $val->getError());
  176. Db::startTrans();
  177. try {
  178. $date = date('Y-m-d H:i:s');
  179. $codes = [];
  180. switch ($param['type']) {
  181. case 1:
  182. $where = [['is_del', '=', 0], ['id', 'in', $param['ids']]];
  183. $codes = Db::name('business')->where($where)->column('companyNo');
  184. Db::name('business')->where($where)->update(['is_del' => 1, 'updatetime' => $date]);
  185. break;
  186. case 2:
  187. $where = [['is_del', '=', 0], ['id', 'in', $param['ids']]];
  188. $temp = Db::name('customer_info')->field('id,companyNo')->where($where)->where('status', 1)->findOrEmpty();
  189. if (!empty($temp)) throw new Exception($temp['companyNo'] . '启用状态,不允许删除');
  190. $codes = Db::name('customer_info')->where($where)->column('companyNo');
  191. Db::name('customer_info')
  192. ->where($where)
  193. ->update(['is_del' => 1, 'updatetime' => $date]);
  194. break;
  195. case 3:
  196. $where = [['is_del', '=', 0], ['id', 'in', $param['ids']]];
  197. $codes = Db::name('supplier')->where($where)->column('code');
  198. Db::name('supplier')->where($where)->update(['is_del' => 1, 'updatetime' => $date]);
  199. break;
  200. }
  201. Db::name('headquarters')
  202. ->where('is_del', 0)
  203. ->whereIn('code', $codes)
  204. ->update([
  205. 'is_del' => 1,
  206. 'updater' => $param['updater'],
  207. 'updaterid' => $param['updaterid'],
  208. 'updatetime' => date('Y-m-d H:i:s')
  209. ]);
  210. Db::commit();
  211. return json_show(0, '删除成功');
  212. } catch (Exception $exception) {
  213. Db::rollback();
  214. return json_show(1005, '删除失败,' . $exception->getMessage());
  215. }
  216. }
  217. //启禁用
  218. public function status()
  219. {
  220. $param = $this->request->only(['id', 'type', 'status', 'updater', 'updaterid'], 'post', 'trim');
  221. $val = Validate::rule([
  222. 'id' => 'require|number|gt:0',
  223. 'type|类别' => 'require|number|in:1,2,3',
  224. 'status|状态' => 'require|number|in:0,1',
  225. 'updater|操作人' => 'require|max:255',
  226. 'updaterid|操作人id' => 'require|number|gt:0',
  227. ]);
  228. if (!$val->check($param)) return json_show(1004, $val->getError());
  229. Db::startTrans();
  230. try {
  231. $date = date('Y-m-d H:i:s');
  232. $code = '';
  233. switch ($param['type']) {
  234. case 1:
  235. $tmp = Db::name('business')
  236. ->field('id,companyNo code,status')
  237. ->where(['id' => $param['id'], 'is_del' => 0])
  238. ->findOrEmpty();
  239. if (empty($tmp)) throw new Exception('未找到对应数据');
  240. if ($tmp['status'] == $param['status']) throw new Exception('操作重复');
  241. Db::name('business')
  242. ->where(['id' => $param['id'], 'is_del' => 0])
  243. ->where('status', '<>', $param['status'])
  244. ->update([
  245. 'status' => $param['status'],
  246. 'updatetime' => $date
  247. ]);
  248. break;
  249. case 2:
  250. $tmp = Db::name('customer_info')
  251. ->field('id,status,companyNo code')
  252. ->where(['is_del' => 0, 'id' => $param['id']])
  253. ->findOrEmpty();
  254. if (empty($tmp)) throw new Exception('未找到对应数据');
  255. if ($tmp['status'] == $param['status']) throw new Exception('操作重复');
  256. Db::name('customer_info')
  257. ->where(['id' => $param['id'], 'is_del' => 0])
  258. ->where('status', '<>', $param['status'])
  259. ->update([
  260. 'status' => $param['status'],
  261. 'updatetime' => $date
  262. ]);
  263. break;
  264. case 3:
  265. $tmp = Db::name('supplier')
  266. ->where(['id' => $param['id'], 'is_del' => 0])
  267. ->field('id,code,status')
  268. ->findOrEmpty();
  269. if (empty($tmp)) throw new Exception('该供应商不存在');
  270. if ($tmp['status'] == $param['status']) throw new Exception('操作重复');
  271. Db::name('supplier')
  272. ->where(['id' => $param['id'], 'is_del' => 0])
  273. ->where('status', '<>', $param['status'])
  274. ->update([
  275. 'status' => $param['status'],
  276. 'updatetime' => $date
  277. ]);
  278. break;
  279. }
  280. Db::name('headquarters')
  281. ->where(['code' => $tmp['code'], 'is_del' => 0])
  282. ->where('status', '<>', $param['status'])
  283. ->update([
  284. 'status' => $param['status'],
  285. 'updater' => $param['updater'],
  286. 'updaterid' => $param['updaterid'],
  287. 'updatetime' => $date
  288. ]);
  289. Db::commit();
  290. return json_show(0, '操作成功');
  291. } catch (Exception $exception) {
  292. Db::rollback();
  293. return json_show(1005, '操作失败,' . $exception->getMessage());
  294. }
  295. }
  296. //获取指定编码和名称
  297. public function getCodeAndName()
  298. {
  299. $companyNo = $this->request->filter('trim')->post('code');
  300. $res_1 = Db::name('headquarters')
  301. ->where('is_del', 0)
  302. ->whereIn('code', $companyNo)
  303. ->column('name', 'code');
  304. // $res_2 = Db::name('headquarters')
  305. // ->where('is_del', 0)
  306. // ->whereIn('relation_code', $companyNo)
  307. // ->column('name', 'relation_code');
  308. return json_show(0, '请求成功', $res_1);
  309. }
  310. //业务公司
  311. public function bGetList()
  312. {
  313. $param = $this->request->only([
  314. 'page' => 1,
  315. 'size' => 10,
  316. 'company' => '',
  317. 'status' => '',
  318. 'creater' => '',
  319. 'start' => '',
  320. 'end' => '',
  321. 'company_name' => '',
  322. ], 'post', 'trim');
  323. $where = [['a.is_del', "=", 0]];
  324. if ($param['company'] !== "") $where[] = ["a.company", "like", '%' . $param['company'] . '%'];
  325. if ($param['status'] !== "") $where[] = ["a.status", '=', $param['status']];
  326. if ($param['creater'] !== "") $where[] = ["a.creater", "like", '%' . $param['creater'] . '%'];
  327. if ($param['start'] !== "") $where[] = ["a.addtime", '>=', $param['start']];
  328. if ($param['end'] !== "") $where[] = ["a.addtime", '<=', $param['end'] . ' 23:59:59'];
  329. // if ($param['company_name'] !== "") $where[] = ["a.createrid", 'in', $param['company_name']];
  330. $count = Db::name('business')
  331. ->alias('a')
  332. // ->leftJoin("depart_user u", "u.uid=a.createrid AND u.is_del=0")
  333. ->where($where)
  334. ->count('a.id');
  335. $list = Db::name('business')
  336. ->alias('a')
  337. ->field(true)
  338. // ->field('a.*,u.itemid')
  339. // ->leftJoin("depart_user u", "u.uid=a.createrid AND u.is_del=0")
  340. ->where($where)
  341. ->page($param['page'], $param['size'])
  342. ->order(['addtime' => 'desc', 'id' => 'desc'])
  343. ->select()
  344. ->toArray();
  345. // $all_codes = Db::name('supplier_contact')
  346. // ->whereIn('code', array_column($list, 'code'))
  347. // ->column("id,contactor,mobile", 'code');
  348. //获取开通账号的供应商
  349. // $account = checkHasAccountBySupplierNos(array_column($list,'code'));
  350. foreach ($list as &$value) {
  351. $value['company_name'] = '';
  352. }
  353. return json_show("0", "获取成功", ['list' => $list, 'count' => $count]);
  354. }
  355. public function bCreate()
  356. {
  357. $param = $this->request->filter('trim')->post('');
  358. Db::startTrans();
  359. try {
  360. $tmp = Db::name('business')
  361. ->field('id')
  362. ->where(['company' => $param['company'], 'is_del' => 0])
  363. ->findOrEmpty();
  364. if (!empty($tmp)) throw new Exception('该公司名称已存在');
  365. Db::name('business')->insert($param);
  366. Db::name('headquarters')->insert([
  367. 'code' => $param['companyNo'],
  368. 'name' => $param['company'],
  369. 'type' => 1,
  370. 'invoice_title' => '',
  371. 'invoice_people' => '',
  372. 'invoice_addr' => $param['inv_addr'],
  373. 'invoice_mobile' => $param['mobile'],
  374. 'invoice_code' => $param['inv_code'],
  375. 'invoice_bank' => $param['inv_bank'],
  376. 'invoice_bankNo' => $param['inv_bankNo'],
  377. 'invoice_img' => $param['license_img'],
  378. 'remark' => '',
  379. 'status' => $param['status'],
  380. 'is_del' => $param['is_del'],
  381. 'creater' => $param['creater'],
  382. 'createrid' => $param['createrid'],
  383. 'addtime' => $param['addtime'],
  384. 'updater' => $param['creater'],
  385. 'updaterid' => $param['createrid'],
  386. 'updatetime' => $param['updatetime'],
  387. ]);
  388. Db::commit();
  389. $param['type']=1;
  390. Cache::store("redis")->handler()->lpush("companycopy",json_encode($param,JSON_UNESCAPED_UNICODE));
  391. return json_show(0, '添加成功');
  392. } catch (Exception $exception) {
  393. Db::rollback();
  394. return json_show(1003, $exception->getMessage());
  395. }
  396. }
  397. public function bInfo()
  398. {
  399. $companyNo = $this->request->post('companyNo', '', 'trim');
  400. if ($companyNo == "") return json_show(1004, "参数companyNo不能为空");
  401. $info = Db::name('business')
  402. ->alias('a')
  403. ->field('a.*,b.company_type')
  404. ->leftJoin('company_type b', 'b.id=a.type AND b.is_del=0')
  405. ->where(['a.companyNo' => $companyNo, 'a.is_del' => 0])
  406. ->findOrEmpty();
  407. if (empty($info)) return json_show(1002, "未找到数据");
  408. return json_show(0, '获取成功', $info);
  409. }
  410. public function bEdit()
  411. {
  412. $param = $this->request->filter('trim')->post('');
  413. Db::startTrans();
  414. try {
  415. $info = Db::name('business')
  416. ->field('id,companyNo')
  417. ->where(['id' => $param['id'], 'is_del' => 0])
  418. ->findOrEmpty();
  419. if (empty($info)) throw new Exception('未找到数据');
  420. Db::name('business')
  421. ->where(['id' => $param['id'], 'is_del' => 0])
  422. ->update(array_merge($param, ['updatetime' => date("Y-m-d H:i:s")]));
  423. Db::name('headquarters')
  424. ->where(['code' => $info['companyNo'], 'is_del' => 0])
  425. ->update([
  426. 'invoice_addr' => $param['inv_addr'],
  427. 'invoice_mobile' => $param['invoice_mobile'],
  428. 'invoice_bank' => $param['inv_bank'],
  429. 'invoice_bankNo' => $param['inv_bankNo'],
  430. 'invoice_title' => $param['invoice_title'],
  431. 'updatetime' => date("Y-m-d H:i:s"),
  432. ]);
  433. Db::commit();
  434. $param['type']=1;
  435. Cache::store("redis")->handler()->lpush("companycopy",json_encode($param,JSON_UNESCAPED_UNICODE));
  436. return json_show(0, '修改成功');
  437. } catch (Exception $exception) {
  438. Db::rollback();
  439. return json_show(1003, $exception->getMessage());
  440. }
  441. }
  442. public function bTitle()
  443. {
  444. $param = $this->request->only(['company_type' => '', 'status' => ''], 'post', 'trim');
  445. $rs = Db::name('company_type')->where('is_del', 0);
  446. if ($param['company_type'] != '') $rs->whereLike('company_type', '%' . $param['company_type'] . '%');
  447. if ($param['status'] != '') $rs->where('status', $param['status']);
  448. $list = $rs->select()->toArray();
  449. return json_show(0, '获取成功', $list);
  450. }
  451. //供应商
  452. public function sGetList()
  453. {
  454. $param = $this->request->only(['page' => 1, 'size' => 10, 'name' => '', 'code' => '', 'creater' => '', 'person' => '', 'status' => '', 'ocr_status' => '', 'start' => '', 'end' => '', 'company_name' => '', 'is_platform' => '', 'more_code' => ''], 'post', 'trim');
  455. $where = [['s.is_del', "=", 0]];
  456. if ($param['name'] !== "") $where[] = ["s.name", "like", '%' . $param['name'] . '%'];
  457. if ($param['code'] !== "") $where[] = ["s.code", "like", '%' . $param['code'] . '%'];
  458. if ($param['more_code'] !== "") $where[] = ["s.code", "in", $param['more_code']];
  459. if ($param['creater'] !== "") $where[] = ["s.creater", "like", '%' . $param['creater'] . '%'];
  460. if ($param['person'] !== "") $where[] = ["s.person", "like", '%' . $param['person'] . '%'];
  461. if ($param['status'] !== "") $where[] = ["s.status", '=', $param['status']];
  462. if ($param['ocr_status'] !== "") $where[] = ["s.ocr_status", '=', $param['ocr_status']];
  463. if ($param['start'] !== "") $where[] = ["s.addtime", '>=', $param['start']];
  464. if ($param['end'] !== "") $where[] = ["s.addtime", '<=', $param['end'] . ' 23:59:59'];
  465. if ($param['is_platform'] !== "") $where[] = ["s.is_platform", '=', $param['is_platform']];
  466. // if ($param['company_name'] !== "") $where[] = ["s.createrid", 'in', $param['company_name']];
  467. $count = Db::name('supplier')
  468. ->alias('s')
  469. // ->leftJoin("depart_user u", "u.uid=s.createrid AND u.is_del=0")
  470. ->where($where)
  471. ->count('s.id');
  472. $list = Db::name('supplier')
  473. ->alias('s')
  474. ->field(true)
  475. // ->field('s.*,u.itemid')
  476. // ->leftJoin("depart_user u", "u.uid=s.createrid AND u.is_del=0")
  477. ->where($where)
  478. ->page($param['page'], $param['size'])
  479. ->order("addtime desc")
  480. ->select()
  481. ->toArray();
  482. // $all_codes = Db::name('supplier_contact')
  483. // ->whereIn('code', array_column($list, 'code'))
  484. // ->column("id,contactor,mobile", 'code');
  485. //获取开通账号的供应商
  486. // $account = checkHasAccountBySupplierNos(array_column($list,'code'));
  487. foreach ($list as &$value) {
  488. $value['company_name'] = '';
  489. }
  490. return json_show("0", "获取成功", ['list' => $list, 'count' => $count]);
  491. }
  492. public function sCreate()
  493. {
  494. $param = $this->request->only(['data', 'contact'], 'post', 'trim');
  495. $val = Validate::rule([
  496. 'data|供应商数据' => 'require|array',
  497. 'contact|联系人' => 'require|array',
  498. ]);
  499. if ($val->check($param) == false) return json_show(1004, $val->getError());
  500. Db::startTrans();
  501. try {
  502. $tmp = Db::name('supplier')
  503. ->field('id')
  504. ->where(['name' => $param['data']['name'], 'is_del' => 0])
  505. ->findOrEmpty();
  506. if (!empty($tmp)) throw new Exception('该供应商名称已存在');
  507. $id = Db::name('supplier')->insertGetId($param['data']);
  508. Db::name('supplier_contact')->insert($param['contact']);
  509. Db::name('headquarters')->insert([
  510. 'code' => $param['data']['code'],
  511. 'name' => $param['data']['name'],
  512. 'type' => 3,
  513. 'invoice_title' => '',
  514. 'invoice_people' => '',
  515. 'invoice_addr' => '',
  516. 'invoice_mobile' => $param['contact']['mobile'],
  517. 'invoice_code' => '',
  518. 'invoice_bank' => '',
  519. 'invoice_bankNo' => '',
  520. 'invoice_img' => $param['data']['license_img'],
  521. 'remark' => $param['data']['remark'],
  522. 'status' => $param['data']['status'],
  523. 'is_del' => $param['data']['is_del'],
  524. 'creater' => $param['data']['creater'],
  525. 'createrid' => $param['data']['createrid'],
  526. 'addtime' => $param['data']['addtime'],
  527. 'updater' => $param['data']['creater'],
  528. 'updaterid' => $param['data']['createrid'],
  529. 'updatetime' => $param['data']['updatetime'],
  530. ]);
  531. Db::commit();
  532. $param['data']['type']=3;
  533. Cache::store("redis")->handler()->lpush("companycopy",json_encode($param['data'],JSON_UNESCAPED_UNICODE));
  534. return json_show(0, '添加成功', ['id' => $id]);
  535. } catch (Exception $exception) {
  536. Db::rollback();
  537. return json_show(1003, $exception->getMessage());
  538. }
  539. }
  540. public function sInfo()
  541. {
  542. $code = $this->request->post('code', '', 'trim');
  543. if ($code == "") return json_show(1004, "参数code不能为空");
  544. $info = Db::name('supplier')
  545. ->alias('a')
  546. ->field('a.*,b.contactor,b.mobile,b.position,b.email,b.telephone')
  547. ->leftJoin('supplier_contact b', 'b.code=a.code AND b.is_del=0')
  548. ->where(['a.code' => $code, 'a.is_del' => 0])
  549. ->findOrEmpty();
  550. if (empty($info)) return json_show(1002, "未找到供应商数据");
  551. return json_show(0, '获取成功', $info);
  552. }
  553. public function sEdit()
  554. {
  555. $param = $this->request->only(['data', 'contact'], 'post', 'trim');
  556. $val = Validate::rule([
  557. 'data|供应商数据' => 'require|array',
  558. 'contact|联系人' => 'require|array',
  559. ]);
  560. if ($val->check($param) == false) return json_show(1004, $val->getError());
  561. Db::startTrans();
  562. try {
  563. $tmp = Db::name('supplier')
  564. ->field('id')
  565. ->where(['name' => $param['data']['name'], 'is_del' => 0])
  566. ->where('id', '<>', $param['data']['id'])
  567. ->findOrEmpty();
  568. if (!empty($tmp)) throw new Exception('该供应商名称已存在');
  569. $id = Db::name('supplier')
  570. ->where(['id' => $param['data']['id'], 'is_del' => 0])
  571. ->strict(false)
  572. ->update($param['data']);
  573. $tmp = Db::name('supplier_contact')
  574. ->field('id')
  575. ->where(['code' => $param['contact']['code'], 'is_del' => 0])
  576. ->findOrEmpty();
  577. if (empty($tmp)) Db::name('supplier_contact')->insert(array_merge($param['contact'], ['addtime' => $param['contact']['updatetime']]));
  578. else Db::name('supplier_contact')->where(['id' => $tmp['id'], 'is_del' => 0])->update($param['contact']);
  579. Db::name('headquarters')
  580. ->where(['code' => $param['contact']['code'], 'is_del' => 0])
  581. ->update([
  582. 'name' => $param['data']['name'],
  583. 'type' => 3,
  584. 'invoice_title' => '',
  585. 'invoice_people' => '',
  586. 'invoice_addr' => '',
  587. 'invoice_mobile' => $param['contact']['mobile'],
  588. 'invoice_code' => '',
  589. 'invoice_bank' => '',
  590. 'invoice_bankNo' => '',
  591. 'invoice_img' => $param['data']['license_img'],
  592. 'remark' => $param['data']['remark'],
  593. 'is_del' => $param['data']['is_del'],
  594. 'updater' => $param['data']['updater'],
  595. 'updaterid' => $param['data']['updaterid'],
  596. 'updatetime' => $param['data']['updatetime'],
  597. ]);
  598. Db::commit();
  599. $param['data']['type']=3;
  600. Cache::store("redis")->handler()->lpush("companycopy",json_encode($param['data'],JSON_UNESCAPED_UNICODE));
  601. return json_show(0, '修改成功', ['id' => $id]);
  602. } catch (Exception $exception) {
  603. Db::rollback();
  604. return json_show(1003, $exception->getMessage());
  605. }
  606. }
  607. //客户
  608. public function cInfo()
  609. {
  610. $companyNo = $this->request->post('companyNo', '', 'trim');
  611. $info = Db::name('customer_info')
  612. ->where(['is_del' => 0, 'companyNo' => $companyNo])
  613. ->field(true)
  614. ->findOrEmpty();
  615. $info['member'] = Db::name("customer_member")
  616. ->where(['companyNo' => $companyNo, "is_del" => 0])
  617. ->order('id')
  618. ->select()
  619. ->toArray();
  620. return json_show(0, "获取成功", $info);
  621. }
  622. public function cTitle()
  623. {
  624. $param = $this->request->only([
  625. 'page' => 1,
  626. 'size' => 10,
  627. 'companyNo' => '',
  628. 'companyName' => '',
  629. 'itemid' => '',
  630. ], 'post', 'trim');
  631. $where [] = ['is_del', "=", 0];
  632. if ($param['companyNo'] != '') $where[] = ['companyNo', 'like', '%' . $param['companyNo'] . '%'];
  633. if ($param['companyName'] != '') $where[] = ['companyName', 'like', '%' . $param['companyName'] . '%'];
  634. if ($param['itemid'] != '') $where[] = ['itemid', '=', $param['itemid']];
  635. $count = Db::name('customer_info')
  636. ->where($where)
  637. ->count('id');
  638. $item = Db::name('customer_info')
  639. ->where($where)
  640. ->field("id,companyNo,companyName,area,LENGTH(companyName) as weight")
  641. ->order(['weight' => 'asc', 'id' => 'desc'])
  642. ->page($param['page'], $param['size'])
  643. ->select()
  644. ->toArray();
  645. return json_show(0, "获取成功", ['item' => $item, 'count' => $count]);
  646. }
  647. public function cCreate()
  648. {
  649. $param = $this->request->only([
  650. 'companyName',
  651. 'parent' => 0,
  652. 'customer_member',
  653. 'uid',
  654. 'uname',
  655. 'branch',
  656. 'middle',
  657. 'area',
  658. ], 'post', 'trim');
  659. $val = Validate::rule([
  660. 'companyName|客户名称' => 'require',
  661. 'customer_member|联系方式' => 'require|array|max:100',
  662. 'uid' => 'require|number|gt:0',
  663. 'uname|创建人' => 'require',
  664. 'branch|省级' => 'require',
  665. 'middle|市级' => 'require',
  666. 'area|区域' => 'require',
  667. ]);
  668. if ($val->check($param) == false) return json_show(1004, $val->getError());
  669. $companyNo = makeNo("KH");
  670. $rename = Db::name('customer_org1')
  671. ->field('id')
  672. ->where(['is_del' => 0, 'id' => $param['parent']])
  673. ->findOrEmpty();
  674. $item = Db::name('customer_info')
  675. ->field('id')
  676. ->where(['itemid' => $rename['id'] ?? 0, 'companyName' => $param['companyName'], 'is_del' => 0])
  677. ->findOrEmpty();
  678. if (!empty($item)) return json_show(1002, "公司名称已存在");
  679. $createrid = $param['uid'];//isset($user["data"]['id']) ? $user["data"]['id'] : "";
  680. $creater = $param['uname'];//isset($user["data"]['nickname']) ? $user["data"]['nickname'] : "";
  681. Db::startTrans();
  682. try {
  683. $date = date('Y-m-d H:i:s');
  684. $data = [
  685. "companyNo" => $companyNo,
  686. "companyName" => $param['companyName'],
  687. "parent" => $param['parent'],
  688. "itemid" => $param['parent'],
  689. "area" =>$param['area'],
  690. "status" => 0,
  691. "branch" =>$param['branch'],
  692. "middle" =>$param['middle'],
  693. "is_del" => 0,
  694. "createrid" => $createrid,
  695. "creater" => $creater,
  696. "addtime" => $date,
  697. "updatetime" => $date,
  698. ];
  699. $datainfo = Db::name('customer_info')->insert($data);
  700. if ($datainfo) {
  701. $var = [];
  702. foreach ($param['customer_member'] as $value) {
  703. $var[] = [
  704. 'commobile' => $value['commobile'] ?? '',
  705. 'comtel' => '',
  706. 'contactor' => $value['contactor'] ?? '',
  707. 'position' => $value['position'] ?? '',
  708. 'wxaccount' => $value['wxaccount'] ?? '',
  709. 'qqaccount' => $value['qqaccount'] ?? '',
  710. 'email' => $value['email'] ?? '',
  711. 'comdepart' => $value['comdepart'] ?? '',
  712. 'status' => $value['status'] ?? '',
  713. 'createrid' => $createrid,
  714. 'creater' => $creater,
  715. 'companyNo' => $companyNo,
  716. 'is_del' => 0,
  717. 'addtime' => $date,
  718. 'updatetime' => $date,
  719. ];
  720. }
  721. $vp = Db::name('customer_member')->insertAll($var);
  722. if ($vp == "") throw new Exception('新建联系人失败');
  723. //汇总表
  724. Db::name('headquarters')
  725. ->insert([
  726. 'code' => $companyNo,
  727. 'name' => $param['companyName'],
  728. 'type' => 2,
  729. 'creater' => $param['uname'],
  730. 'createrid' => $param['uid'],
  731. "addtime" => $date,
  732. 'updater' => $param['uname'],
  733. 'updaterid' => $param['uid'],
  734. "updatetime" => $date,
  735. ]);
  736. Db::commit();
  737. $data['type']=2;
  738. Cache::store("redis")->handler()->lpush("companycopy",json_encode($data,JSON_UNESCAPED_UNICODE));
  739. return json_show(0, "新建成功");
  740. } else throw new Exception('新建失败');
  741. } catch (Exception $e) {
  742. Db::rollback();
  743. return json_show(1005, $e->getMessage());
  744. }
  745. }
  746. public function cList()
  747. {
  748. $param = $this->request->only(['page' => 1, 'size' => 10, 'companyName' => '', 'status' => '', 'creater' => '', 'start' => '', 'end' => ''], 'post', 'trim');
  749. $where = [["a.is_del", "=", 0]];
  750. if ($param['companyName'] != "") $where[] = ['b.companyName', "like", '%' . $param['companyName'] . '%'];
  751. if ($param['status'] !== "") $where[] = ['status', "=", $param['status']];
  752. if ($param['creater'] != "") $where[] = ['a.creater', "like", '%' . $param['creater'] . '%'];
  753. if ($param['start'] !== "") $where[] = ['a.addtime', ">=", date('Y-m-d H:i:s', strtotime($param['start']))];
  754. if ($param['end'] !== "") $where[] = ['a.addtime', "<", date('Y-m-d H:i:s', strtotime($param['end']) + 24 * 3600)];
  755. $count = Db::name('customer_member')
  756. ->alias('a')
  757. ->leftJoin('customer_info b', "b.companyNo=a.companyNo")
  758. ->where($where)
  759. ->count('a.id');
  760. $total = ceil($count / $param['size']);
  761. $page = $param['page'] >= $total ? $total : $param['page'];
  762. $list = Db::name('customer_member')
  763. ->alias('a')
  764. ->leftJoin('customer_info b', "b.companyNo=a.companyNo")
  765. ->where($where)
  766. ->page($page, $param['size'])
  767. ->order("addtime desc")
  768. ->field("a.*,b.companyName,b.parent,b.area")
  769. ->select()
  770. ->toArray();
  771. return json_show(0, "获取成功", ['list' => $list, 'count' => $count]);
  772. }
  773. public function cEdit()
  774. {
  775. $param = $this->request->only([
  776. 'id',
  777. 'companyName',
  778. 'parent',
  779. 'customer_member',
  780. 'uid',
  781. 'uname',
  782. 'branch',
  783. 'middle',
  784. 'area',
  785. ], 'post', 'trim');
  786. $val = Validate::rule([
  787. 'id' => 'require|number|gt:0',
  788. 'companyName|客户名称' => 'require',
  789. 'parent' => 'require',
  790. 'customer_member|联系方式' => 'require|array|max:100',
  791. 'uid' => 'require|number|gt:0',
  792. 'uname|修改人' => 'require',
  793. 'branch|省级'=> 'require',
  794. 'middle|市级'=> 'require',
  795. 'area|区域'=> 'require',
  796. ]);
  797. if ($val->check($param) == false) return json_show(1004, $val->getError());
  798. $idinfo = Db::name('customer_info')
  799. ->field('id,status,companyNo')
  800. ->where(['id' => $param['id'], 'is_del' => 0])
  801. ->findOrEmpty();
  802. if (empty($idinfo)) return json_show(1004, "未找到数据");
  803. if ($idinfo['status'] == 1) return json_show(1002, "状态是启用状态,无法编辑");
  804. $rename = Db::name('customer_org1')
  805. ->where(['is_del' => 0, 'id' => $param['parent']])
  806. ->field('id')
  807. ->findOrEmpty();
  808. $item = Db::name('customer_info')
  809. ->field('id')
  810. ->where(['itemid' => $rename['id'] ?? 0, 'companyName' => $param['companyName'], 'is_del' => 0])
  811. ->where('id', '<>', $param['id'])
  812. ->findOrEmpty();
  813. if (!empty($item)) return json_show(1002, "公司名称已存在");
  814. $createrid = $param['uid'];//isset($user["data"]['id']) ? $user["data"]['id'] : "";
  815. $creater = $param['uname'];//isset($user["data"]['nickname']) ? $user["data"]['nickname'] : "";
  816. Db::startTrans();
  817. try {
  818. $date = date('Y-m-d H:i:s');
  819. $data = [
  820. "id" => $param['id'],
  821. "companyName" => $param['companyName'],
  822. "area" =>$param['area'],
  823. "branch" =>$param['branch'],
  824. "middle" =>$param['middle'],
  825. "parent" => $param['parent'],
  826. "updatetime" => $date,
  827. ];
  828. $datainfo = Db::name('customer_info')->save($data);
  829. if ($datainfo) {
  830. foreach ($param['customer_member'] as $value) {
  831. $item = [];
  832. $item['commobile'] = isset($value['commobile']) ? $value['commobile'] : "";
  833. $item['comtel'] = "";
  834. isset($value['id']) && $value['id'] !== "" ? $item['id'] = $value['id'] : '';
  835. $item['contactor'] = isset($value['contactor']) ? $value['contactor'] : "";
  836. $item['position'] = isset($value['position']) ? $value['position'] : "";
  837. $item['wxaccount'] = isset($value['wxaccount']) ? $value['wxaccount'] : "";
  838. $item['qqaccount'] = isset($value['qqaccount']) ? $value['qqaccount'] : "";
  839. $item['email'] = isset($value['email']) ? $value['email'] : "";
  840. $item['comdepart'] = isset($value['comdepart']) ? $value['comdepart'] : "";
  841. $item['status'] = $value['status'];
  842. $item['createrid'] = $createrid;
  843. $item['creater'] = $creater;
  844. $item['companyNo'] = isset($idinfo['companyNo']) ? $idinfo['companyNo'] : "";
  845. $item['is_del'] = 0;
  846. $item['addtime'] = $date;
  847. $item['updatetime'] = $date;
  848. $vp = Db::name('customer_member')->save($item);
  849. if ($vp == false) throw new Exception('更新失败');
  850. }
  851. //更新汇总表
  852. Db::name('headquarters')
  853. ->where(['is_del' => 0, 'type' => 2, 'code' => $idinfo['companyNo']])
  854. ->update([
  855. 'name' => $param['companyName'],
  856. 'updater' => $param['uname'],
  857. 'updaterid' => $param['uid'],
  858. "updatetime" => $date,
  859. ]);
  860. Db::commit();
  861. return json_show(0, "更新成功");
  862. } else throw new Exception("更新失败");
  863. } catch (Exception $e) {
  864. Db::rollback();
  865. return json_show(1005, $e->getMessage());
  866. }
  867. }
  868. //供应商升级成业务公司
  869. public function supplerUpgrade()
  870. {
  871. $post = $this->request->only(['code', 'inv_bank', 'inv_bankNo', 'inv_addr', 'invoice_mobile', 'uid', 'uname', 'invoice_title'], 'post', 'trim');
  872. $val = Validate::rule([
  873. 'code|供应商编码' => 'require',
  874. 'inv_bank|银行名称' => 'require|max:255',
  875. 'inv_bankNo|银行卡号' => 'require|number',
  876. 'inv_addr|联系地址' => 'require|max:255',
  877. 'invoice_mobile' => 'require',
  878. 'invoice_title|公司抬头' => 'require',
  879. ]);
  880. if ($val->check($post) == false) return json_show(1004, $val->getError());
  881. $res = Db::name('supplier')
  882. ->alias('a')
  883. ->field('a.id,a.status,a.nature,b.contactor,b.mobile,a.name,a.code,a.registercode,a.legaler,a.registertime,a.addr,a.scope,a.license_img,a.is_upgrade')
  884. ->leftJoin('supplier_contact b', 'b.code=a.code')
  885. ->where(['a.code' => $post['code'], 'a.is_del' => 0])
  886. ->findOrEmpty();
  887. if (empty($res)) return json_show(1004, '该供应商不存在');
  888. if ($res['status'] != 1) return json_show(1004, '该供应商已禁用');
  889. if ($res['is_upgrade'] == 1) return json_show(1004, '不能重复升级');
  890. $temp = Db::name('company_type')
  891. ->field('id')
  892. ->where(['company_type' => $res['nature'], 'is_del' => 0])
  893. ->findOrEmpty();
  894. // if (empty($temp)) return json_show(1004, '对应公司类型不存在');
  895. Db::startTrans();
  896. try {
  897. $date = date('Y-m-d H:i:s');
  898. $business_code = makeNo('GS');
  899. //业务公司列表
  900. Db::name('business')
  901. ->insert([
  902. 'company' => $res['name'],
  903. 'companyNo' => $business_code,
  904. 'inv_code' => $res['registercode'],
  905. 'company_type' => $res['nature'],
  906. 'type' => $temp['id'] ?? 0,
  907. 'creater' => $post['uname'],
  908. 'createrid' => $post['uid'],
  909. 'inv_legaler' => $res['legaler'],
  910. 'inv_time' => $res['registertime'],
  911. 'inv_addr' => $post['inv_addr'],
  912. 'inv_bank' => $post['inv_bank'],
  913. 'inv_bankNo' => $post['inv_bankNo'],
  914. 'contactor' => $res['contactor'],
  915. 'mobile' => $res['mobile'],
  916. 'addr' => $res['addr'],
  917. 'inv_scope' => $res['scope'],
  918. 'license_img' => $res['license_img'],
  919. 'invoice_title' => $post['invoice_title'],
  920. 'invoice_mobile' => $post['invoice_mobile'],
  921. 'status' => 1,
  922. 'is_del' => 0,
  923. 'addtime' => $date,
  924. 'updatetime' => $date,
  925. ]);
  926. $temp_supplier = Db::name('headquarters')
  927. ->where(['code' => $post['code'], 'type' => 3])
  928. ->findOrEmpty();
  929. //汇总表
  930. Db::name('headquarters')
  931. ->where(['code' => $post['code'], 'type' => 3])
  932. ->update([
  933. 'relation_code' => $business_code,
  934. 'updater' => $post['uname'],
  935. 'updaterid' => $post['uid'],
  936. 'updatetime' => $date,
  937. ]);
  938. Db::name('headquarters')
  939. ->insert(array_merge($temp_supplier, [
  940. 'id' => null,
  941. 'code' => $business_code,
  942. 'type' => 1,//业务公司
  943. 'relation_code' => $post['code']
  944. ]));
  945. //供应商
  946. Db::name('supplier')
  947. ->where(['code' => $post['code'], 'is_upgrade' => 0, 'is_del' => 0])
  948. ->update(['is_upgrade' => 1, 'updatetime' => $date]);
  949. //账号与公司的关联关系
  950. Db::name('account_company')
  951. ->insert([
  952. 'account_id' => $post['uid'],
  953. 'companyCode' => $business_code,
  954. 'companyName' => $res['name'],
  955. 'company_type' => 2,
  956. 'status' => 1,
  957. 'is_del' => 0,
  958. 'addtime' => $date,
  959. 'updatetime' => $date,
  960. ]);
  961. Db::commit();
  962. return json_show(0, '升级成功');
  963. } catch (Exception $exception) {
  964. Db::rollback();
  965. return json_show(1004, '升级失败,' . $exception->getMessage());
  966. }
  967. }
  968. //获取业务公司列表(为了采销临时脚本同步数据到结算平台使用,正式上线要删除)
  969. public function getBusinessListTmp()
  970. {
  971. $where = $this->request->filter('trim')->post('where', []);
  972. $list = Db::name('business')
  973. ->alias('a')
  974. ->field('a.*,b.code as supplierNo')
  975. ->leftJoin('headquarters b', 'b.relation_code=a.companyNo')
  976. ->where($where)
  977. ->select()
  978. ->toArray();
  979. return json_show(0, '获取成功', $list);
  980. }
  981. }