1
0
forked from poc/pds

Added save button in invoice pending reason page

This commit is contained in:
dhanabalan
2026-01-20 10:52:03 +05:30
parent 88346b9ad8
commit 8e1238e719
2 changed files with 12 additions and 2 deletions

View File

@@ -146,12 +146,13 @@ class InvoicePendingReason extends Page
->columns(3);
}
public function addRemark($value){
public function addRemark(){
$plantId = $this->filters['plant_id'] ?? null;
$documentNumber = $this->filters['document_number'] ?? null;
$remark = $value;
$remark = $this->filters['remark'] ?? null;
if (! $plantId || ! $documentNumber || $remark == '') {
return;
}