feat: API produktów - nowe pola new_to_date i additional_message (v0.332)
- ProductRepository::getProductForApi() eksportuje new_to_date, additional_message, additional_message_required, additional_message_text - ProductsApiController obsługuje te pola w PUT/PATCH - Zaktualizowana dokumentacja API.md i CHANGELOG Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -654,6 +654,10 @@ class ProductRepository
|
|||||||
'custom_label_2' => $product['custom_label_2'],
|
'custom_label_2' => $product['custom_label_2'],
|
||||||
'custom_label_3' => $product['custom_label_3'],
|
'custom_label_3' => $product['custom_label_3'],
|
||||||
'custom_label_4' => $product['custom_label_4'],
|
'custom_label_4' => $product['custom_label_4'],
|
||||||
|
'new_to_date' => $product['new_to_date'],
|
||||||
|
'additional_message' => (int)($product['additional_message'] ?? 0),
|
||||||
|
'additional_message_required' => (int)($product['additional_message_required'] ?? 0),
|
||||||
|
'additional_message_text' => $product['additional_message_text'],
|
||||||
'set_id' => $product['set_id'] !== null ? (int)$product['set_id'] : null,
|
'set_id' => $product['set_id'] !== null ? (int)$product['set_id'] : null,
|
||||||
'product_unit_id' => $product['product_unit_id'] !== null ? (int)$product['product_unit_id'] : null,
|
'product_unit_id' => $product['product_unit_id'] !== null ? (int)$product['product_unit_id'] : null,
|
||||||
'producer_id' => $product['producer_id'] !== null ? (int)$product['producer_id'] : null,
|
'producer_id' => $product['producer_id'] !== null ? (int)$product['producer_id'] : null,
|
||||||
|
|||||||
@@ -437,7 +437,7 @@ class ProductsApiController
|
|||||||
// String fields — direct mapping
|
// String fields — direct mapping
|
||||||
$stringFields = [
|
$stringFields = [
|
||||||
'sku', 'ean', 'custom_label_0', 'custom_label_1', 'custom_label_2',
|
'sku', 'ean', 'custom_label_0', 'custom_label_1', 'custom_label_2',
|
||||||
'custom_label_3', 'custom_label_4', 'wp',
|
'custom_label_3', 'custom_label_4', 'wp', 'new_to_date', 'additional_message_text',
|
||||||
];
|
];
|
||||||
foreach ($stringFields as $field) {
|
foreach ($stringFields as $field) {
|
||||||
if (isset($body[$field])) {
|
if (isset($body[$field])) {
|
||||||
@@ -447,6 +447,18 @@ class ProductsApiController
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (isset($body['additional_message'])) {
|
||||||
|
$d['additional_message'] = !empty($body['additional_message']) ? 'on' : '';
|
||||||
|
} elseif ($existing !== null) {
|
||||||
|
$d['additional_message'] = !empty($existing['additional_message']) ? 'on' : '';
|
||||||
|
}
|
||||||
|
|
||||||
|
if (isset($body['additional_message_required'])) {
|
||||||
|
$d['additional_message_required'] = !empty($body['additional_message_required']) ? 'on' : '';
|
||||||
|
} elseif ($existing !== null) {
|
||||||
|
$d['additional_message_required'] = !empty($existing['additional_message_required']) ? 'on' : '';
|
||||||
|
}
|
||||||
|
|
||||||
// Foreign keys
|
// Foreign keys
|
||||||
if (isset($body['set_id'])) {
|
if (isset($body['set_id'])) {
|
||||||
$d['set'] = $body['set_id'];
|
$d['set'] = $body['set_id'];
|
||||||
|
|||||||
13
docs/API.md
13
docs/API.md
@@ -216,6 +216,10 @@ Odpowiedz:
|
|||||||
"weight": 0.5,
|
"weight": 0.5,
|
||||||
"stock_0_buy": 0,
|
"stock_0_buy": 0,
|
||||||
"custom_label_0": null,
|
"custom_label_0": null,
|
||||||
|
"new_to_date": null,
|
||||||
|
"additional_message": 0,
|
||||||
|
"additional_message_required": 0,
|
||||||
|
"additional_message_text": null,
|
||||||
"set_id": null,
|
"set_id": null,
|
||||||
"product_unit_id": 1,
|
"product_unit_id": 1,
|
||||||
"producer_id": 3,
|
"producer_id": 3,
|
||||||
@@ -294,6 +298,10 @@ Content-Type: application/json
|
|||||||
"status": 1,
|
"status": 1,
|
||||||
"sku": "PROD-001",
|
"sku": "PROD-001",
|
||||||
"ean": "5901234123457",
|
"ean": "5901234123457",
|
||||||
|
"new_to_date": null,
|
||||||
|
"additional_message": 0,
|
||||||
|
"additional_message_required": 0,
|
||||||
|
"additional_message_text": null,
|
||||||
"weight": 0.5,
|
"weight": 0.5,
|
||||||
"languages": {
|
"languages": {
|
||||||
"pl": {
|
"pl": {
|
||||||
@@ -330,6 +338,10 @@ Content-Type: application/json
|
|||||||
{
|
{
|
||||||
"price_brutto": 129.99,
|
"price_brutto": 129.99,
|
||||||
"status": 1,
|
"status": 1,
|
||||||
|
"new_to_date": "2026-12-31",
|
||||||
|
"additional_message": 1,
|
||||||
|
"additional_message_required": 0,
|
||||||
|
"additional_message_text": "Dodaj tresc do personalizacji",
|
||||||
"languages": {
|
"languages": {
|
||||||
"pl": {
|
"pl": {
|
||||||
"name": "Zaktualizowana nazwa"
|
"name": "Zaktualizowana nazwa"
|
||||||
@@ -339,6 +351,7 @@ Content-Type: application/json
|
|||||||
```
|
```
|
||||||
|
|
||||||
Partial update — wystarczy przeslac tylko zmienione pola. Pola nieprzeslane zachowuja aktualna wartosc.
|
Partial update — wystarczy przeslac tylko zmienione pola. Pola nieprzeslane zachowuja aktualna wartosc.
|
||||||
|
Pola ustawien produktu obslugiwane przez API: `new_to_date`, `additional_message`, `additional_message_required`, `additional_message_text`.
|
||||||
|
|
||||||
Odpowiedz: pelne dane produktu (jak w `get`).
|
Odpowiedz: pelne dane produktu (jak w `get`).
|
||||||
|
|
||||||
|
|||||||
@@ -4,6 +4,14 @@ Logi zmian z migracji na Domain-Driven Architecture. Najnowsze na gorze.
|
|||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
## ver. 0.332 (2026-03-01) - API produktów: nowe pola new_to_date i additional_message
|
||||||
|
|
||||||
|
- **NEW**: `ProductRepository::getProductForApi()` — eksportuje 4 nowe pola: `new_to_date`, `additional_message` (int 0/1), `additional_message_required` (int 0/1), `additional_message_text`
|
||||||
|
- **NEW**: `ProductsApiController` — obsługa nowych pól w PUT/PATCH (aktualizacja `new_to_date`, `additional_message`, `additional_message_required`, `additional_message_text`)
|
||||||
|
- **DOCS**: `docs/API.md` — zaktualizowane przykłady GET/PUT dla nowych pól produktu
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
## ver. 0.331 (2026-03-01) - Bugfix: strona produktu używała layoutu kategorii zamiast domyślnego
|
## ver. 0.331 (2026-03-01) - Bugfix: strona produktu używała layoutu kategorii zamiast domyślnego
|
||||||
|
|
||||||
- **FIX**: `LayoutsRepository::getProductLayout()` — fallback gdy produkt i jego kategorie nie mają przypisanego layoutu zmieniany z `categories_default = 1` na `status = 1`; wcześniej produkty bez layoutu pobierały szablon "Podstrony - kategorie" zamiast właściwego domyślnego
|
- **FIX**: `LayoutsRepository::getProductLayout()` — fallback gdy produkt i jego kategorie nie mają przypisanego layoutu zmieniany z `categories_default = 1` na `status = 1`; wcześniej produkty bez layoutu pobierały szablon "Podstrony - kategorie" zamiast właściwego domyślnego
|
||||||
|
|||||||
@@ -23,10 +23,10 @@ composer test # standard
|
|||||||
## Aktualny stan
|
## Aktualny stan
|
||||||
|
|
||||||
```text
|
```text
|
||||||
OK (805 tests, 2253 assertions)
|
OK (807 tests, 2258 assertions)
|
||||||
```
|
```
|
||||||
|
|
||||||
Zweryfikowano: 2026-02-24 (ver. 0.318)
|
Zweryfikowano: 2026-03-01 (ver. 0.332)
|
||||||
|
|
||||||
## Konfiguracja
|
## Konfiguracja
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user