Cash.php 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453
  1. <?php
  2. namespace Option\Lib;
  3. use Dever;
  4. class Cash
  5. {
  6. private function getInfo($type, $cash)
  7. {
  8. if ($type > 3) {
  9. $cash_type = 2;
  10. } else {
  11. $cash_type = 1;
  12. }
  13. if ($type == 1 || $type == 4) {
  14. $table = 'jiaofu';
  15. $prefix = 'J';
  16. } elseif ($type == 2 || $type == 5) {
  17. $table = 'fafang';
  18. $prefix = 'F';
  19. } elseif ($type == 3 || $type == 6) {
  20. $table = 'duifu';
  21. $prefix = 'D';
  22. $cash = -1*$cash;
  23. }
  24. return array($table, $cash, $cash_type, $prefix);
  25. }
  26. public function resetParent($uid, $parent)
  27. {
  28. # 获取所有下级
  29. $child = $this->getChild($uid, false);
  30. if ($child) {
  31. foreach ($child as $k => $v) {
  32. if ($v['level'] > 1) {
  33. $this->update(array('id' => $v['id']), array('uid' => $parent));
  34. }
  35. }
  36. }
  37. return $this->delete(array('to_uid' => $uid, 'level' => 1), array('uid' => $parent));
  38. }
  39. public function up($aid, $mid, $type, $cash, $desc, $alert = true)
  40. {
  41. if ($cash == 0) {
  42. return;
  43. }
  44. $account = Dever::db('option/account')->find(array('id' => $aid, 'clear' => true));
  45. if ($account['status'] <= 2) {
  46. list($table, $cash, $cash_type, $prefix) = $this->getInfo($type, $cash);
  47. $where = array();
  48. $where['clear'] = true;
  49. $where['aid'] = $aid;
  50. $where['mid'] = $mid;
  51. $where['type'] = $cash_type;
  52. $info = false;
  53. if (!$info) {
  54. $data = $where;
  55. $data['order_num'] = $this->getOrderId($table, $prefix);
  56. $col = $table;
  57. $cash_info = Dever::db('option/cash')->find($where);
  58. if (!$cash_info) {
  59. Dever::db('option/cash')->insert($where);
  60. $cash_info = Dever::db('option/cash')->find($where);
  61. }
  62. if ($table == 'fafang') {
  63. $data['yue'] = $cash_info[$col] + $cash;
  64. $data['status'] = 1;
  65. if ($cash_info['jiaofu'] < $cash) {
  66. if ($alert) {
  67. Dever::alert('交付期权价值不足发放');
  68. } else {
  69. $data['status'] = 2;
  70. }
  71. }
  72. } elseif ($table == 'duifu') {
  73. $data['yue'] = $cash_info[$col] + $cash;
  74. $data['status'] = 1;
  75. if ($cash_info['fafang'] < $cash) {
  76. if ($alert) {
  77. Dever::alert('发放期权价值不足兑付');
  78. } else {
  79. $data['status'] = 2;
  80. }
  81. }
  82. } else {
  83. $col = 'dai' . $table;
  84. $data['status'] = 2;
  85. }
  86. $data['cash'] = $cash;
  87. $data['desc'] = $desc;
  88. $data['clear'] = true;
  89. $state = Dever::db('option/bill_' . $table)->insert($data);
  90. if ($state && $cash_info) {
  91. # 更新余额
  92. $update = array();
  93. $update['where_id'] = $cash_info['id'];
  94. $update['set_cash'] = $cash;
  95. $update['clear'] = true;
  96. $method = 'upCash_' . $col;
  97. if ($table == 'fafang') {
  98. $update['jiaofu'] = $cash;
  99. if ($data['status'] == 2) {
  100. $update['jiaofu'] = 0;
  101. }
  102. } elseif ($table == 'duifu') {
  103. $update['fafang'] = $cash;
  104. if ($data['status'] == 2) {
  105. $update['fafang'] = 0;
  106. }
  107. } else {
  108. $update['daijiaofu_date'] = time();
  109. }
  110. Dever::db('option/cash')->$method($update);
  111. }
  112. }
  113. return $state;
  114. }
  115. return false;
  116. }
  117. /**
  118. * 生成订单号
  119. *
  120. * @return mixed
  121. */
  122. public function getOrderId($table, $prefix)
  123. {
  124. $where['order_num'] = Dever::order($prefix);
  125. $state = Dever::db('option/bill_' . $table)->one($where);
  126. if (!$state) {
  127. return $where['order_num'];
  128. } else {
  129. return $this->getOrderId($table, $prefix);
  130. }
  131. }
  132. # 获取日志列表
  133. public function getList($aid, $table, $status, $name, $audit = false)
  134. {
  135. $where = array();
  136. $where['aid'] = $aid;
  137. if ($status > 0) {
  138. $where['status'] = $status;
  139. }
  140. if ($audit) {
  141. $where['audit'] = $audit;
  142. }
  143. $type = Dever::input('type');
  144. if ($type) {
  145. $where['type'] = $type;
  146. }
  147. $table = 'option/bill_' . $table;
  148. if ($status == 2) {
  149. $data = Dever::db($table)->select($where);
  150. } else {
  151. $data = Dever::db($table)->getData($where);
  152. }
  153. if ($data) {
  154. $audit = Dever::db($table)->config['config_audit'];
  155. foreach ($data as $k => $v) {
  156. $data[$k] = $this->getOne($v, $name, $audit);
  157. }
  158. }
  159. return $data;
  160. }
  161. # 获取日志详情
  162. public function getView($id, $aid, $table, $name)
  163. {
  164. if (!$id) {
  165. Dever::alert('参数错误');
  166. }
  167. $where = array();
  168. $where['id'] = $id;
  169. $where['aid'] = $aid;
  170. $table = 'option/bill_' . $table;
  171. $data = Dever::db($table)->find($where);
  172. if ($data) {
  173. $audit = Dever::db($table)->config['config_audit'];
  174. $data = $this->getOne($data, $name, $audit);
  175. }
  176. return $data;
  177. }
  178. # 获取详情
  179. private function getOne($data, $name, $audit)
  180. {
  181. if ($data['type'] == 1) {
  182. $data['type_name'] = $name . '期权';
  183. } else {
  184. $data['type_name'] = $name . '原始期权';
  185. }
  186. $data['audit_name'] = $audit[$data['audit']];
  187. $data['cdate_string'] = date('Y-m-d H:i', $data['cdate']);
  188. return $data;
  189. }
  190. # 确认期权价值 废弃
  191. /*
  192. public function setValue_commit($info)
  193. {
  194. $cash = array();
  195. $state = Dever::db('option/bill_jiaofu')->update(array('status' => 1, 'where_id' => $info['id']));
  196. if ($state) {
  197. $account_cash = Dever::db('option/cash')->find(array('type' => $info['type'], 'aid' => $info['aid']));
  198. if ($account_cash) {
  199. $update['where_id'] = $account_cash['id'];
  200. $update['daijiaofu'] = $account_cash['daijiaofu'] - $info['cash'];
  201. $update['jiaofu'] = $account_cash['jiaofu'] + $info['cash'];
  202. if ($update['daijiaofu'] < 0) {
  203. $update['daijiaofu'] = 0;
  204. }
  205. $update['clear'] = true;
  206. Dever::db('option/cash')->update($update);
  207. # 获取待发放数据 对之前发放的数据进行发放
  208. $fafang = Dever::db('option/bill_fafang')->find(array('status' => 2, 'type' => $info['type'], 'aid' => $info['aid']));
  209. if ($fafang) {
  210. foreach ($fafang as $v) {
  211. if ($info['cash'] >= $v['cash']) {
  212. Dever::db('option/bill_fafang')->update(array('where_id' => $v['id'], 'status' => 1));
  213. $info['cash'] -= $v['cash'];
  214. }
  215. }
  216. }
  217. }
  218. }
  219. }
  220. */
  221. # 确认期权价值
  222. public function setValue_commit($info)
  223. {
  224. $account_cash = Dever::db('option/cash')->select(array('aid' => $info['aid']));
  225. if ($account_cash) {
  226. foreach ($account_cash as $k => $v) {
  227. $cash = Dever::db('option/bill_jiaofu')->getTotal(array('where_end' => $info['jiaofu_date'], 'where_type' => $v['type'], 'where_aid' => $v['aid'], 'where_mid' => $v['mid'], 'where_status' => 2));
  228. if ($cash && $cash['total'] > 0) {
  229. $update = array();
  230. $update['where_id'] = $v['id'];
  231. $update['daijiaofu'] = $v['daijiaofu'] - $cash['total'];
  232. $update['jiaofu'] = $v['jiaofu'] + $cash['total'];
  233. if ($update['daijiaofu'] < 0) {
  234. $update['daijiaofu'] = 0;
  235. }
  236. $update['clear'] = true;
  237. Dever::db('option/cash')->update($update);
  238. # 获取待发放数据 对之前发放的数据进行发放
  239. $fafang = Dever::db('option/bill_fafang')->find(array('status' => 2, 'type' => $v['type'], 'aid' => $v['aid'], 'mid' => $v['mid']));
  240. if ($fafang) {
  241. foreach ($fafang as $v1) {
  242. if ($cash['total'] >= $v1['cash']) {
  243. Dever::db('option/bill_fafang')->update(array('where_id' => $v['id'], 'status' => 1));
  244. $cash['total'] -= $v1['cash'];
  245. }
  246. }
  247. }
  248. Dever::db('option/bill_jiaofu')->upYes(array('where_end' => $info['jiaofu_date'], 'where_aid' => $v['aid'], 'where_mid' => $v['mid'], 'where_type' => $v['type'], 'where_status' => 2, 'set_agreement_id' => $info['id'], 'set_status' => 1, 'set_qdate' => time()));
  249. }
  250. }
  251. }
  252. }
  253. # 展示详情
  254. public function show()
  255. {
  256. $id = Dever::input('id');
  257. $config = Dever::db('bill/cash')->config['set'];
  258. $info = Dever::db('bill/cash')->one($id);
  259. $status = $config['status'][$info['status']];
  260. $type = $config['type'][$info['type']];
  261. $member = Dever::db('agent/member')->find($info['mid']);
  262. $role = Dever::db('setting/role')->one($member['role']);
  263. $level = Dever::db('setting/level')->one($member['level_id']);
  264. if ($member['shop_id']) {
  265. $shop = Dever::db('shop/info')->one($member['shop_id']);
  266. } else {
  267. $shop['id'] = -1;
  268. $shop['name'] = '无';
  269. }
  270. $cdate = date('Y-m-d H:i', $info['cdate']);
  271. if ($info['operdate']) {
  272. $opertime = date('Y-m-d H:i', $info['operdate']);
  273. } else {
  274. $opertime = '';
  275. }
  276. $result = array();
  277. $result['代理商信息'] = array
  278. (
  279. 'type' => 'info',
  280. 'content' => array
  281. (
  282. array
  283. (
  284. array('代理商', $member['name'] . ' ' . $member['mobile']),
  285. array('代理角色', $role['name'] . ($level ? '('.$level['name'].')' : '')),
  286. array('所属店铺', $shop['name']),
  287. ),
  288. array
  289. (
  290. array('资金余额', '¥' . $member['cash'] . '元'),
  291. //array('直推业绩', '¥' . $member['sell'] . '元'),
  292. array('团队业绩', '¥' . $member['group_sell'] . '元'),
  293. ),
  294. ),
  295. );
  296. $result['交易信息'] = array
  297. (
  298. 'type' => 'info',
  299. 'content' => array
  300. (
  301. array
  302. (
  303. array('流水号', $info['order_num']),
  304. array('交易时间', $cdate),
  305. array('交易类型', $type),
  306. ),
  307. array
  308. (
  309. array('交易金额', '¥' . $info['cash'] . '元'),
  310. array('交易后账户余额', '¥' . $info['yue'] . '元'),
  311. array('交易说明', $info['desc']),
  312. ),
  313. )
  314. );
  315. $result['审核信息'] = array
  316. (
  317. 'type' => 'info',
  318. 'content' => array
  319. (
  320. array
  321. (
  322. array('审核时间', $opertime),
  323. array('审核状态', $status),
  324. array('备注', $info['audit_desc']),
  325. ),
  326. )
  327. );
  328. # 提现信息
  329. $button = array();
  330. if ($info['status'] == 1) {
  331. $button[] = array
  332. (
  333. 'type' => 'edit',
  334. 'link' => Dever::url('project/database/update?project=bill&table=cash&where_id='.$info['id'].'&col=audit,audit_desc&oper_save_jump=cash&oper_table=cash&oper_parent=cash', 'manage'),
  335. 'name' => '审核',
  336. );
  337. }
  338. if ($info['type'] == 11) {
  339. $tixian = Dever::db('bill/tixian')->find($info['type_id']);
  340. if ($tixian) {
  341. if ($info['status'] == 2 && $tixian['status'] == 1) {
  342. $button[] = array
  343. (
  344. 'type' => 'edit',
  345. 'link' => Dever::url('project/database/update?project=bill&table=tixian&where_id='.$tixian['id'].'&col=audit,audit_desc,pic&oper_save_jump=tixian&oper_table=tixian&oper_parent=tixian', 'manage'),
  346. 'name' => '发放',
  347. );
  348. }
  349. $bank = Dever::db('setting/bank')->find($tixian['bank']);
  350. $result['提现信息'] = array
  351. (
  352. 'type' => 'info',
  353. 'content' => array
  354. (
  355. array
  356. (
  357. array('银行名称', $bank['name']),
  358. array('开户行', $tixian['bankname']),
  359. ),
  360. array
  361. (
  362. array('姓名', $tixian['name']),
  363. array('卡号', $tixian['card']),
  364. ),
  365. )
  366. );
  367. if ($tixian['status'] == 2) {
  368. if ($tixian['operdate']) {
  369. $opertime = date('Y-m-d H:i', $tixian['operdate']);
  370. } else {
  371. $opertime = '';
  372. }
  373. $pic = '';
  374. if ($tixian['pic']) {
  375. $temp = explode(',', $tixian['pic']);
  376. foreach ($temp as $k => $v) {
  377. $pic .= '<a href="'.Dever::pic($v).'" target="_blank"><img src="'.Dever::pic($v).'" width="150" /></a>';
  378. }
  379. }
  380. $result['发放信息'] = array
  381. (
  382. 'type' => 'info',
  383. 'content' => array
  384. (
  385. array
  386. (
  387. array('发放时间', $opertime),
  388. array('备注', $tixian['audit_desc']),
  389. ),
  390. array
  391. (
  392. array('凭证', $pic),
  393. ),
  394. )
  395. );
  396. }
  397. }
  398. }
  399. $head = array
  400. (
  401. 'name' => '基本信息',
  402. 'btn' => $button,
  403. );
  404. $html = Dever::show($head, $result);
  405. return $html;
  406. }
  407. }