development #139

Merged
nisse merged 7 commits from development into main 2025-04-08 01:38:09 +02:00
2 changed files with 4 additions and 3 deletions
Showing only changes of commit bcd5c6cdef - Show all commits

View File

@ -1,5 +1,7 @@
# Changelog
**2025-03-04**
**2025-04-04**
- Fixed #133 - Make product name not required
- Fixed #127 - Implement resource lock for orders
- 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'

View File

@ -153,8 +153,7 @@ public static function form(Form $form): Form
TextInput::make('sku')
->datalist(OrderProduct::all()->unique('sku')->pluck('sku')->toArray()),
TextInput::make('product_name')
->datalist(OrderProduct::all()->unique('product_name')->pluck('product_name')->toArray())
->required(),
->datalist(OrderProduct::all()->unique('product_name')->pluck('product_name')->toArray()),
TextInput::make('color')
->datalist(OrderProduct::all()->unique('color')->pluck('color')->toArray()),
Cluster::make([