Sellervrorder.php 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249
  1. <?php
  2. namespace app\api\controller;
  3. use think\facade\Lang;
  4. /**
  5. * ============================================================================
  6. *
  7. * ============================================================================
  8. *
  9. * ----------------------------------------------------------------------------
  10. *
  11. * ============================================================================
  12. * 虚拟订单控制器
  13. */
  14. class Sellervrorder extends MobileSeller {
  15. public function initialize() {
  16. parent::initialize(); // TODO: Change the autogenerated stub
  17. Lang::load(base_path() . 'home/lang/' . config('lang.default_lang') . '/sellervrorder.lang.php');
  18. }
  19. /**
  20. * @api {POST} api/Sellervrorder/order_list 虚拟订单列表
  21. * @apiVersion 1.0.0
  22. * @apiGroup Sellervrorder
  23. *
  24. * @apiHeader {String} X-DS-KEY 卖家授权token
  25. *
  26. * @apiParam {String} order_sn 订单号
  27. * @apiParam {Int} skip_off 非取消状态 1是
  28. * @apiParam {String} state_type 订单状态 state_new待付款 state_pay待使用 state_success已完成 state_cancel已取消
  29. * @apiParam {String} query_start_date 开始日期 YYYY-MM-DD
  30. * @apiParam {String} query_end_date 结束日期 YYYY-MM-DD
  31. * @apiParam {String} page 页码
  32. * @apiParam {String} pagesize 每页显示数量
  33. *
  34. * @apiSuccess {String} code 返回码,10000为成功
  35. * @apiSuccess {String} message 返回消息
  36. * @apiSuccess {Object} result 返回数据
  37. * @apiSuccess {Object[]} result.order_list 订单列表 (返回字段参考vrorder)
  38. * @apiSuccess {Boolean} result.order_list.if_cancel 是否可取消 true是false否
  39. * @apiSuccess {String} result.order_list.goods_image_url 商品图片完整路径
  40. * @apiSuccess {Int} result.page_total 总页数
  41. * @apiSuccess {Boolean} result.hasmore 是否有更多 true是false否
  42. */
  43. public function order_list() {
  44. $vrorder_model = model('vrorder');
  45. $condition = array();
  46. $condition[] = array('store_id', '=', $this->store_info['store_id']);
  47. $order_key = input('post.order_sn');
  48. if (preg_match('/^\d{10,20}$/', $order_key)) {
  49. $condition[] = array('order_sn', '=', $order_key);
  50. } elseif ($order_key != '') {
  51. $condition[] = array('goods_name', 'like', '%' . $order_key . '%');
  52. }
  53. $state_type = input('post.state_type');
  54. if ($state_type != '') {
  55. $condition[] = array('order_state', '=', str_replace(
  56. $allow_state_array = array('state_new', 'state_pay', 'state_success', 'state_cancel'), array(ORDER_STATE_NEW, ORDER_STATE_PAY, ORDER_STATE_SUCCESS, ORDER_STATE_CANCEL), $state_type));
  57. }
  58. $query_start_date = input('post.query_start_date');
  59. $query_end_date = input('post.query_end_date');
  60. $if_start_date = preg_match('/^20\d{2}-\d{2}-\d{2}$/', $query_start_date);
  61. $if_end_date = preg_match('/^20\d{2}-\d{2}-\d{2}$/', $query_end_date);
  62. $start_unixtime = $if_start_date ? strtotime($query_start_date) : null;
  63. $end_unixtime = $if_end_date ? strtotime($query_end_date) : null;
  64. if ($start_unixtime || $end_unixtime) {
  65. $condition[] = array('add_time', 'time', array($start_unixtime, $end_unixtime));
  66. }
  67. if (input('post.skip_off') == 1) {
  68. $condition[] = array('order_state', '<>', ORDER_STATE_CANCEL);
  69. }
  70. $order_list = $vrorder_model->getVrorderList($condition, $this->pagesize, '*', 'order_id desc');
  71. $mobile_page = $vrorder_model->page_info;
  72. foreach ($order_list as $key => $order) {
  73. //显示取消订单
  74. $order_list[$key]['if_cancel'] = $vrorder_model->getVrorderOperateState('store_cancel', $order);
  75. $order_list[$key]['goods_image_url'] = goods_cthumb($order['goods_image'], 240, $order['store_id']);
  76. }
  77. $result = array_merge(array('order_list' => $order_list), mobile_page($mobile_page));
  78. ds_json_encode(10000, '', $result);
  79. }
  80. /**
  81. * @api {POST} api/Sellervrorder/order_cancel 取消虚拟订单
  82. * @apiVersion 1.0.0
  83. * @apiGroup Sellervrorder
  84. *
  85. * @apiHeader {String} X-DS-KEY 卖家授权token
  86. *
  87. * @apiParam {String} order_id 订单id
  88. * @apiParam {String} reason 理由
  89. *
  90. * @apiSuccess {String} code 返回码,10000为成功
  91. * @apiSuccess {String} message 返回消息
  92. * @apiSuccess {Object} result 返回数据
  93. */
  94. public function order_cancel() {
  95. $order_id = intval(input('post.order_id'));
  96. $reason = input('post.reason');
  97. $vrorder_model = model('vrorder');
  98. $logic_vrorder = model('vrorder', 'logic');
  99. $condition = array();
  100. $condition[] = array('order_id','=',$order_id);
  101. $condition[] = array('store_id','=',$this->store_info['store_id']);
  102. $order_info = $vrorder_model->getVrorderInfo($condition);
  103. $if_allow = $vrorder_model->getVrorderOperateState('store_cancel', $order_info);
  104. if (!$if_allow) {
  105. return callback(false, lang('have_right_operate'));
  106. }
  107. $result = $logic_vrorder->changeOrderStateCancel($order_info, 'seller', $reason, true);
  108. if (!$result['code']) {
  109. ds_json_encode(10001, $result['msg']);
  110. }
  111. ds_json_encode(10000, '', 1);
  112. }
  113. /**
  114. * @api {POST} api/Sellervrorder/exchange 兑换码消费
  115. * @apiVersion 1.0.0
  116. * @apiGroup Sellervrorder
  117. *
  118. * @apiHeader {String} X-DS-KEY 卖家授权token
  119. *
  120. * @apiParam {String} vr_code 兑换码
  121. *
  122. * @apiSuccess {String} code 返回码,10000为成功
  123. * @apiSuccess {String} message 返回消息
  124. * @apiSuccess {Object} result 订单信息 (返回字段参考vrorder)
  125. */
  126. public function exchange() {
  127. $vr_code = input('param.vr_code');
  128. if ($vr_code) {
  129. if (!preg_match('/^[a-zA-Z0-9]{15,18}$/', $vr_code)) {
  130. ds_json_encode(10001, lang('exchange_code_format_error'));
  131. }
  132. $vrorder_model = model('vrorder');
  133. $vr_code_info = $vrorder_model->getVrordercodeInfo(array('vr_code' => $vr_code));
  134. if (empty($vr_code_info) || $vr_code_info['store_id'] != $this->store_info['store_id']) {
  135. ds_json_encode(10001, lang('exchange_code_not_exist'));
  136. }
  137. if ($vr_code_info['vr_state'] == '1') {
  138. ds_json_encode(10001, lang('exchange_code_been_used'));
  139. }
  140. if ($vr_code_info['vr_indate'] < TIMESTAMP) {
  141. ds_json_encode(10001, lang('exchange_code_expired') . date('Y-m-d H:i:s', $vr_code_info['vr_indate']));
  142. }
  143. if ($vr_code_info['refund_lock'] > 0) {//退款锁定状态:0为正常,1为锁定(待审核),2为同意
  144. ds_json_encode(10001, lang('exchange_code_been_applied_refund'));
  145. }
  146. //更新兑换码状态
  147. $update = array();
  148. $update['vr_state'] = 1;
  149. $update['vr_usetime'] = TIMESTAMP;
  150. $update = $vrorder_model->editVrorderCode($update, array('vr_code' => $vr_code));
  151. //如果全部兑换完成,更新订单状态
  152. model('vrorder', 'logic')->changeOrderStateSuccess($vr_code_info['order_id']);
  153. if ($update) {
  154. //取得返回信息
  155. $order_info = $vrorder_model->getVrorderInfo(array('order_id' => $vr_code_info['order_id']));
  156. if ($order_info['use_state'] == '0') {
  157. $vrorder_model->editVrorder(array('use_state' => 1), array('order_id' => $vr_code_info['order_id']));
  158. }
  159. $order_info['img_240'] = goods_thumb($order_info, 240);
  160. ds_json_encode(10000, lang('exchange_successful'), $order_info);
  161. }
  162. } else {
  163. ds_json_encode(10001, lang('param_error'));
  164. }
  165. }
  166. /**
  167. * @api {POST} api/Sellervrorder/order_info 虚拟订单详情
  168. * @apiVersion 1.0.0
  169. * @apiGroup Sellervrorder
  170. *
  171. * @apiHeader {String} X-DS-KEY 卖家授权token
  172. *
  173. * @apiParam {String} order_id 订单id
  174. *
  175. * @apiSuccess {String} code 返回码,10000为成功
  176. * @apiSuccess {String} message 返回消息
  177. * @apiSuccess {Object} result 返回数据 (返回字段参考vrorder)
  178. */
  179. public function order_info() {
  180. $order_id = intval(input('param.order_id'));
  181. if ($order_id <= 0) {
  182. ds_json_encode(10001, lang('param_error'));
  183. }
  184. $vrorder_model = model('vrorder');
  185. $condition = array();
  186. $condition[] = array('order_id','=',$order_id);
  187. $condition[] = array('store_id','=',$this->store_info['store_id']);
  188. $order_info = $vrorder_model->getVrorderInfo($condition);
  189. if (empty($order_info) || $order_info['delete_state'] == ORDER_DEL_STATE_DROP) {
  190. ds_json_encode(10001, lang('store_order_none_exist'));
  191. }
  192. $order_list = array();
  193. $order_list[$order_id] = $order_info;
  194. //显示取消订单
  195. $order_info['if_cancel'] = $vrorder_model->getVrorderOperateState('buyer_cancel', $order_info);
  196. $order_info['goods_image_url'] = goods_cthumb($order_info['goods_image'], 240, $order_info['store_id']);
  197. $ownShopIds = model('store')->getOwnShopIds();
  198. $order_info['ownshop'] = in_array($order_info['store_id'], $ownShopIds);
  199. $order_info['vr_indate'] = $order_info['vr_indate'] ? date('Y-m-d', $order_info['vr_indate']) : '';
  200. $order_info['add_time'] = date('Y-m-d H:i:s', $order_info['add_time']);
  201. $order_info['payment_time'] = $order_info['payment_time'] ? date('Y-m-d H:i:s', $order_info['payment_time']) : '';
  202. $order_info['finnshed_time'] = $order_info['finnshed_time'] ? date('Y-m-d H:i:s', $order_info['finnshed_time']) : '';
  203. //取兑换码列表
  204. $vr_code_list = $vrorder_model->getShowVrordercodeList(array('order_id' => $order_info['order_id']));
  205. $order_info['code_list'] = $vr_code_list ? $vr_code_list : array();
  206. if($order_info['order_state']==ORDER_STATE_SUCCESS){
  207. if($order_info['virtual_type']==3){
  208. $order_info['vc_file_url']=goods_resource($order_info['virtual_content']);
  209. }else if($order_info['virtual_type']==1){
  210. $order_info['virtual_content']=explode('\r\n',$order_info['virtual_content']);
  211. }
  212. }else{
  213. $order_info['virtual_content']='';
  214. }
  215. ds_json_encode(10000, '', array('order_info' => $order_info));
  216. }
  217. }