Sellercost.php 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <?php
  2. namespace app\api\controller;
  3. use think\facade\Lang;
  4. /**
  5. * ============================================================================
  6. * DSMall多用户商城
  7. * ============================================================================
  8. * 版权所有 2014-2028 长沙德尚网络科技有限公司,并保留所有权利。
  9. * 网站地址: http://www.csdeshang.com
  10. * ----------------------------------------------------------------------------
  11. * 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和使用 .
  12. * 不允许对程序代码以任何形式任何目的的再发布。
  13. * ============================================================================
  14. * 店铺花费控制器
  15. */
  16. class Sellercost extends MobileSeller {
  17. public function initialize() {
  18. parent::initialize();
  19. }
  20. /**
  21. * @api {POST} api/Sellercost/cost_list 店铺花费列表
  22. * @apiVersion 1.0.0
  23. * @apiGroup Sellercost
  24. *
  25. * @apiHeader {String} X-DS-KEY 卖家授权token
  26. *
  27. * @apiParam {String} storecost_remark 日志内容
  28. * @apiParam {String} add_time_from 开始时间 YYYY-MM-DD
  29. * @apiParam {String} add_time_to 结束时间 YYYY-MM-DD
  30. * @apiParam {Int} page 页码
  31. * @apiParam {Int} pagesize 每页显示数量
  32. *
  33. * @apiSuccess {String} code 返回码,10000为成功
  34. * @apiSuccess {String} message 返回消息
  35. * @apiSuccess {Object} result 返回数据
  36. * @apiSuccess {Object[]} result.cost_list 花费列表 (返回字段参考storecost表)
  37. * @apiSuccess {Int} result.page_total 总页数
  38. * @apiSuccess {Boolean} result.hasmore 是否有更多 true是false否
  39. */
  40. public function cost_list() {
  41. $storecost_model = model('storecost');
  42. $condition = array();
  43. $condition[] = array('storecost_store_id', '=', $this->store_info['store_id']);
  44. $storecost_remark = input('param.storecost_remark');
  45. if (!empty($storecost_remark)) {
  46. $condition[] = array('storecost_remark', 'like', '%' . $storecost_remark . '%');
  47. }
  48. $add_time_from = input('param.add_time_from');
  49. $add_time_to = input('param.add_time_to');
  50. if (!empty($add_time_from) && !empty($add_time_to)) {
  51. $condition[] = array('storecost_time', 'between', array(strtotime($add_time_from), strtotime($add_time_to)));
  52. }
  53. $cost_list = $storecost_model->getStorecostList($condition, 10, 'storecost_id desc');
  54. $result = array_merge(array('cost_list' => $cost_list), mobile_page($storecost_model->page_info));
  55. ds_json_encode(10000, lang('ds_common_op_succ'), $result);
  56. }
  57. }