moveSurplus() 공개 메소드

调整库存
public moveSurplus ( integer $number, string $remark ) : boolean
$number integer
$remark string
리턴 boolean
예제 #1
0
 public function move($runValidation = true)
 {
     if ($runValidation && !$this->validate()) {
         return false;
     }
     return $this->_goods->moveSurplus($this->amount, '管理人员调整库存。');
 }