MobilePriceLogService.php 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <?php
  2. namespace app\common\service;
  3. use app\common\model\Mobile;
  4. use app\common\model\MobilePriceLog;
  5. class MobilePriceLogService{
  6. protected $admin_id;
  7. protected $user_id;
  8. /** @var Mobile */
  9. protected $mobile;
  10. protected $before_price;
  11. protected $after_price;
  12. /**
  13. * @param mixed $before_price
  14. */
  15. public function setBeforePrice($before_price)
  16. {
  17. $this->before_price = $before_price;
  18. return $this;
  19. }
  20. /**
  21. * @param mixed $after_price
  22. */
  23. public function setAfterPrice($after_price)
  24. {
  25. $this->after_price = $after_price;
  26. return $this;
  27. }
  28. /**
  29. * @param mixed $admin_id
  30. */
  31. public function setAdminId($admin_id)
  32. {
  33. $this->admin_id = $admin_id;
  34. return $this;
  35. }
  36. public function setUserId($user_id)
  37. {
  38. $this->user_id = $user_id;
  39. return $this;
  40. }
  41. /**
  42. * @param Mobile $mobile
  43. */
  44. public function setMobile(Mobile $mobile)
  45. {
  46. $this->mobile = $mobile;
  47. return $this;
  48. }
  49. public function log(){
  50. /*if(empty($_SERVER['admin'])){
  51. return;
  52. }*/
  53. $this->setAdminId($_SERVER['admin']['id']??0);
  54. if($this->before_price!=$this->after_price){
  55. MobilePriceLog::create([
  56. 'admin_id'=>$this->admin_id,
  57. 'user_id'=>$this->user_id,
  58. 'mobile_id'=>$this->mobile->id,
  59. 'no'=>$this->mobile->no,
  60. 'before_price'=>$this->before_price,
  61. 'after_price'=>$this->after_price,
  62. ]);
  63. }
  64. }
  65. }