|
@@ -10,7 +10,6 @@ use App\Enums\Accounting\AdjustmentType;
|
10
|
10
|
use App\Filament\Company\Clusters\Settings;
|
11
|
11
|
use App\Filament\Company\Clusters\Settings\Resources\AdjustmentResource\Pages;
|
12
|
12
|
use App\Models\Accounting\Adjustment;
|
13
|
|
-use App\Services\CompanySettingsService;
|
14
|
13
|
use Filament\Forms;
|
15
|
14
|
use Filament\Forms\Form;
|
16
|
15
|
use Filament\Notifications\Notification;
|
|
@@ -193,7 +192,6 @@ class AdjustmentResource extends Resource
|
193
|
192
|
->form([
|
194
|
193
|
Forms\Components\DateTimePicker::make('paused_until')
|
195
|
194
|
->label('Auto-resume date')
|
196
|
|
- ->timezone(CompanySettingsService::getDefaultTimezone())
|
197
|
195
|
->helperText('When should this adjustment automatically resume? Leave empty to keep paused indefinitely.')
|
198
|
196
|
->after('now'),
|
199
|
197
|
Forms\Components\Textarea::make('status_reason')
|
|
@@ -253,7 +251,6 @@ class AdjustmentResource extends Resource
|
253
|
251
|
->form([
|
254
|
252
|
Forms\Components\DateTimePicker::make('paused_until')
|
255
|
253
|
->label('Auto-resume date')
|
256
|
|
- ->timezone(CompanySettingsService::getDefaultTimezone())
|
257
|
254
|
->helperText('When should these adjustments automatically resume? Leave empty to keep paused indefinitely.')
|
258
|
255
|
->after('now'),
|
259
|
256
|
Forms\Components\Textarea::make('status_reason')
|