some progress in bug

This commit is contained in:
Hesabix 2024-05-16 08:23:00 +00:00
parent c73e2ca760
commit acbf6b27e4

View file

@ -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;
}
} }