赛亿提成统计系统

Company.php 1.9KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <?php
  2. namespace app\index\controller;
  3. use daswork\Controller;
  4. use daswork\lib\Config;
  5. use app\index\model\MonthPicker;
  6. use app\index\model\Commission;
  7. use app\index\model\Company as CompanyModel;
  8. class Company extends Controller
  9. {
  10. private $model;
  11. public function __construct()
  12. {
  13. parent::__construct();
  14. $this->model = new CompanyModel();
  15. }
  16. public function index()
  17. {
  18. $key = isset($_GET['key']) ? $_GET['key'] : '';
  19. $where = '';
  20. if ($key) {
  21. $where = "WHERE name LIKE '$key%' ";
  22. $this->assign('key', $key);
  23. }
  24. $page = isset($_GET['page']) ? escapeString($_GET['page']) : 1;
  25. $data = $this->model->pageList($where, $page, 20);
  26. $this->assign("data", $data);
  27. $this->fetch();
  28. }
  29. public function save()
  30. {
  31. $params = escapeString($_POST);
  32. $id = $params['id'];
  33. $name = $params['name'];
  34. $initial_balance = $params['initial_balance'];
  35. if ($id) {
  36. $res = $this->model->exec("UPDATE `company` SET `name`='$name', `initial_balance`='$initial_balance' WHERE `id`=$id;");
  37. // var_dump($res);
  38. } else {
  39. $res = $this->model->exec("INSERT INTO `company`(`name`,`initial_balance`) VALUES('" . $name . "','" . $initial_balance . "');");
  40. }
  41. if ($res===false) {
  42. echo json_encode(['code' => 1, "msg"=>$this->model->lastErrorMsg()]);
  43. } else {
  44. echo json_encode(['code' => 0, "msg"=>"操作成功"]);
  45. }
  46. }
  47. public function delete()
  48. {
  49. $id = escapeString($_POST['id']);
  50. $res = $this->model->exec("DELETE FROM `company` WHERE `id`=$id;");
  51. if ($res===false) {
  52. echo json_encode(['code' => 1, "msg"=>$this->model->lastErrorMsg()]);
  53. } else {
  54. echo json_encode(['code' => 0, "msg"=>"操作成功"]);
  55. }
  56. }
  57. }