Merchant.php 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. <?php namespace Pay\Yspay;
  2. use Dever;
  3. class Merchant
  4. {
  5. public function selectRelate_api()
  6. {
  7. $value = Dever::input('value');
  8. $id = Dever::input('id');
  9. $data = array();
  10. if ($id) {
  11. $data = Dever::db('pay/yspay_merchant')->find($id);
  12. if ($value != $data['project_id']) {
  13. $data['relate_id'] = -1;
  14. }
  15. }
  16. $config['relate_id'] = Dever::db('pay/yspay_merchant')->config['struct']['relate_id'];
  17. $config['relate_id']['update'] = 'select';
  18. $config['relate_id']['update_search'] = 'pay/yspay/merchant.search?project_id=' . $value;
  19. $result = Dever::load('manage/database')->update_struct(array('struct' => $config), false, $data, -1, '', true);
  20. return $result;
  21. }
  22. public function search_api()
  23. {
  24. $id = Dever::input('id');
  25. $keyword = Dever::input('keyword');
  26. $where = array();
  27. if ($keyword) {
  28. $where['name'] = $keyword;
  29. }
  30. $id = Dever::input('where_id');
  31. if ($id) {
  32. $where['id_no'] = $id;
  33. }
  34. $project_id = Dever::input('project_id', 1);
  35. $project = Dever::db('pay/yspay_project')->find($project_id);
  36. return Dever::search($project['table'], $where);
  37. }
  38. public function up($account_id, $project_id, $id, $name)
  39. {
  40. $data = array();
  41. $data['account_id'] = $account_id;
  42. $data['project_id'] = $project_id;
  43. $data['relate_id'] = $id;
  44. $info = Dever::db('pay/yspay_merchant')->find($data);
  45. if (!$info) {
  46. $data['name'] = $name;
  47. $data['type'] = 1;
  48. $data['status'] = 2;
  49. return Dever::db('pay/yspay_merchant')->insert($data);
  50. }
  51. return false;
  52. }
  53. public function getOther($account_id, $table, $relate_id, $order_num, $cash)
  54. {
  55. $result = array();
  56. $yspay = Dever::db('pay/yspay')->find(array('account_id' => $account_id));
  57. if ($cash && $cash > 0 && $yspay && $yspay['type'] == 2) {
  58. # 分账拆单
  59. $project = Dever::db('pay/yspay_project')->find(array('table' => $table));
  60. if ($project) {
  61. $merchant = Dever::db('pay/yspay_merchant')->find(array('account_id' => $account_id, 'project_id' => $project['id'], 'relate_id' => $relate_id));
  62. if ($merchant && $merchant['mid']) {
  63. $result = array(
  64. 'mid' => $merchant['mid'],
  65. 'order_id' => $order_num,
  66. 'amount' => $cash,
  67. );
  68. }
  69. }
  70. }
  71. return $result;
  72. }
  73. public function getInfo($account_id, $project_id, $id, $parent)
  74. {
  75. list($project, $table) = explode('/', $parent);
  76. $where = array();
  77. $where['account_id'] = $account_id;
  78. $where['project_id'] = $project_id;
  79. $where['relate_id'] = $id;
  80. $data = Dever::db('pay/yspay_merchant')->find($where);
  81. $html = '';
  82. if ($data) {
  83. if (!$data['mid']) {
  84. $data['mid'] = '编辑信息';
  85. }
  86. $url = Dever::url('project/database/update?project=pay&table=yspay_merchant&set=1&where_id='.$data['id'], 'manage');
  87. $html .= '<a style="cursor:pointer" onclick="fastEdit($(this),\''.$url.'\',\'编辑信息\', \'\')">'.$data['mid'].'</a>';
  88. $step = false;
  89. if ($data['status'] == 2) {
  90. $sign = Dever::db('pay/yspay_sign')->one(array('merchant_id' => $data['id']));
  91. if ($sign && $sign['step']) {
  92. $step = $sign['step'];
  93. }
  94. }
  95. if ($data['status'] == 1) {
  96. $url = Dever::url('project/database/list?project=pay&table=yspay_cash&search_option_merchant_id='.$data['id'].'&search_option_account_id='.$data['account_id'].'&oper_table='.$table.'&oper_project=' . $project, 'manage');
  97. $html .= '&nbsp;&nbsp;<a style="cursor:pointer" href="'.$url.'">[资金流水]</a>';
  98. }
  99. if ($data['status'] == 2) {
  100. $url = Dever::url('project/database/update?project=pay&table=yspay_sign&search_option_merchant_id='.$data['id'].'&search_option_account_id='.$data['account_id'].'&where_id='.$data['id'].'&oper_table='.$table.'&oper_project=' . $project, 'manage');
  101. $html .= '&nbsp;&nbsp;<a style="cursor:pointer" onclick="fastEdit($(this),\''.$url.'\',\'签约资料\', \'\')">[签约资料]</a>';
  102. if ($step == -1) {
  103. $content = '';
  104. $title = '';
  105. $url = Dever::url('pay/yspay/sign.handle?sign_id=' . $data['id']);
  106. $html .= '&nbsp;&nbsp;<a style="cursor:pointer" href="javascript:;" onclick="load(\'' . $url . '\', \'' . $content . '\', \'' . $title . '\')">[签约提审]</a>';
  107. }
  108. if ($step == 2) {
  109. $url = Dever::url('project/database/update?project=pay&table=yspay_sign&col=cashwhere_id='.$data['id'], 'manage');
  110. $html .= '&nbsp;&nbsp;<a style="cursor:pointer" onclick="fastEdit($(this),\''.$url.'\',\'签约打款\', \'\')">[签约打款]</a>';
  111. }
  112. if ($step == 4) {
  113. $url = Dever::load('pay/yspay/sign.getAgreement', $data['id']);
  114. $html .= '&nbsp;&nbsp;<a style="cursor:pointer" data-clipboard-text="'.$url.'" class="clipboard"><button type="button" class="btn btn-info btn-rounded waves-effect waves-light m-b-5 ">[签约合同]</button></a>';
  115. }
  116. }
  117. return $html;
  118. } else {
  119. return '暂无';
  120. }
  121. }
  122. }