tp6框架的销售统计系统

OrderItem.php 3.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. <?php
  2. namespace app\controller;
  3. use think\App;
  4. use think\facade\View;
  5. use app\model\Order as OrderModel;
  6. use app\model\OrderItem as OrderItemModel;
  7. use app\model\OrderDetails as OrderDetailsModel;
  8. use app\model\facade\Goods;
  9. class OrderItem extends Base
  10. {
  11. protected $model;
  12. protected $detailsModel;
  13. public function __construct(App $app)
  14. {
  15. parent::__construct($app);
  16. $this->model = new OrderItemModel();
  17. $this->detailsModel = new OrderDetailsModel();
  18. }
  19. public function index($order_id)
  20. {
  21. $list = $this->model->where('order_id', $order_id)->select();
  22. $orderInfo = $this->detailsModel->find($order_id);
  23. $year = date('Y', strtotime($orderInfo->contract_time));
  24. $goodsSubtotalList = Goods::getGoodsSubtotal();
  25. return View::fetch('',[
  26. 'list' => $list,
  27. 'order_id' => $order_id,
  28. 'orderInfo' => $orderInfo,
  29. 'year' => $year,
  30. 'goodsSubtotalList' => $goodsSubtotalList
  31. ]);
  32. }
  33. public function info($id)
  34. {
  35. $data = $this->model->find($id);
  36. if ($this->request->isAjax()) {
  37. return json(['code'=>2, 'data'=>$data]);
  38. }
  39. }
  40. public function save()
  41. {
  42. if ($this->request->isAjax()) {
  43. $param = $this->request->param();
  44. // var_dump($param);
  45. // exit;
  46. try {
  47. if ($param['id']) {
  48. $order = $this->model->find(intval($param['id']));
  49. } else {
  50. $order = new OrderItemModel();
  51. }
  52. $order->order_id = intval($param['order_id']);
  53. $order->goods_id = intval($param['goods_id']);
  54. $order->goods_price = intval(bcmul($param['goods_price'], 100));
  55. $order->goods_name = $param['goods_name'];
  56. $order->goods_category_id = intval($param['goods_category_id']);
  57. $order->goods_category_name = $param['goods_category_name'];
  58. $order->sales_amount = strval($param['sales_amount']);
  59. $order->sales_price = intval(bcmul($param['sales_price'], 100));
  60. $order->sales_money = intval(bcmul($order->sales_amount , $order->sales_price));
  61. $order->actual_amount = strval($param['actual_amount']);
  62. $order->actual_price = intval(bcmul($param['actual_price'], 100));
  63. $order->actual_money = intval(bcmul($order->actual_amount, $order->actual_price));
  64. $order->agency = intval(bcmul($param['agency'], 100));
  65. $order->fare = intval(bcmul($param['fare'], 100));
  66. $order->other_fee = intval(bcmul($param['other_fee'], 100));
  67. $order->type = intval($param['type']);
  68. $order->remark = $param['remark'];
  69. $order->save();
  70. } catch (\Exception $e) {
  71. // $this->error($e->getMessage());
  72. return json(['code'=>0, 'msg'=>$e->getMessage()]);
  73. }
  74. return json(['code'=>2]);
  75. }
  76. }
  77. public function delete($id)
  78. {
  79. if ($this->request->isPost()) {
  80. if ($this->model->destroy($id)) {
  81. return json(['code'=>2]);
  82. } else {
  83. return json(['code'=>0]);
  84. }
  85. }
  86. }
  87. }