Headquarters.php 39 KB

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