src/Entity/Order.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use ORM\Table;
  4. use Doctrine\ORM\Mapping as ORM;
  5. use App\Repository\OrderRepository;
  6. #[ORM\Table(name'customer_orders')]
  7. #[ORM\Entity(repositoryClassOrderRepository::class)]
  8. class Order
  9. {
  10.     #[ORM\Id]
  11.     #[ORM\GeneratedValue]
  12.     #[ORM\Column(type'integer')]
  13.     private ?int $id null;
  14.     #[ORM\Column(type'string'length255nullabletrue)]
  15.     private ?string $order_pos_id null;
  16.     #[ORM\Column(type'string'length255)]
  17.     private string $order_status;
  18.     #[ORM\Column(type'boolean')]
  19.     private bool $is_sent false;
  20.     #[ORM\Column(type'integer')]
  21.     private int $total_price 0;
  22.     #[ORM\Column(type'integer')]
  23.     private int $originalTotalPrice 0;
  24.     #[ORM\Column(type'integer')]
  25.     private int $pickupTime 0;
  26.     #[ORM\Column(type'integer')]
  27.     private int $restaurant_id 0;
  28.     #[ORM\Column(type'string'length255)]
  29.     private string $user_uuid;
  30.     #[ORM\Column(type'datetime')]
  31.     private \DateTimeInterface $created_at;
  32.     #[ORM\Column(type'datetime')]
  33.     private \DateTimeInterface $updated_at;
  34.     #[ORM\Column(type'text'nullabletrue)]
  35.     private ?string $order_items_json null;
  36.     #[ORM\Column(type'string'nullabletrue)]
  37.     private ?string $used_reward null;
  38.     #[ORM\Column(type'string'nullabletrue)]
  39.     private ?string $gained_reward null;
  40.     #[ORM\Column(type'string'nullabletrue)]
  41.     private ?string $wallet_deduct null;
  42.     #[ORM\Column(type'text'nullabletrue)]
  43.     private ?string $order_items_names null;
  44.     #[ORM\Column(type'text'nullabletrue)]
  45.     private ?string $order_reward_items null;
  46.     #[ORM\Column(type'string'length255nullabletrue)]
  47.     private ?string $remote_order_id null;
  48.     #[ORM\Column(type'string'length255nullabletrue)]
  49.     private ?string $stripe_id null;
  50.     #[ORM\Column(type'text'nullabletrue)]
  51.     private ?string $remote_response null;
  52.     #[ORM\Column(type'text'nullabletrue)]
  53.     private ?array $discounts null;
  54.     public function __construct()
  55.     {
  56.         $this->created_at = new \DateTime();
  57.         $this->updated_at = new \DateTime();
  58.     }
  59.     // Getters
  60.     public function getId(): ?int
  61.     {
  62.         return $this->id;
  63.     }
  64.     public function getOrderPosId(): ?string
  65.     {
  66.         return $this->order_pos_id;
  67.     }
  68.     public function getOrderStatus(): string
  69.     {
  70.         return $this->order_status;
  71.     }
  72.     public function getIsSent(): bool
  73.     {
  74.         return $this->is_sent;
  75.     }
  76.     public function getTotalPrice(): int
  77.     {
  78.         return $this->total_price;
  79.     }
  80.     public function getRestaurantId(): int
  81.     {
  82.         return $this->restaurant_id;
  83.     }
  84.     public function getUserUuid(): string
  85.     {
  86.         return $this->user_uuid;
  87.     }
  88.     public function getUsedReward(): ?string
  89.     {
  90.         return $this->used_reward;
  91.     }
  92.     public function getGainedReward(): ?string
  93.     {
  94.         return $this->gained_reward;
  95.     }
  96.     public function getWalletDeduct(): ?string
  97.     {
  98.         return $this->wallet_deduct;
  99.     }
  100.     public function getCreatedAt(): \DateTimeInterface
  101.     {
  102.         return $this->created_at;
  103.     }
  104.     public function getUpdatedAt(): \DateTimeInterface
  105.     {
  106.         return $this->updated_at;
  107.     }
  108.     public function getOrderItemsJson(): ?string
  109.     {
  110.         return $this->order_items_json;
  111.     }
  112.     public function getOrderItemsNames(): ?string
  113.     {
  114.         return $this->order_items_names;
  115.     }
  116.     public function getOrderRewardItems(): ?string
  117.     {
  118.         return $this->order_reward_items;
  119.     }
  120.     public function getRemoteOrderId(): ?string
  121.     {
  122.         return $this->remote_order_id;
  123.     }
  124.     public function getStripeId(): ?string
  125.     {
  126.         return $this->stripe_id;
  127.     }
  128.     public function getRemoteResponse(): ?array
  129.     {
  130.         return $this->remote_response json_decode($this->remote_responsetrue) : null;
  131.     }
  132.     
  133.     public function getDiscounts(): ?array
  134.     {
  135.         return $this->discounts;
  136.     }
  137.     // Setters
  138.     public function setOrderPosId(?string $order_pos_id): self
  139.     {
  140.         $this->order_pos_id $order_pos_id;
  141.         return $this;
  142.     }
  143.     public function setOrderStatus(string $order_status): self
  144.     {
  145.         $this->order_status $order_status;
  146.         return $this;
  147.     }
  148.     public function setIsSent(bool $is_sent): self
  149.     {
  150.         $this->is_sent $is_sent;
  151.         return $this;
  152.     }
  153.     public function setTotalPrice(int $total_price): self
  154.     {
  155.         $this->total_price $total_price;
  156.         return $this;
  157.     }
  158.     public function setRestaurantId(int $restaurant_id): self
  159.     {
  160.         $this->restaurant_id $restaurant_id;
  161.         return $this;
  162.     }
  163.     public function setUserUuid(string $user_uuid): self
  164.     {
  165.         $this->user_uuid $user_uuid;
  166.         return $this;
  167.     }
  168.     public function setUsedReward(string $used_reward): self
  169.     {
  170.         $this->used_reward $used_reward;
  171.         return $this;
  172.     }
  173.     public function setGainedReward(string $gained_reward): self
  174.     {
  175.         $this->gained_reward $gained_reward;
  176.         return $this;
  177.     }
  178.     public function setWalletDeduct(string $wallet_deduct): self
  179.     {
  180.         $this->wallet_deduct $wallet_deduct;
  181.         return $this;
  182.     }
  183.     
  184.     public function setCreatedAt(\DateTimeInterface $created_at): self
  185.     {
  186.         $this->created_at $created_at;
  187.         return $this;
  188.     }
  189.     public function setUpdatedAt(\DateTimeInterface $updated_at): self
  190.     {
  191.         $this->updated_at $updated_at;
  192.         return $this;
  193.     }
  194.     public function setOrderItemsJson(?string $order_items_json): self
  195.     {
  196.         $this->order_items_json $order_items_json;
  197.         return $this;
  198.     }
  199.     public function setOrderRewardItems(?string $order_reward_items): self
  200.     {
  201.         $this->order_reward_items $order_reward_items;
  202.         return $this;
  203.     }
  204.     public function setOrderItemsNames(?string $order_items_names): self
  205.     {
  206.         $this->order_items_names $order_items_names;
  207.         return $this;
  208.     }
  209.     public function setRemoteOrderId(?string $remote_order_id): self
  210.     {
  211.         $this->remote_order_id $remote_order_id;
  212.         return $this;
  213.     }
  214.     public function setStripeId(?string $stripe_id): self
  215.     {
  216.         $this->stripe_id $stripe_id;
  217.         return $this;
  218.     }
  219.     public function setRemoteResponse(?array $remote_response): self
  220.     {
  221.         $this->remote_response $remote_response json_encode($remote_response) : null;
  222.         return $this;
  223.     }
  224.     public function setDiscounts(?array $discounts): self
  225.     {
  226.         $this->discounts $discounts;
  227.         return $this;
  228.     }
  229.     public function getOriginalTotalPrice()
  230.     {
  231.         return $this->originalTotalPrice;
  232.     }
  233.     public function setOriginalTotalPrice($originalTotalPrice)
  234.     {
  235.         $this->originalTotalPrice $originalTotalPrice;
  236.     }
  237.     public function getPickupTime()
  238.     {
  239.         return $this->pickupTime;
  240.     }
  241.     public function setPickupTime($pickupTime)
  242.     {
  243.         $this->pickupTime $pickupTime;
  244.     }
  245. }