Compare commits

...

4 Commits

7 changed files with 32 additions and 8 deletions

View File

@ -1,6 +1,11 @@
# Changelog
**2025-03-04**
- Fixed #125 - 'Add Payment' on LIst Invoice page modal is too wide
- Fixed #124 - Reorder button for product services is displayed on wrong side
- Fixed #123 - Typo 'Add to product Services'
**2025-03-11**
- Fixed #122 - Non-admins can see payments
- Fixed #107 - Fix dashboard
- Fixed #118 - Improved customer form and re-add 'create customer' to order form
- Fixed #117 - Draft orders should not show up in order tabs

View File

@ -112,8 +112,7 @@ public static function getPages(): array
{
return [
'index' => \App\Filament\Admin\Resources\CustomerResource\Pages\ListCustomers::route('/'),
// 'create' => \App\Filament\Admin\Resources\CustomerResource\Pages\CreateCustomer::route('/create'),
'edit' => \App\Filament\Admin\Resources\CustomerResource\Pages\EditCustomer::route('/{record}/edit'),
'edit' => \App\Filament\Admin\Resources\CustomerResource\Pages\EditCustomer::route('/{record}/edit'),
];
}
}

View File

@ -7,6 +7,7 @@
use Filament\Forms\Form;
use Filament\Resources\RelationManagers\RelationManager;
use Filament\Tables\Table;
use Illuminate\Database\Eloquent\Model;
class PaymentsRelationManager extends RelationManager
{
@ -27,4 +28,9 @@ public function table(Table $table): Table
{
return PaymentResource::table($table);
}
public static function canViewForRecord(Model $ownerRecord, string $pageClass): bool
{
return auth()->user()->is_admin ?? false;
}
}

View File

@ -249,6 +249,7 @@ public static function table(Table $table): Table
BulkAction::make('Create Payment')
->icon(IconEnum::PAYMENTS->value)
->form(fn ($form) => PaymentResource::form($form))
->modalWidth('lg')
->action(function (Collection $records, array $data) {
if ($records->pluck('customer_id')->unique()->count() !== 1) {
Notification::make()

View File

@ -145,6 +145,10 @@ public static function form(Form $form): Form
TableRepeater::make('order_products')
->label('Garments')
->addActionLabel('Add new garment')
->reorderable()
->cloneable()
->defaultItems(1)
->schema([
TextInput::make('sku')
->datalist(OrderProduct::all()->unique('sku')->pluck('sku')->toArray()),
@ -180,14 +184,12 @@ public static function form(Form $form): Form
->rules('numeric'),
])
->label('Sizes'),
])
->reorderable()
->cloneable()
->defaultItems(1),
]),
Repeater::make('services')
->view('filament.forms.compact-repeater')
->label('Product Services')
->addActionLabel('Add new product service')
->schema([
Grid::make(19)
->schema([

View File

@ -25,7 +25,7 @@
| or any other location as required by the application or its packages.
*/
'version' => '20250311',
'version' => '20250403',
/*
|--------------------------------------------------------------------------

View File

@ -118,6 +118,7 @@ class="fi-fo-repeater-item divide-y divide-gray-100 rounded-xl bg-white shadow-
>
@if ($reorderActionIsVisible || $moveUpActionIsVisible || $moveDownActionIsVisible)
<ul class="flex items-center gap-x-3">
{{--
@if ($reorderActionIsVisible)
<li
x-sortable-handle
@ -126,6 +127,7 @@ class="fi-fo-repeater-item divide-y divide-gray-100 rounded-xl bg-white shadow-
{{ $reorderAction }}
</li>
@endif
--}}
@if ($moveUpActionIsVisible || $moveDownActionIsVisible)
<li
@ -156,7 +158,7 @@ class="flex items-center justify-center"
</h4>
@endif
@if ($cloneActionIsVisible || $deleteActionIsVisible || $isCollapsible || $visibleExtraItemActions)
@if ($cloneActionIsVisible || $deleteActionIsVisible || $isCollapsible || $visibleExtraItemActions || $reorderActionIsVisible)
<ul
class="ms-auto flex items-center gap-x-3"
>
@ -166,6 +168,15 @@ class="ms-auto flex items-center gap-x-3"
</li>
@endforeach
@if ($reorderActionIsVisible)
<li
x-sortable-handle
x-on:click.stop
>
{{ $reorderAction }}
</li>
@endif
@if ($cloneActionIsVisible)
<li x-on:click.stop>
{{ $cloneAction }}