1
0
forked from poc/pds

solved issue for opening only asn invoice

This commit is contained in:
dhanabalan
2026-04-11 16:22:03 +05:30
parent eb33c57973
commit 3547f437f7
2 changed files with 20 additions and 16 deletions

View File

@@ -1135,20 +1135,20 @@ class InvoiceValidationResource extends Resource
->visible(function () {
return Filament::auth()->user()->can('view import invoice');
}),
ExportAction::make()
ExportAction::make('invoice_export')
->label('Export Invoices')
->color('warning')
->exporter(InvoiceValidationExporter::class)
->visible(function () {
return Filament::auth()->user()->can('view export invoice');
}),
// ExportAction::make()
// ->label('Export Asn')
// ->color('warning')
// ->exporter(AxnExporter::class)
// ->visible(function () {
// return Filament::auth()->user()->can('view export asn invoice');
// }),
ExportAction::make('axn_export')
->label('Export Asn')
->color('warning')
->exporter(AxnExporter::class)
->visible(function () {
return Filament::auth()->user()->can('view export asn invoice');
}),
])
->filters([