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

@@ -36,6 +36,15 @@ class InvoiceValidationExporter extends Exporter
->label('ITEM DESCRIPTION'),
ExportColumn::make('stickerMaster.item.uom')
->label('UNIT OF MEASURE'),
ExportColumn::make('stickerMaster.material_type')
->label('MATERIAL TYPE')
->formatStateUsing(fn ($state) => match ($state) {
1 => 'Individual',
2 => 'Bundle',
3 => 'Quantity',
4 => 'Bundle Individual',
default => '-',
}),
ExportColumn::make('motor_scanned_status')
->label('MOTOR SCANNED STATUS'),
ExportColumn::make('pump_scanned_status')