tp6框架的销售统计系统

Company.php 2.1KB

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