invoice fx

This commit is contained in:
merdan 2022-11-11 19:25:33 +05:00
parent 235e36a76c
commit ce5bd8dd1c
1 changed files with 0 additions and 8 deletions

View File

@ -37,12 +37,4 @@ class Order extends \Webkul\Sales\Models\Order implements \Sarga\Shop\Contracts\
return $this->status === self::STATUS_SHIPPING && parent::canInvoice();
}
/**
* Checks if new shipment is allow or not
*
* @return bool
*/
public function canShip(): bool{
return $this->status === self::STATUS_SHIPPING && parent::canShip();
}
}