Resolve "Add dealer branch_code to Warranty Details Report" #1528

Merged
korina.cordero merged 4 commits from 597-add-dealer-branch_code-to-warranty-details-report into master-fix 2021-07-23 04:17:36 +00:00
Showing only changes of commit f2046625d8 - Show all commits

View file

@ -237,6 +237,11 @@ class Warranty
*/
protected $create_source;
/**
* @ORM\Column(type="string", length=80, nullable=true)
*/
protected $dealer_branch_code;
public function __construct()
{
$this->date_create = new DateTime();
@ -676,4 +681,14 @@ class Warranty
return $this->create_source;
}
public function setDealerBranchCode($dealer_branch_code)
{
$this->dealer_branch_code = $dealer_branch_code;
return $this;
}
public function getDealerBranchCode()
{
return $this->dealer_branch_code;
}
}