1
0
forked from poc/pds

Added material type 4 (Bundle Individual) on livewire, blade, exporter, resource and create page

This commit is contained in:
dhanabalan
2026-05-26 09:01:52 +05:30
parent 68ee079529
commit 4378f3adbd
5 changed files with 944 additions and 920 deletions

View File

@@ -50,6 +50,7 @@ class InvoiceDataTable extends Component
'refreshEmptyInvoice' => 'loadEmptyData',
'refreshInvoiceData' => 'loadData',
'refreshMaterialInvoiceData' => 'loadMaterialData',
'refreshMaterialInvoiceData1' => 'loadMaterialData1',
'openCapacitorModal' => 'showCapacitorInputBox',
];
@@ -602,6 +603,8 @@ class InvoiceDataTable extends Component
$row['material_type'] = 'Bundle';
} elseif ($matType === 3) {
$row['material_type'] = 'Quantity';
} elseif ($matType === 4) {
$row['material_type'] = 'Bundle Individual';
} else {
$row['material_type'] = 'N/A';
}