src/Eccube/Entity/Master/OrderStatus.php line 29

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of EC-CUBE
  4.  *
  5.  * Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
  6.  *
  7.  * http://www.ec-cube.co.jp/
  8.  *
  9.  * For the full copyright and license information, please view the LICENSE
  10.  * file that was distributed with this source code.
  11.  */
  12. namespace Eccube\Entity\Master;
  13. use Doctrine\ORM\Mapping as ORM;
  14. if (!class_exists(OrderStatus::class, false)) {
  15.     /**
  16.      * OrderStatus
  17.      *
  18.      * @ORM\Table(name="mtb_order_status")
  19.      * @ORM\InheritanceType("SINGLE_TABLE")
  20.      * @ORM\DiscriminatorColumn(name="discriminator_type", type="string", length=255)
  21.      * @ORM\HasLifecycleCallbacks()
  22.      * @ORM\Entity(repositoryClass="Eccube\Repository\Master\OrderStatusRepository")
  23.      * @ORM\Cache(usage="NONSTRICT_READ_WRITE")
  24.      */
  25.     class OrderStatus extends \Eccube\Entity\Master\AbstractMasterEntity
  26.     {
  27.         /** 新規受付. */
  28.         public const NEW = 1;
  29.         /** 注文取消し. */
  30.         public const CANCEL 3;
  31.         /** 対応中. */
  32.         public const IN_PROGRESS 4;
  33.         /** 発送済み. */
  34.         public const DELIVERED 5;
  35.         /** 入金済み. */
  36.         public const PAID 6;
  37.         /** 決済処理中. */
  38.         public const PENDING 7;
  39.         /** 購入処理中. */
  40.         public const PROCESSING 8;
  41.         /** 返品 */
  42.         public const RETURNED 9;
  43.         /**
  44.          * 受注一覧画面で, ステータスごとの受注件数を表示するかどうか
  45.          *
  46.          * @var bool
  47.          *
  48.          * @ORM\Column(name="display_order_count", type="boolean", options={"default":false})
  49.          */
  50.         private $display_order_count false;
  51.         /**
  52.          * @return bool
  53.          */
  54.         public function isDisplayOrderCount()
  55.         {
  56.             return $this->display_order_count;
  57.         }
  58.         /**
  59.          * @param bool $display_order_count
  60.          */
  61.         public function setDisplayOrderCount($display_order_count false)
  62.         {
  63.             $this->display_order_count $display_order_count;
  64.         }
  65.     }
  66. }