some progress in bug
This commit is contained in:
parent
c73e2ca760
commit
acbf6b27e4
|
@ -85,6 +85,12 @@ class HesabdariRow
|
||||||
#[ORM\ManyToOne(inversedBy: 'hesabdariRows')]
|
#[ORM\ManyToOne(inversedBy: 'hesabdariRows')]
|
||||||
private ?Cheque $cheque = null;
|
private ?Cheque $cheque = null;
|
||||||
|
|
||||||
|
#[ORM\Column(length: 255, nullable: true)]
|
||||||
|
private ?string $discount = null;
|
||||||
|
|
||||||
|
#[ORM\Column(length: 255, nullable: true)]
|
||||||
|
private ?string $tax = null;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -313,4 +319,28 @@ class HesabdariRow
|
||||||
|
|
||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function getDiscount(): ?string
|
||||||
|
{
|
||||||
|
return $this->discount;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function setDiscount(?string $discount): static
|
||||||
|
{
|
||||||
|
$this->discount = $discount;
|
||||||
|
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getTax(): ?string
|
||||||
|
{
|
||||||
|
return $this->tax;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function setTax(?string $tax): static
|
||||||
|
{
|
||||||
|
$this->tax = $tax;
|
||||||
|
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue