Manage.php 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. <?php
  2. namespace Option\Lib;
  3. use Dever;
  4. class Manage
  5. {
  6. public function updateAccount($id, $name, $data)
  7. {
  8. Dever::config('base')->hook = true;
  9. $update = array();
  10. $audit = Dever::param('audit', $data);
  11. $info = Dever::db('option/account')->one($id);
  12. if ($audit > 2 && $info) {
  13. $update['audit_date'] = time();
  14. $update['where_id'] = $info['id'];
  15. Dever::db('option/account')->update($update);
  16. }
  17. }
  18. # 协议审核
  19. public function setAgreement_commit($id, $name, $data)
  20. {
  21. Dever::config('base')->hook = true;
  22. $update = array();
  23. $audit = Dever::param('audit', $data);
  24. $info = Dever::db('option/agreement')->one($id);
  25. if ($audit > 1 && $info) {
  26. $admin = Dever::load('manage/auth.info');
  27. $update['audit_date'] = time();
  28. $update['audit_admin'] = $admin['id'];
  29. if ($audit == 3) {
  30. $update['status'] = 2;
  31. }
  32. $update['where_id'] = $info['id'];
  33. $state = Dever::db('option/agreement')->update($update);
  34. if ($state && $audit == 3) {
  35. Dever::load('option/lib/cash.setValue', $info);
  36. }
  37. }
  38. }
  39. # 交付审核 已废弃
  40. public function setJiaofu($id, $name, $data)
  41. {
  42. Dever::config('base')->hook = true;
  43. $update = array();
  44. $audit = Dever::param('audit', $data);
  45. $info = Dever::db('option/bill_jiaofu')->one($id);
  46. if ($audit > 1 && $info) {
  47. $admin = Dever::load('manage/auth.info');
  48. $update['audit_date'] = time();
  49. $update['audit_admin'] = $admin['id'];
  50. $update['where_id'] = $info['id'];
  51. $state = Dever::db('option/bill_jiaofu')->update($update);
  52. if ($state && $audit == 3) {
  53. Dever::load('option/lib/cash.setValue_commit', $info);
  54. }
  55. }
  56. }
  57. public function setFafang($id, $name, $data)
  58. {
  59. Dever::config('base')->hook = true;
  60. $update = array();
  61. $audit = Dever::param('audit', $data);
  62. $info = Dever::db('option/bill_fafang')->one($id);
  63. if ($audit > 1 && $info) {
  64. $admin = Dever::load('manage/auth.info');
  65. $update['audit_date'] = time();
  66. $update['audit_admin'] = $admin['id'];
  67. $update['where_id'] = $info['id'];
  68. $state = Dever::db('option/bill_fafang')->update($update);
  69. if ($state && $audit == 2) {
  70. # 已作废,减掉这个数据
  71. $account_cash = Dever::db('option/cash')->find(array('type' => $info['type'], 'aid' => $info['aid']));
  72. if ($account_cash) {
  73. $update['where_id'] = $account_cash['id'];
  74. $update['fafang'] = $account_cash['fafang'] - $info['cash'];
  75. $update['jiaofu'] = $account_cash['jiaofu'] + $info['cash'];
  76. if ($update['fafang'] < 0) {
  77. $update['fafang'] = 0;
  78. }
  79. $update['clear'] = true;
  80. Dever::db('option/cash')->update($update);
  81. }
  82. }
  83. }
  84. }
  85. public function setDuifu($id, $name, $data)
  86. {
  87. Dever::config('base')->hook = true;
  88. $update = array();
  89. $audit = Dever::param('audit', $data);
  90. $info = Dever::db('option/bill_duifu')->one($id);
  91. if ($audit && $audit > 1 && $info) {
  92. $admin = Dever::load('manage/auth.info');
  93. $update['audit_date'] = time();
  94. $update['audit_admin'] = $admin['id'];
  95. $update['where_id'] = $info['id'];
  96. $state = Dever::db('option/bill_duifu')->update($update);
  97. if ($state && $audit == 2) {
  98. # 已作废,恢复这个数据
  99. $account_cash = Dever::db('option/cash')->find(array('type' => $info['type'], 'aid' => $info['aid']));
  100. if ($account_cash) {
  101. $update['where_id'] = $account_cash['id'];
  102. $update['duifu'] = $account_cash['duifu'] - $info['cash'];
  103. $update['fafang'] = $account_cash['fafang'] + $info['cash'];
  104. if ($update['duifu'] < 0) {
  105. $update['duifu'] = 0;
  106. }
  107. $update['clear'] = true;
  108. Dever::db('option/cash')->update($update);
  109. }
  110. }
  111. }
  112. }
  113. public function cashUpdate($id, $name, $data)
  114. {
  115. Dever::config('base')->hook = true;
  116. $aid = Dever::param('aid', $data);
  117. $type = Dever::param('type', $data);
  118. $cash = Dever::param('cash', $data);
  119. $desc = Dever::param('desc', $data);
  120. if ($aid && $type && $cash && $desc) {
  121. $account = Dever::db('option/account')->find($aid);
  122. if ($account && $account['status'] <= 2) {
  123. Dever::load('option/lib/cash')->up($aid, $type, $cash, $desc);
  124. $where['where_id'] = $aid;
  125. $where['cash'] = $cash;
  126. Dever::db('agent/member')->upCash($where);
  127. } else {
  128. Dever::db('option/push_cash')->update(array('where_id' => $id, 'status' => 2));
  129. Dever::alert('期权账户已停用或者未审核,操作失败');
  130. }
  131. }
  132. }
  133. public function updateAccountAudit($id, $name, $data)
  134. {
  135. $data['add_audit'] = 1;
  136. return $data;
  137. }
  138. public function getJiaofuDate($id)
  139. {
  140. $info = Dever::db('option/bill_jiaofu')->find($id);
  141. if ($info) {
  142. $html = '';
  143. $html .= '处理时间:' . date('Y-m-d H:i', $info['cdate']);
  144. if ($info['qdate']) {
  145. $html .= '<br />确认时间:' . date('Y-m-d H:i', $info['qdate']);
  146. }
  147. if ($info['audit_date']) {
  148. $html .= '<br />审核时间:' . date('Y-m-d H:i', $info['audit_date']);
  149. }
  150. return $html;
  151. }
  152. return '';
  153. }
  154. }