1
0
forked from poc/pds

Updated validation logics for resource, importer, exporter, create files and Added columns in model file

This commit is contained in:
dhanabalan
2026-05-02 18:57:13 +05:30
parent fba8101da3
commit 7e1fea11c6
5 changed files with 269 additions and 90 deletions

View File

@@ -29,9 +29,9 @@ class ProductionOrderExporter extends Exporter
ExportColumn::make('quantity')
->label('QUANTITY'),
ExportColumn::make('start_date')
->label('START DATETIME'),
->label('START DATE'),
ExportColumn::make('end_date')
->label('END DATETIME'),
->label('END DATE'),
ExportColumn::make('production_order')
->label('PRODUCTION ORDER'),
ExportColumn::make('from_serial_number')
@@ -43,9 +43,11 @@ class ProductionOrderExporter extends Exporter
ExportColumn::make('created_by')
->label('CREATED BY'),
ExportColumn::make('updated_at')
->label('UPDATED AT'),
->label('UPDATED AT')
->enabledByDefault(false),
ExportColumn::make('updated_by')
->label('UPDATED BY'),
->label('UPDATED BY')
->enabledByDefault(false),
ExportColumn::make('deleted_at')
->label('DELETED AT')
->enabledByDefault(false),