1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <?php
- namespace app\common\service;
- use app\common\model\Mobile;
- use app\common\model\MobilePriceLog;
- class MobilePriceLogService{
- protected $admin_id;
- protected $user_id;
- /** @var Mobile */
- protected $mobile;
- protected $before_price;
- protected $after_price;
- /**
- * @param mixed $before_price
- */
- public function setBeforePrice($before_price)
- {
- $this->before_price = $before_price;
- return $this;
- }
- /**
- * @param mixed $after_price
- */
- public function setAfterPrice($after_price)
- {
- $this->after_price = $after_price;
- return $this;
- }
- /**
- * @param mixed $admin_id
- */
- public function setAdminId($admin_id)
- {
- $this->admin_id = $admin_id;
- return $this;
- }
- public function setUserId($user_id)
- {
- $this->user_id = $user_id;
- return $this;
- }
- /**
- * @param Mobile $mobile
- */
- public function setMobile(Mobile $mobile)
- {
- $this->mobile = $mobile;
- return $this;
- }
- public function log(){
- /*if(empty($_SERVER['admin'])){
- return;
- }*/
- $this->setAdminId($_SERVER['admin']['id']??0);
- if($this->before_price!=$this->after_price){
- MobilePriceLog::create([
- 'admin_id'=>$this->admin_id,
- 'user_id'=>$this->user_id,
- 'mobile_id'=>$this->mobile->id,
- 'no'=>$this->mobile->no,
- 'before_price'=>$this->before_price,
- 'after_price'=>$this->after_price,
- ]);
- }
- }
- }
|