<?php
namespace App\Entity;
use ORM\Table;
use Doctrine\ORM\Mapping as ORM;
use App\Repository\OrderRepository;
#[ORM\Table(name: 'customer_orders')]
#[ORM\Entity(repositoryClass: OrderRepository::class)]
class Order
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column(type: 'integer')]
private ?int $id = null;
#[ORM\Column(type: 'string', length: 255, nullable: true)]
private ?string $order_pos_id = null;
#[ORM\Column(type: 'string', length: 255)]
private string $order_status;
#[ORM\Column(type: 'boolean')]
private bool $is_sent = false;
#[ORM\Column(type: 'integer')]
private int $total_price = 0;
#[ORM\Column(type: 'integer')]
private int $originalTotalPrice = 0;
#[ORM\Column(type: 'integer')]
private int $pickupTime = 0;
#[ORM\Column(type: 'integer')]
private int $restaurant_id = 0;
#[ORM\Column(type: 'string', length: 255)]
private string $user_uuid;
#[ORM\Column(type: 'datetime')]
private \DateTimeInterface $created_at;
#[ORM\Column(type: 'datetime')]
private \DateTimeInterface $updated_at;
#[ORM\Column(type: 'text', nullable: true)]
private ?string $order_items_json = null;
#[ORM\Column(type: 'string', nullable: true)]
private ?string $used_reward = null;
#[ORM\Column(type: 'string', nullable: true)]
private ?string $gained_reward = null;
#[ORM\Column(type: 'string', nullable: true)]
private ?string $wallet_deduct = null;
#[ORM\Column(type: 'text', nullable: true)]
private ?string $order_items_names = null;
#[ORM\Column(type: 'text', nullable: true)]
private ?string $order_reward_items = null;
#[ORM\Column(type: 'string', length: 255, nullable: true)]
private ?string $remote_order_id = null;
#[ORM\Column(type: 'string', length: 255, nullable: true)]
private ?string $stripe_id = null;
#[ORM\Column(type: 'text', nullable: true)]
private ?string $remote_response = null;
#[ORM\Column(type: 'text', nullable: true)]
private ?array $discounts = null;
public function __construct()
{
$this->created_at = new \DateTime();
$this->updated_at = new \DateTime();
}
// Getters
public function getId(): ?int
{
return $this->id;
}
public function getOrderPosId(): ?string
{
return $this->order_pos_id;
}
public function getOrderStatus(): string
{
return $this->order_status;
}
public function getIsSent(): bool
{
return $this->is_sent;
}
public function getTotalPrice(): int
{
return $this->total_price;
}
public function getRestaurantId(): int
{
return $this->restaurant_id;
}
public function getUserUuid(): string
{
return $this->user_uuid;
}
public function getUsedReward(): ?string
{
return $this->used_reward;
}
public function getGainedReward(): ?string
{
return $this->gained_reward;
}
public function getWalletDeduct(): ?string
{
return $this->wallet_deduct;
}
public function getCreatedAt(): \DateTimeInterface
{
return $this->created_at;
}
public function getUpdatedAt(): \DateTimeInterface
{
return $this->updated_at;
}
public function getOrderItemsJson(): ?string
{
return $this->order_items_json;
}
public function getOrderItemsNames(): ?string
{
return $this->order_items_names;
}
public function getOrderRewardItems(): ?string
{
return $this->order_reward_items;
}
public function getRemoteOrderId(): ?string
{
return $this->remote_order_id;
}
public function getStripeId(): ?string
{
return $this->stripe_id;
}
public function getRemoteResponse(): ?array
{
return $this->remote_response ? json_decode($this->remote_response, true) : null;
}
public function getDiscounts(): ?array
{
return $this->discounts;
}
// Setters
public function setOrderPosId(?string $order_pos_id): self
{
$this->order_pos_id = $order_pos_id;
return $this;
}
public function setOrderStatus(string $order_status): self
{
$this->order_status = $order_status;
return $this;
}
public function setIsSent(bool $is_sent): self
{
$this->is_sent = $is_sent;
return $this;
}
public function setTotalPrice(int $total_price): self
{
$this->total_price = $total_price;
return $this;
}
public function setRestaurantId(int $restaurant_id): self
{
$this->restaurant_id = $restaurant_id;
return $this;
}
public function setUserUuid(string $user_uuid): self
{
$this->user_uuid = $user_uuid;
return $this;
}
public function setUsedReward(string $used_reward): self
{
$this->used_reward = $used_reward;
return $this;
}
public function setGainedReward(string $gained_reward): self
{
$this->gained_reward = $gained_reward;
return $this;
}
public function setWalletDeduct(string $wallet_deduct): self
{
$this->wallet_deduct = $wallet_deduct;
return $this;
}
public function setCreatedAt(\DateTimeInterface $created_at): self
{
$this->created_at = $created_at;
return $this;
}
public function setUpdatedAt(\DateTimeInterface $updated_at): self
{
$this->updated_at = $updated_at;
return $this;
}
public function setOrderItemsJson(?string $order_items_json): self
{
$this->order_items_json = $order_items_json;
return $this;
}
public function setOrderRewardItems(?string $order_reward_items): self
{
$this->order_reward_items = $order_reward_items;
return $this;
}
public function setOrderItemsNames(?string $order_items_names): self
{
$this->order_items_names = $order_items_names;
return $this;
}
public function setRemoteOrderId(?string $remote_order_id): self
{
$this->remote_order_id = $remote_order_id;
return $this;
}
public function setStripeId(?string $stripe_id): self
{
$this->stripe_id = $stripe_id;
return $this;
}
public function setRemoteResponse(?array $remote_response): self
{
$this->remote_response = $remote_response ? json_encode($remote_response) : null;
return $this;
}
public function setDiscounts(?array $discounts): self
{
$this->discounts = $discounts;
return $this;
}
public function getOriginalTotalPrice()
{
return $this->originalTotalPrice;
}
public function setOriginalTotalPrice($originalTotalPrice)
{
$this->originalTotalPrice = $originalTotalPrice;
}
public function getPickupTime()
{
return $this->pickupTime;
}
public function setPickupTime($pickupTime)
{
$this->pickupTime = $pickupTime;
}
}