diff --git a/src/Entity/JobOrder.php b/src/Entity/JobOrder.php index b026768a..c834bca4 100644 --- a/src/Entity/JobOrder.php +++ b/src/Entity/JobOrder.php @@ -86,6 +86,12 @@ class JobOrder */ protected $service_type; + // warranty class + /** + * @ORM\Column(type="string", length=25) + */ + protected $warranty_class; + // customer that requested job order /** * @ORM\ManyToOne(targetEntity="Customer", inversedBy="job_orders") @@ -260,6 +266,17 @@ class JobOrder return $this->service_type; } + public function setWarrantyClass($warranty_class) + { + $this->warranty_class = $warranty_class; + return $this; + } + + public function getWarrantyClass() + { + return $this->warranty_class; + } + public function setCustomer(Customer $customer) { $this->customer = $customer;