tp6框架的销售统计系统

Seller.php 2.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <?php
  2. namespace app\controller;
  3. use think\App;
  4. use think\facade\View;
  5. use app\model\Seller as SellerModel;
  6. use app\model\Department as DepartmentModel;
  7. class Seller extends Base
  8. {
  9. protected $model;
  10. public function __construct(App $app)
  11. {
  12. parent::__construct($app);
  13. $this->model = new SellerModel();
  14. }
  15. public function index($did=0)
  16. {
  17. if ($did) {
  18. $list = $this->model->where('department_id', $did)->select();
  19. } else {
  20. $list = $this->model->select();
  21. }
  22. return View::fetch('',['list'=>$list, 'did'=>$did]);
  23. }
  24. public function save()
  25. {
  26. $departmentModel = new DepartmentModel();
  27. $departments = $departmentModel->column('name', 'id');
  28. if ($this->request->isPost()) {
  29. $param = $this->request->param();
  30. try {
  31. if ($param['id']) {
  32. $seller = $this->model->find(intval($param['id']));
  33. } else {
  34. $seller = new SellerModel();
  35. $seller->create_time = time();
  36. }
  37. $seller->name = $param['name'];
  38. $seller->department_id = $param['department_id'];
  39. $seller->department_name = $departments[$param['department_id']];
  40. $seller->save();
  41. } catch (\Exception $e) {
  42. $this->error($e->getMessage());
  43. }
  44. $this->success('操作成功', 'seller/index');
  45. } else {
  46. $id = $this->request->has('id','route') ? intval($this->request->param('id')) : 0;
  47. if ($id) {
  48. $data = $this->model->find($id);
  49. } else {
  50. $data = [
  51. 'id' => 0,
  52. 'name' => '',
  53. 'department_id' => 1,
  54. ];
  55. }
  56. return View::fetch('', [
  57. 'data' => $data,
  58. 'departments' => $departments
  59. ]);
  60. }
  61. }
  62. public function delete($id)
  63. {
  64. if ($this->model->destroy($id)) {
  65. return json(['code'=>2]);
  66. } else {
  67. return json(['code'=>0]);
  68. }
  69. }
  70. }