feat: implement product creation workflow with variants, attribute definitions, and validation logic
This commit is contained in:
103
app/Domains/Catalog/Controllers/AttributeController.php
Normal file
103
app/Domains/Catalog/Controllers/AttributeController.php
Normal file
@@ -0,0 +1,103 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Domains\Catalog\Controllers;
|
||||||
|
|
||||||
|
use App\Domains\Catalog\Models\Attribute;
|
||||||
|
use App\Domains\Catalog\Requests\StoreAttributeRequest;
|
||||||
|
use App\Domains\Catalog\Requests\UpdateAttributeRequest;
|
||||||
|
use App\Domains\Catalog\Resources\AttributeResource;
|
||||||
|
use App\Domains\Shared\Enums\FieldType;
|
||||||
|
use App\Domains\Tenant\Models\Tenant;
|
||||||
|
use App\Http\Controllers\Controller;
|
||||||
|
use Illuminate\Http\JsonResponse;
|
||||||
|
use Illuminate\Http\Response;
|
||||||
|
use Illuminate\Support\Facades\DB;
|
||||||
|
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
|
||||||
|
|
||||||
|
class AttributeController extends Controller
|
||||||
|
{
|
||||||
|
public function index(Tenant $tenant): JsonResponse
|
||||||
|
{
|
||||||
|
$query = Attribute::query()
|
||||||
|
->where('tenant_codigo', $tenant->codigo)
|
||||||
|
->with('options')
|
||||||
|
->latest();
|
||||||
|
|
||||||
|
return AttributeResource::collection($query->paginateFromRequest())->response();
|
||||||
|
}
|
||||||
|
|
||||||
|
public function store(StoreAttributeRequest $request, Tenant $tenant): JsonResponse
|
||||||
|
{
|
||||||
|
$attribute = DB::transaction(function () use ($request, $tenant): Attribute {
|
||||||
|
$validated = $request->validated();
|
||||||
|
$options = $validated['options'] ?? [];
|
||||||
|
unset($validated['options']);
|
||||||
|
|
||||||
|
$type = FieldType::from((string) $validated['type']);
|
||||||
|
if (! $type->supportsOptions()) {
|
||||||
|
$validated['metadata_schema'] = null;
|
||||||
|
$options = [];
|
||||||
|
}
|
||||||
|
|
||||||
|
/** @var Attribute $attribute */
|
||||||
|
$attribute = Attribute::query()->create([
|
||||||
|
...$validated,
|
||||||
|
'tenant_codigo' => $tenant->codigo,
|
||||||
|
]);
|
||||||
|
$attribute->options()->createMany($options);
|
||||||
|
|
||||||
|
return $attribute->load('options');
|
||||||
|
});
|
||||||
|
|
||||||
|
return AttributeResource::make($attribute)->response()->setStatusCode(201);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function show(Tenant $tenant, Attribute $attribute): AttributeResource
|
||||||
|
{
|
||||||
|
$attribute = $this->resolveScopedAttribute($tenant, $attribute);
|
||||||
|
|
||||||
|
return AttributeResource::make($attribute->load('options'));
|
||||||
|
}
|
||||||
|
|
||||||
|
public function update(UpdateAttributeRequest $request, Tenant $tenant, Attribute $attribute): AttributeResource
|
||||||
|
{
|
||||||
|
$attribute = $this->resolveScopedAttribute($tenant, $attribute);
|
||||||
|
|
||||||
|
$attribute = DB::transaction(function () use ($request, $attribute): Attribute {
|
||||||
|
$validated = $request->validated();
|
||||||
|
$options = $validated['options'] ?? [];
|
||||||
|
unset($validated['options']);
|
||||||
|
|
||||||
|
$type = FieldType::from((string) $validated['type']);
|
||||||
|
if (! $type->supportsOptions()) {
|
||||||
|
$validated['metadata_schema'] = null;
|
||||||
|
$options = [];
|
||||||
|
}
|
||||||
|
|
||||||
|
$attribute->update($validated);
|
||||||
|
$attribute->options()->delete();
|
||||||
|
$attribute->options()->createMany($options);
|
||||||
|
|
||||||
|
return $attribute->load('options');
|
||||||
|
});
|
||||||
|
|
||||||
|
return AttributeResource::make($attribute);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function destroy(Tenant $tenant, Attribute $attribute): Response
|
||||||
|
{
|
||||||
|
$attribute = $this->resolveScopedAttribute($tenant, $attribute);
|
||||||
|
$attribute->delete();
|
||||||
|
|
||||||
|
return response()->noContent();
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function resolveScopedAttribute(Tenant $tenant, Attribute $attribute): Attribute
|
||||||
|
{
|
||||||
|
if ($attribute->tenant_codigo !== $tenant->codigo) {
|
||||||
|
throw new NotFoundHttpException('Attribute not found for tenant.');
|
||||||
|
}
|
||||||
|
|
||||||
|
return $attribute;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,103 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace App\Domains\Catalog\Controllers;
|
|
||||||
|
|
||||||
use App\Domains\Catalog\Models\ProductAttribute;
|
|
||||||
use App\Domains\Catalog\Requests\StoreProductAttributeRequest;
|
|
||||||
use App\Domains\Catalog\Requests\UpdateProductAttributeRequest;
|
|
||||||
use App\Domains\Catalog\Resources\ProductAttributeResource;
|
|
||||||
use App\Domains\Shared\Enums\FieldType;
|
|
||||||
use App\Domains\Tenant\Models\Tenant;
|
|
||||||
use App\Http\Controllers\Controller;
|
|
||||||
use Illuminate\Http\JsonResponse;
|
|
||||||
use Illuminate\Http\Response;
|
|
||||||
use Illuminate\Support\Facades\DB;
|
|
||||||
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
|
|
||||||
|
|
||||||
class ProductAttributeController extends Controller
|
|
||||||
{
|
|
||||||
public function index(Tenant $tenant): JsonResponse
|
|
||||||
{
|
|
||||||
$query = ProductAttribute::query()
|
|
||||||
->where('tenant_codigo', $tenant->codigo)
|
|
||||||
->with('options')
|
|
||||||
->latest();
|
|
||||||
|
|
||||||
return ProductAttributeResource::collection($query->paginateFromRequest())->response();
|
|
||||||
}
|
|
||||||
|
|
||||||
public function store(StoreProductAttributeRequest $request, Tenant $tenant): JsonResponse
|
|
||||||
{
|
|
||||||
$attribute = DB::transaction(function () use ($request, $tenant): ProductAttribute {
|
|
||||||
$validated = $request->validated();
|
|
||||||
$options = $validated['options'] ?? [];
|
|
||||||
unset($validated['options']);
|
|
||||||
|
|
||||||
$type = FieldType::from((string) $validated['type']);
|
|
||||||
if (! $type->supportsOptions()) {
|
|
||||||
$validated['metadata_schema'] = null;
|
|
||||||
$options = [];
|
|
||||||
}
|
|
||||||
|
|
||||||
/** @var ProductAttribute $attribute */
|
|
||||||
$attribute = ProductAttribute::query()->create([
|
|
||||||
...$validated,
|
|
||||||
'tenant_codigo' => $tenant->codigo,
|
|
||||||
]);
|
|
||||||
$attribute->options()->createMany($options);
|
|
||||||
|
|
||||||
return $attribute->load('options');
|
|
||||||
});
|
|
||||||
|
|
||||||
return ProductAttributeResource::make($attribute)->response()->setStatusCode(201);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function show(Tenant $tenant, ProductAttribute $productAttribute): ProductAttributeResource
|
|
||||||
{
|
|
||||||
$productAttribute = $this->resolveScopedAttribute($tenant, $productAttribute);
|
|
||||||
|
|
||||||
return ProductAttributeResource::make($productAttribute->load('options'));
|
|
||||||
}
|
|
||||||
|
|
||||||
public function update(UpdateProductAttributeRequest $request, Tenant $tenant, ProductAttribute $productAttribute): ProductAttributeResource
|
|
||||||
{
|
|
||||||
$productAttribute = $this->resolveScopedAttribute($tenant, $productAttribute);
|
|
||||||
|
|
||||||
$productAttribute = DB::transaction(function () use ($request, $productAttribute): ProductAttribute {
|
|
||||||
$validated = $request->validated();
|
|
||||||
$options = $validated['options'] ?? [];
|
|
||||||
unset($validated['options']);
|
|
||||||
|
|
||||||
$type = FieldType::from((string) $validated['type']);
|
|
||||||
if (! $type->supportsOptions()) {
|
|
||||||
$validated['metadata_schema'] = null;
|
|
||||||
$options = [];
|
|
||||||
}
|
|
||||||
|
|
||||||
$productAttribute->update($validated);
|
|
||||||
$productAttribute->options()->delete();
|
|
||||||
$productAttribute->options()->createMany($options);
|
|
||||||
|
|
||||||
return $productAttribute->load('options');
|
|
||||||
});
|
|
||||||
|
|
||||||
return ProductAttributeResource::make($productAttribute);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function destroy(Tenant $tenant, ProductAttribute $productAttribute): Response
|
|
||||||
{
|
|
||||||
$productAttribute = $this->resolveScopedAttribute($tenant, $productAttribute);
|
|
||||||
$productAttribute->delete();
|
|
||||||
|
|
||||||
return response()->noContent();
|
|
||||||
}
|
|
||||||
|
|
||||||
protected function resolveScopedAttribute(Tenant $tenant, ProductAttribute $attribute): ProductAttribute
|
|
||||||
{
|
|
||||||
if ($attribute->tenant_codigo !== $tenant->codigo) {
|
|
||||||
throw new NotFoundHttpException('Product attribute not found for tenant.');
|
|
||||||
}
|
|
||||||
|
|
||||||
return $attribute;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -6,6 +6,7 @@ use App\Domains\Catalog\Models\Product;
|
|||||||
use App\Domains\Catalog\Requests\StoreProductRequest;
|
use App\Domains\Catalog\Requests\StoreProductRequest;
|
||||||
use App\Domains\Catalog\Requests\UpdateProductRequest;
|
use App\Domains\Catalog\Requests\UpdateProductRequest;
|
||||||
use App\Domains\Catalog\Resources\ProductResource;
|
use App\Domains\Catalog\Resources\ProductResource;
|
||||||
|
use App\Domains\Catalog\Services\ProductService;
|
||||||
use App\Domains\Tenant\Models\Tenant;
|
use App\Domains\Tenant\Models\Tenant;
|
||||||
use App\Http\Controllers\Controller;
|
use App\Http\Controllers\Controller;
|
||||||
use Illuminate\Http\JsonResponse;
|
use Illuminate\Http\JsonResponse;
|
||||||
@@ -21,12 +22,9 @@ class ProductController extends Controller
|
|||||||
)->response();
|
)->response();
|
||||||
}
|
}
|
||||||
|
|
||||||
public function store(StoreProductRequest $request, Tenant $tenant): JsonResponse
|
public function store(StoreProductRequest $request, Tenant $tenant, ProductService $productService): JsonResponse
|
||||||
{
|
{
|
||||||
$product = Product::query()->create([
|
$product = $productService->createProductWithVariants($tenant, $request->validated());
|
||||||
...$request->validated(),
|
|
||||||
'tenant_codigo' => $tenant->codigo,
|
|
||||||
]);
|
|
||||||
|
|
||||||
return ProductResource::make($product)->response()->setStatusCode(201);
|
return ProductResource::make($product)->response()->setStatusCode(201);
|
||||||
}
|
}
|
||||||
@@ -35,13 +33,13 @@ class ProductController extends Controller
|
|||||||
{
|
{
|
||||||
$producto = $this->resolveScopedProduct($tenant, $producto);
|
$producto = $this->resolveScopedProduct($tenant, $producto);
|
||||||
|
|
||||||
return ProductResource::make($producto);
|
return ProductResource::make($producto->load('variants.definitions.attribute'));
|
||||||
}
|
}
|
||||||
|
|
||||||
public function update(UpdateProductRequest $request, Tenant $tenant, Product $producto): ProductResource
|
public function update(UpdateProductRequest $request, Tenant $tenant, Product $producto, ProductService $productService): ProductResource
|
||||||
{
|
{
|
||||||
$producto = $this->resolveScopedProduct($tenant, $producto);
|
$producto = $this->resolveScopedProduct($tenant, $producto);
|
||||||
$producto->update($request->validated());
|
$producto = $productService->updateProductWithVariants($producto, $request->validated());
|
||||||
|
|
||||||
return ProductResource::make($producto);
|
return ProductResource::make($producto);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -18,11 +18,11 @@ use Illuminate\Database\Eloquent\Relations\HasMany;
|
|||||||
'metadata_schema',
|
'metadata_schema',
|
||||||
'type',
|
'type',
|
||||||
])]
|
])]
|
||||||
class ProductAttribute extends Model
|
class Attribute extends Model
|
||||||
{
|
{
|
||||||
use HasFactory;
|
use HasFactory;
|
||||||
|
|
||||||
protected $table = 'productos_attributes';
|
protected $table = 'attribute';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return array<string, string>
|
* @return array<string, string>
|
||||||
@@ -45,11 +45,11 @@ class ProductAttribute extends Model
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return HasMany<ProductAttributeOption, $this>
|
* @return HasMany<AttributeOption, $this>
|
||||||
*/
|
*/
|
||||||
public function options(): HasMany
|
public function options(): HasMany
|
||||||
{
|
{
|
||||||
return $this->hasMany(ProductAttributeOption::class, 'attribute_id')->orderBy('sort_order');
|
return $this->hasMany(AttributeOption::class, 'attribute_id')->orderBy('sort_order');
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -14,7 +14,7 @@ use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|||||||
'sort_order',
|
'sort_order',
|
||||||
'metadata',
|
'metadata',
|
||||||
])]
|
])]
|
||||||
class ProductAttributeOption extends Model
|
class AttributeOption extends Model
|
||||||
{
|
{
|
||||||
use HasFactory;
|
use HasFactory;
|
||||||
|
|
||||||
@@ -32,10 +32,10 @@ class ProductAttributeOption extends Model
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return BelongsTo<ProductAttribute, $this>
|
* @return BelongsTo<Attribute, $this>
|
||||||
*/
|
*/
|
||||||
public function attribute(): BelongsTo
|
public function attribute(): BelongsTo
|
||||||
{
|
{
|
||||||
return $this->belongsTo(ProductAttribute::class, 'attribute_id');
|
return $this->belongsTo(Attribute::class, 'attribute_id');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -7,6 +7,7 @@ use Illuminate\Database\Eloquent\Attributes\Fillable;
|
|||||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||||
use Illuminate\Database\Eloquent\Model;
|
use Illuminate\Database\Eloquent\Model;
|
||||||
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
||||||
|
use Illuminate\Database\Eloquent\Relations\BelongsToMany;
|
||||||
use Illuminate\Database\Eloquent\Relations\HasMany;
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
||||||
|
|
||||||
#[Fillable([
|
#[Fillable([
|
||||||
@@ -46,4 +47,17 @@ class Product extends Model
|
|||||||
{
|
{
|
||||||
return $this->hasMany(ProductVariant::class, 'producto_id');
|
return $this->hasMany(ProductVariant::class, 'producto_id');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return BelongsToMany<Attribute, $this>
|
||||||
|
*/
|
||||||
|
public function attributes(): BelongsToMany
|
||||||
|
{
|
||||||
|
return $this->belongsToMany(
|
||||||
|
Attribute::class,
|
||||||
|
'products_attributes',
|
||||||
|
'product_id',
|
||||||
|
'attribute_id'
|
||||||
|
)->withTimestamps();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ class ProductVariantDefinition extends Model
|
|||||||
{
|
{
|
||||||
use HasFactory;
|
use HasFactory;
|
||||||
|
|
||||||
protected $table = 'productos_variantes_definiciones';
|
protected $table = 'productos_variantes_values';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return BelongsTo<ProductVariant, $this>
|
* @return BelongsTo<ProductVariant, $this>
|
||||||
@@ -27,10 +27,10 @@ class ProductVariantDefinition extends Model
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return BelongsTo<ProductAttribute, $this>
|
* @return BelongsTo<Attribute, $this>
|
||||||
*/
|
*/
|
||||||
public function attribute(): BelongsTo
|
public function attribute(): BelongsTo
|
||||||
{
|
{
|
||||||
return $this->belongsTo(ProductAttribute::class, 'attribute_id');
|
return $this->belongsTo(Attribute::class, 'attribute_id');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ use Illuminate\Foundation\Http\FormRequest;
|
|||||||
use Illuminate\Validation\Rule;
|
use Illuminate\Validation\Rule;
|
||||||
use Illuminate\Validation\Validator;
|
use Illuminate\Validation\Validator;
|
||||||
|
|
||||||
class StoreProductAttributeRequest extends FormRequest
|
class StoreAttributeRequest extends FormRequest
|
||||||
{
|
{
|
||||||
public function authorize(): bool
|
public function authorize(): bool
|
||||||
{
|
{
|
||||||
@@ -24,7 +24,7 @@ class StoreProductAttributeRequest extends FormRequest
|
|||||||
'required',
|
'required',
|
||||||
'string',
|
'string',
|
||||||
'max:255',
|
'max:255',
|
||||||
Rule::unique('productos_attributes', 'codigo')->where(
|
Rule::unique('attribute', 'codigo')->where(
|
||||||
fn ($query) => $query->where('tenant_codigo', $this->route('tenant')?->codigo)
|
fn ($query) => $query->where('tenant_codigo', $this->route('tenant')?->codigo)
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
@@ -23,6 +23,38 @@ class StoreProductRequest extends FormRequest
|
|||||||
'nombre' => ['required', 'string', 'max:255'],
|
'nombre' => ['required', 'string', 'max:255'],
|
||||||
'descripcion' => ['nullable', 'string'],
|
'descripcion' => ['nullable', 'string'],
|
||||||
'precio' => ['required', 'numeric', 'min:0'],
|
'precio' => ['required', 'numeric', 'min:0'],
|
||||||
|
'attribute_ids' => ['sometimes', 'array'],
|
||||||
|
'attribute_ids.*' => [
|
||||||
|
'required',
|
||||||
|
'integer',
|
||||||
|
Rule::exists('attribute', 'id')->where(
|
||||||
|
fn ($query) => $query->where('tenant_codigo', $this->route('tenant')?->codigo)
|
||||||
|
),
|
||||||
|
],
|
||||||
|
'variants' => ['sometimes', 'array'],
|
||||||
|
'variants.*.slug' => ['nullable', 'string', 'max:255'],
|
||||||
|
'variants.*.nombre' => ['nullable', 'string', 'max:255'],
|
||||||
|
'variants.*.stock' => ['sometimes', 'integer', 'min:0'],
|
||||||
|
'variants.*.descripcion' => ['nullable', 'string'],
|
||||||
|
'variants.*.precio' => ['required', 'numeric', 'min:0'],
|
||||||
|
'variants.*.definitions' => [
|
||||||
|
'sometimes',
|
||||||
|
'array',
|
||||||
|
function ($attribute, $value, $fail) {
|
||||||
|
$attributeIds = array_column($value, 'attribute_id');
|
||||||
|
if (count($attributeIds) !== count(array_unique($attributeIds))) {
|
||||||
|
$fail('The definitions must have distinct attribute ids.');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
'variants.*.definitions.*.attribute_id' => [
|
||||||
|
'required',
|
||||||
|
'integer',
|
||||||
|
Rule::exists('attribute', 'id')->where(
|
||||||
|
fn ($query) => $query->where('tenant_codigo', $this->route('tenant')?->codigo)
|
||||||
|
),
|
||||||
|
],
|
||||||
|
'variants.*.definitions.*.value' => ['nullable', 'string'],
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -42,7 +42,7 @@ class StoreProductVariantRequest extends FormRequest
|
|||||||
'required',
|
'required',
|
||||||
'integer',
|
'integer',
|
||||||
'distinct',
|
'distinct',
|
||||||
Rule::exists('productos_attributes', 'id')->where(
|
Rule::exists('attribute', 'id')->where(
|
||||||
fn ($query) => $query->where('tenant_codigo', $this->route('tenant')?->codigo)
|
fn ($query) => $query->where('tenant_codigo', $this->route('tenant')?->codigo)
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -2,13 +2,13 @@
|
|||||||
|
|
||||||
namespace App\Domains\Catalog\Requests;
|
namespace App\Domains\Catalog\Requests;
|
||||||
|
|
||||||
use App\Domains\Catalog\Models\ProductAttribute;
|
use App\Domains\Catalog\Models\Attribute;
|
||||||
use App\Domains\Shared\Enums\FieldType;
|
use App\Domains\Shared\Enums\FieldType;
|
||||||
use Illuminate\Foundation\Http\FormRequest;
|
use Illuminate\Foundation\Http\FormRequest;
|
||||||
use Illuminate\Validation\Rule;
|
use Illuminate\Validation\Rule;
|
||||||
use Illuminate\Validation\Validator;
|
use Illuminate\Validation\Validator;
|
||||||
|
|
||||||
class UpdateProductAttributeRequest extends FormRequest
|
class UpdateAttributeRequest extends FormRequest
|
||||||
{
|
{
|
||||||
public function authorize(): bool
|
public function authorize(): bool
|
||||||
{
|
{
|
||||||
@@ -20,15 +20,15 @@ class UpdateProductAttributeRequest extends FormRequest
|
|||||||
*/
|
*/
|
||||||
public function rules(): array
|
public function rules(): array
|
||||||
{
|
{
|
||||||
/** @var ProductAttribute|null $attribute */
|
/** @var Attribute|null $attribute */
|
||||||
$attribute = $this->route('productAttribute');
|
$attribute = $this->route('attribute');
|
||||||
|
|
||||||
return [
|
return [
|
||||||
'codigo' => [
|
'codigo' => [
|
||||||
'required',
|
'required',
|
||||||
'string',
|
'string',
|
||||||
'max:255',
|
'max:255',
|
||||||
Rule::unique('productos_attributes', 'codigo')
|
Rule::unique('attribute', 'codigo')
|
||||||
->ignore($attribute?->id)
|
->ignore($attribute?->id)
|
||||||
->where(fn ($query) => $query->where('tenant_codigo', $attribute?->tenant_codigo)),
|
->where(fn ($query) => $query->where('tenant_codigo', $attribute?->tenant_codigo)),
|
||||||
],
|
],
|
||||||
@@ -32,6 +32,45 @@ class UpdateProductRequest extends FormRequest
|
|||||||
'nombre' => ['required', 'string', 'max:255'],
|
'nombre' => ['required', 'string', 'max:255'],
|
||||||
'descripcion' => ['nullable', 'string'],
|
'descripcion' => ['nullable', 'string'],
|
||||||
'precio' => ['required', 'numeric', 'min:0'],
|
'precio' => ['required', 'numeric', 'min:0'],
|
||||||
|
'attribute_ids' => ['sometimes', 'array'],
|
||||||
|
'attribute_ids.*' => [
|
||||||
|
'required',
|
||||||
|
'integer',
|
||||||
|
Rule::exists('attribute', 'id')->where(
|
||||||
|
fn ($query) => $query->where('tenant_codigo', $this->route('tenant')?->codigo)
|
||||||
|
),
|
||||||
|
],
|
||||||
|
'variants' => ['sometimes', 'array'],
|
||||||
|
'variants.*.id' => [
|
||||||
|
'sometimes',
|
||||||
|
'integer',
|
||||||
|
Rule::exists('productos_variantes', 'id')->where(
|
||||||
|
fn ($query) => $query->where('producto_id', $product?->id)
|
||||||
|
),
|
||||||
|
],
|
||||||
|
'variants.*.slug' => ['nullable', 'string', 'max:255'],
|
||||||
|
'variants.*.nombre' => ['nullable', 'string', 'max:255'],
|
||||||
|
'variants.*.stock' => ['sometimes', 'integer', 'min:0'],
|
||||||
|
'variants.*.descripcion' => ['nullable', 'string'],
|
||||||
|
'variants.*.precio' => ['required', 'numeric', 'min:0'],
|
||||||
|
'variants.*.definitions' => [
|
||||||
|
'sometimes',
|
||||||
|
'array',
|
||||||
|
function ($attribute, $value, $fail) {
|
||||||
|
$attributeIds = array_column($value, 'attribute_id');
|
||||||
|
if (count($attributeIds) !== count(array_unique($attributeIds))) {
|
||||||
|
$fail('The definitions must have distinct attribute ids.');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
'variants.*.definitions.*.attribute_id' => [
|
||||||
|
'required',
|
||||||
|
'integer',
|
||||||
|
Rule::exists('attribute', 'id')->where(
|
||||||
|
fn ($query) => $query->where('tenant_codigo', $this->route('tenant')?->codigo)
|
||||||
|
),
|
||||||
|
],
|
||||||
|
'variants.*.definitions.*.value' => ['nullable', 'string'],
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -46,7 +46,7 @@ class UpdateProductVariantRequest extends FormRequest
|
|||||||
'required',
|
'required',
|
||||||
'integer',
|
'integer',
|
||||||
'distinct',
|
'distinct',
|
||||||
Rule::exists('productos_attributes', 'id')->where(
|
Rule::exists('attribute', 'id')->where(
|
||||||
fn ($query) => $query->where('tenant_codigo', $this->route('tenant')?->codigo)
|
fn ($query) => $query->where('tenant_codigo', $this->route('tenant')?->codigo)
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -6,9 +6,9 @@ use Illuminate\Http\Request;
|
|||||||
use Illuminate\Http\Resources\Json\JsonResource;
|
use Illuminate\Http\Resources\Json\JsonResource;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @mixin \App\Domains\Catalog\Models\ProductAttributeOption
|
* @mixin \App\Domains\Catalog\Models\AttributeOption
|
||||||
*/
|
*/
|
||||||
class ProductAttributeOptionResource extends JsonResource
|
class AttributeOptionResource extends JsonResource
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* @return array<string, mixed>
|
* @return array<string, mixed>
|
||||||
@@ -6,9 +6,9 @@ use Illuminate\Http\Request;
|
|||||||
use Illuminate\Http\Resources\Json\JsonResource;
|
use Illuminate\Http\Resources\Json\JsonResource;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @mixin \App\Domains\Catalog\Models\ProductAttribute
|
* @mixin \App\Domains\Catalog\Models\Attribute
|
||||||
*/
|
*/
|
||||||
class ProductAttributeResource extends JsonResource
|
class AttributeResource extends JsonResource
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* @return array<string, mixed>
|
* @return array<string, mixed>
|
||||||
@@ -23,7 +23,7 @@ class ProductAttributeResource extends JsonResource
|
|||||||
'is_required' => $this->is_required,
|
'is_required' => $this->is_required,
|
||||||
'metadata_schema' => $this->metadata_schema,
|
'metadata_schema' => $this->metadata_schema,
|
||||||
'type' => $this->type?->value ?? $this->type,
|
'type' => $this->type?->value ?? $this->type,
|
||||||
'options' => ProductAttributeOptionResource::collection($this->whenLoaded('options')),
|
'options' => AttributeOptionResource::collection($this->whenLoaded('options')),
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -23,6 +23,7 @@ class ProductResource extends JsonResource
|
|||||||
'nombre' => $this->nombre,
|
'nombre' => $this->nombre,
|
||||||
'descripcion' => $this->descripcion,
|
'descripcion' => $this->descripcion,
|
||||||
'precio' => $this->precio,
|
'precio' => $this->precio,
|
||||||
|
'variants' => ProductVariantResource::collection($this->whenLoaded('variants')),
|
||||||
'created_at' => $this->created_at,
|
'created_at' => $this->created_at,
|
||||||
'updated_at' => $this->updated_at,
|
'updated_at' => $this->updated_at,
|
||||||
];
|
];
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ class ProductVariantDefinitionResource extends JsonResource
|
|||||||
'producto_variante_id' => $this->producto_variante_id,
|
'producto_variante_id' => $this->producto_variante_id,
|
||||||
'attribute_id' => $this->attribute_id,
|
'attribute_id' => $this->attribute_id,
|
||||||
'value' => $this->value,
|
'value' => $this->value,
|
||||||
'attribute' => ProductAttributeResource::make($this->whenLoaded('attribute')),
|
'attribute' => AttributeResource::make($this->whenLoaded('attribute')),
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,7 +2,114 @@
|
|||||||
|
|
||||||
namespace App\Domains\Catalog\Services;
|
namespace App\Domains\Catalog\Services;
|
||||||
|
|
||||||
|
use App\Domains\Catalog\Models\Product;
|
||||||
|
use App\Domains\Tenant\Models\Tenant;
|
||||||
|
use Illuminate\Support\Facades\DB;
|
||||||
|
|
||||||
class ProductService
|
class ProductService
|
||||||
{
|
{
|
||||||
// Reserved for product domain business logic.
|
/**
|
||||||
|
* Create a product along with its variants and variant definitions.
|
||||||
|
*
|
||||||
|
* @param array<string, mixed> $data
|
||||||
|
*/
|
||||||
|
public function createProductWithVariants(Tenant $tenant, array $data): Product
|
||||||
|
{
|
||||||
|
return DB::transaction(function () use ($tenant, $data) {
|
||||||
|
$variantsData = $data['variants'] ?? [];
|
||||||
|
unset($data['variants']);
|
||||||
|
|
||||||
|
$attributeIds = $data['attribute_ids'] ?? [];
|
||||||
|
unset($data['attribute_ids']);
|
||||||
|
|
||||||
|
/** @var Product $product */
|
||||||
|
$product = Product::query()->create([
|
||||||
|
...$data,
|
||||||
|
'tenant_codigo' => $tenant->codigo,
|
||||||
|
]);
|
||||||
|
|
||||||
|
foreach ($variantsData as $variantData) {
|
||||||
|
$definitions = $variantData['definitions'] ?? [];
|
||||||
|
unset($variantData['definitions']);
|
||||||
|
|
||||||
|
$variant = $product->variants()->create($variantData);
|
||||||
|
$variant->definitions()->createMany($definitions);
|
||||||
|
}
|
||||||
|
|
||||||
|
$attributeIdsFromVariants = collect($variantsData)->flatMap(function ($variant) {
|
||||||
|
return collect($variant['definitions'] ?? [])->pluck('attribute_id');
|
||||||
|
})->unique()->toArray();
|
||||||
|
|
||||||
|
$allAttributeIds = array_unique(array_merge($attributeIds, $attributeIdsFromVariants));
|
||||||
|
$product->attributes()->sync($allAttributeIds);
|
||||||
|
|
||||||
|
return $product->load(['variants.definitions.attribute', 'attributes']);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Update a product along with its variants and variant definitions.
|
||||||
|
*
|
||||||
|
* @param array<string, mixed> $data
|
||||||
|
*/
|
||||||
|
public function updateProductWithVariants(Product $product, array $data): Product
|
||||||
|
{
|
||||||
|
return DB::transaction(function () use ($product, $data) {
|
||||||
|
$hasVariants = array_key_exists('variants', $data);
|
||||||
|
$variantsData = $data['variants'] ?? [];
|
||||||
|
unset($data['variants']);
|
||||||
|
|
||||||
|
$hasAttributeIds = array_key_exists('attribute_ids', $data);
|
||||||
|
$attributeIds = $data['attribute_ids'] ?? [];
|
||||||
|
unset($data['attribute_ids']);
|
||||||
|
|
||||||
|
$product->update($data);
|
||||||
|
|
||||||
|
if ($hasVariants) {
|
||||||
|
$existingVariantIds = $product->variants()->pluck('id')->toArray();
|
||||||
|
$incomingVariantIds = [];
|
||||||
|
|
||||||
|
foreach ($variantsData as $variantData) {
|
||||||
|
$definitions = $variantData['definitions'] ?? [];
|
||||||
|
unset($variantData['definitions']);
|
||||||
|
|
||||||
|
$variantId = $variantData['id'] ?? null;
|
||||||
|
|
||||||
|
if ($variantId && in_array($variantId, $existingVariantIds)) {
|
||||||
|
$variant = $product->variants()->findOrFail($variantId);
|
||||||
|
$variant->update($variantData);
|
||||||
|
$incomingVariantIds[] = (int) $variantId;
|
||||||
|
} else {
|
||||||
|
$variant = $product->variants()->create($variantData);
|
||||||
|
$incomingVariantIds[] = $variant->id;
|
||||||
|
}
|
||||||
|
|
||||||
|
$variant->definitions()->delete();
|
||||||
|
$variant->definitions()->createMany($definitions);
|
||||||
|
}
|
||||||
|
|
||||||
|
$variantsToDelete = array_diff($existingVariantIds, $incomingVariantIds);
|
||||||
|
if (!empty($variantsToDelete)) {
|
||||||
|
$product->variants()->whereIn('id', $variantsToDelete)->delete();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($hasAttributeIds || $hasVariants) {
|
||||||
|
$explicitIds = $hasAttributeIds ? $attributeIds : $product->attributes()->pluck('attribute_id')->toArray();
|
||||||
|
|
||||||
|
$variantIds = $product->variants()->pluck('id')->toArray();
|
||||||
|
$attributeIdsFromVariants = DB::table('productos_variantes_values')
|
||||||
|
->whereIn('producto_variante_id', $variantIds)
|
||||||
|
->pluck('attribute_id')
|
||||||
|
->unique()
|
||||||
|
->toArray();
|
||||||
|
|
||||||
|
$allAttributeIds = array_unique(array_merge($explicitIds, $attributeIdsFromVariants));
|
||||||
|
$product->attributes()->sync($allAttributeIds);
|
||||||
|
}
|
||||||
|
|
||||||
|
return $product->load(['variants.definitions.attribute', 'attributes']);
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
use App\Domains\Catalog\Controllers\BrandController;
|
use App\Domains\Catalog\Controllers\BrandController;
|
||||||
use App\Domains\Catalog\Controllers\CategoryController;
|
use App\Domains\Catalog\Controllers\CategoryController;
|
||||||
use App\Domains\Catalog\Controllers\ProductController;
|
use App\Domains\Catalog\Controllers\ProductController;
|
||||||
use App\Domains\Catalog\Controllers\ProductAttributeController;
|
use App\Domains\Catalog\Controllers\AttributeController;
|
||||||
use App\Domains\Catalog\Controllers\ProductVariantController;
|
use App\Domains\Catalog\Controllers\ProductVariantController;
|
||||||
use Illuminate\Support\Facades\Route;
|
use Illuminate\Support\Facades\Route;
|
||||||
|
|
||||||
@@ -11,8 +11,7 @@ Route::prefix('tenants/{tenant:codigo}')->group(function (): void {
|
|||||||
Route::apiResource('marcas', BrandController::class)->parameters(['marcas' => 'marca']);
|
Route::apiResource('marcas', BrandController::class)->parameters(['marcas' => 'marca']);
|
||||||
Route::apiResource('categorias', CategoryController::class)->parameters(['categorias' => 'categoria']);
|
Route::apiResource('categorias', CategoryController::class)->parameters(['categorias' => 'categoria']);
|
||||||
Route::apiResource('productos', ProductController::class);
|
Route::apiResource('productos', ProductController::class);
|
||||||
Route::apiResource('product-attributes', ProductAttributeController::class)
|
Route::apiResource('attributes', AttributeController::class);
|
||||||
->parameters(['product-attributes' => 'productAttribute']);
|
|
||||||
Route::apiResource('product-variants', ProductVariantController::class)
|
Route::apiResource('product-variants', ProductVariantController::class)
|
||||||
->parameters(['product-variants' => 'productVariant']);
|
->parameters(['product-variants' => 'productVariant']);
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -0,0 +1,50 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
use Illuminate\Database\Migrations\Migration;
|
||||||
|
use Illuminate\Database\Schema\Blueprint;
|
||||||
|
use Illuminate\Support\Facades\Schema;
|
||||||
|
|
||||||
|
return new class extends Migration
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Run the migrations.
|
||||||
|
*/
|
||||||
|
public function up(): void
|
||||||
|
{
|
||||||
|
// 1. Rename table productos_attributes to attribute
|
||||||
|
Schema::rename('productos_attributes', 'attribute');
|
||||||
|
|
||||||
|
// 2. Rename table productos_variantes_definiciones to productos_variantes_values
|
||||||
|
Schema::rename('productos_variantes_definiciones', 'productos_variantes_values');
|
||||||
|
|
||||||
|
// 3. Create products_attributes intermediate table
|
||||||
|
Schema::create('products_attributes', function (Blueprint $table) {
|
||||||
|
$table->id();
|
||||||
|
$table->unsignedBigInteger('product_id');
|
||||||
|
$table->unsignedBigInteger('attribute_id');
|
||||||
|
$table->timestamps();
|
||||||
|
|
||||||
|
$table->foreign('product_id')
|
||||||
|
->references('id')
|
||||||
|
->on('productos')
|
||||||
|
->cascadeOnDelete();
|
||||||
|
|
||||||
|
$table->foreign('attribute_id')
|
||||||
|
->references('id')
|
||||||
|
->on('attribute')
|
||||||
|
->cascadeOnDelete();
|
||||||
|
|
||||||
|
$table->unique(['product_id', 'attribute_id']);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Reverse the migrations.
|
||||||
|
*/
|
||||||
|
public function down(): void
|
||||||
|
{
|
||||||
|
Schema::dropIfExists('products_attributes');
|
||||||
|
Schema::rename('productos_variantes_values', 'productos_variantes_definiciones');
|
||||||
|
Schema::rename('attribute', 'productos_attributes');
|
||||||
|
}
|
||||||
|
};
|
||||||
@@ -3,7 +3,7 @@
|
|||||||
namespace Tests\Feature\Cart;
|
namespace Tests\Feature\Cart;
|
||||||
|
|
||||||
use App\Domains\Catalog\Models\Product;
|
use App\Domains\Catalog\Models\Product;
|
||||||
use App\Domains\Catalog\Models\ProductAttribute;
|
use App\Domains\Catalog\Models\Attribute;
|
||||||
use App\Domains\Catalog\Models\ProductVariant;
|
use App\Domains\Catalog\Models\ProductVariant;
|
||||||
use App\Domains\Catalog\Models\ProductVariantDefinition;
|
use App\Domains\Catalog\Models\ProductVariantDefinition;
|
||||||
use App\Domains\Tenant\Models\Tenant;
|
use App\Domains\Tenant\Models\Tenant;
|
||||||
@@ -33,7 +33,7 @@ class CartControllerTest extends TestCase
|
|||||||
public function test_it_creates_a_guest_cart_and_returns_the_cart_snapshot(): void
|
public function test_it_creates_a_guest_cart_and_returns_the_cart_snapshot(): void
|
||||||
{
|
{
|
||||||
$variant = $this->createVariantForTenant('acme', 10, '49.90');
|
$variant = $this->createVariantForTenant('acme', 10, '49.90');
|
||||||
$attribute = ProductAttribute::query()->create([
|
$attribute = Attribute::query()->create([
|
||||||
'tenant_codigo' => 'acme',
|
'tenant_codigo' => 'acme',
|
||||||
'codigo' => 'color',
|
'codigo' => 'color',
|
||||||
'nombre' => 'Color',
|
'nombre' => 'Color',
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ use App\Domains\Tenant\Models\Tenant;
|
|||||||
use Illuminate\Foundation\Testing\RefreshDatabase;
|
use Illuminate\Foundation\Testing\RefreshDatabase;
|
||||||
use Tests\TestCase;
|
use Tests\TestCase;
|
||||||
|
|
||||||
class ProductAttributeControllerTest extends TestCase
|
class AttributeControllerTest extends TestCase
|
||||||
{
|
{
|
||||||
use RefreshDatabase;
|
use RefreshDatabase;
|
||||||
|
|
||||||
@@ -14,7 +14,7 @@ class ProductAttributeControllerTest extends TestCase
|
|||||||
{
|
{
|
||||||
$this->createTenant('acme', 'Acme', 'acme.com');
|
$this->createTenant('acme', 'Acme', 'acme.com');
|
||||||
|
|
||||||
$response = $this->postJson('/api/tenants/acme/product-attributes', [
|
$response = $this->postJson('/api/tenants/acme/attributes', [
|
||||||
'codigo' => 'color',
|
'codigo' => 'color',
|
||||||
'nombre' => 'Color',
|
'nombre' => 'Color',
|
||||||
'is_required' => true,
|
'is_required' => true,
|
||||||
@@ -47,7 +47,7 @@ class ProductAttributeControllerTest extends TestCase
|
|||||||
->assertJsonPath('data.options.0.label', 'Red')
|
->assertJsonPath('data.options.0.label', 'Red')
|
||||||
->assertJsonPath('data.options.1.metadata.hex', '#0000ff');
|
->assertJsonPath('data.options.1.metadata.hex', '#0000ff');
|
||||||
|
|
||||||
$this->assertDatabaseHas('productos_attributes', [
|
$this->assertDatabaseHas('attribute', [
|
||||||
'tenant_codigo' => 'acme',
|
'tenant_codigo' => 'acme',
|
||||||
'codigo' => 'color',
|
'codigo' => 'color',
|
||||||
'type' => 'select',
|
'type' => 'select',
|
||||||
@@ -64,7 +64,7 @@ class ProductAttributeControllerTest extends TestCase
|
|||||||
{
|
{
|
||||||
$this->createTenant('acme', 'Acme', 'acme.com');
|
$this->createTenant('acme', 'Acme', 'acme.com');
|
||||||
|
|
||||||
$response = $this->postJson('/api/tenants/acme/product-attributes', [
|
$response = $this->postJson('/api/tenants/acme/attributes', [
|
||||||
'codigo' => 'material',
|
'codigo' => 'material',
|
||||||
'nombre' => 'Material',
|
'nombre' => 'Material',
|
||||||
'type' => 'string',
|
'type' => 'string',
|
||||||
388
tests/Feature/Catalog/ProductControllerTest.php
Normal file
388
tests/Feature/Catalog/ProductControllerTest.php
Normal file
@@ -0,0 +1,388 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Tests\Feature\Catalog;
|
||||||
|
|
||||||
|
use App\Domains\Catalog\Models\Attribute;
|
||||||
|
use App\Domains\Catalog\Models\Product;
|
||||||
|
use App\Domains\Catalog\Models\ProductVariant;
|
||||||
|
use App\Domains\Tenant\Models\Tenant;
|
||||||
|
use Illuminate\Foundation\Testing\RefreshDatabase;
|
||||||
|
use Illuminate\Support\Str;
|
||||||
|
use Tests\TestCase;
|
||||||
|
|
||||||
|
class ProductControllerTest extends TestCase
|
||||||
|
{
|
||||||
|
use RefreshDatabase;
|
||||||
|
|
||||||
|
private Tenant $tenant;
|
||||||
|
private Attribute $sizeAttr;
|
||||||
|
private Attribute $colorAttr;
|
||||||
|
private Attribute $extraAttr;
|
||||||
|
|
||||||
|
protected function setUp(): void
|
||||||
|
{
|
||||||
|
parent::setUp();
|
||||||
|
|
||||||
|
$this->tenant = $this->createTenant('acme', 'Acme Inc.', 'acme.com');
|
||||||
|
|
||||||
|
// Create attributes for variants
|
||||||
|
$this->sizeAttr = Attribute::create([
|
||||||
|
'tenant_codigo' => $this->tenant->codigo,
|
||||||
|
'codigo' => 'talle',
|
||||||
|
'nombre' => 'Talle',
|
||||||
|
'is_required' => true,
|
||||||
|
'type' => 'select',
|
||||||
|
]);
|
||||||
|
|
||||||
|
$this->colorAttr = Attribute::create([
|
||||||
|
'tenant_codigo' => $this->tenant->codigo,
|
||||||
|
'codigo' => 'color',
|
||||||
|
'nombre' => 'Color',
|
||||||
|
'is_required' => true,
|
||||||
|
'type' => 'select',
|
||||||
|
]);
|
||||||
|
|
||||||
|
$this->extraAttr = Attribute::create([
|
||||||
|
'tenant_codigo' => $this->tenant->codigo,
|
||||||
|
'codigo' => 'extra',
|
||||||
|
'nombre' => 'Extra Attribute',
|
||||||
|
'is_required' => false,
|
||||||
|
'type' => 'string',
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function test_it_creates_product_with_variants_and_definitions_and_syncs_attributes(): void
|
||||||
|
{
|
||||||
|
$payload = [
|
||||||
|
'categoria_id' => 1,
|
||||||
|
'slug' => 'remera-sport',
|
||||||
|
'nombre' => 'Remera Sport',
|
||||||
|
'descripcion' => 'Remera para hacer deportes',
|
||||||
|
'precio' => 15000.00,
|
||||||
|
'attribute_ids' => [
|
||||||
|
$this->extraAttr->id,
|
||||||
|
],
|
||||||
|
'variants' => [
|
||||||
|
[
|
||||||
|
'slug' => 'remera-sport-s-azul',
|
||||||
|
'nombre' => 'Remera Sport S Azul',
|
||||||
|
'stock' => 10,
|
||||||
|
'precio' => 15000.00,
|
||||||
|
'definitions' => [
|
||||||
|
[
|
||||||
|
'attribute_id' => $this->sizeAttr->id,
|
||||||
|
'value' => 'S',
|
||||||
|
],
|
||||||
|
[
|
||||||
|
'attribute_id' => $this->colorAttr->id,
|
||||||
|
'value' => 'Azul',
|
||||||
|
],
|
||||||
|
],
|
||||||
|
],
|
||||||
|
[
|
||||||
|
'slug' => 'remera-sport-m-azul',
|
||||||
|
'nombre' => 'Remera Sport M Azul',
|
||||||
|
'stock' => 5,
|
||||||
|
'precio' => 16000.00,
|
||||||
|
'definitions' => [
|
||||||
|
[
|
||||||
|
'attribute_id' => $this->sizeAttr->id,
|
||||||
|
'value' => 'M',
|
||||||
|
],
|
||||||
|
[
|
||||||
|
'attribute_id' => $this->colorAttr->id,
|
||||||
|
'value' => 'Azul',
|
||||||
|
],
|
||||||
|
],
|
||||||
|
],
|
||||||
|
],
|
||||||
|
];
|
||||||
|
|
||||||
|
$response = $this->postJson("/api/tenants/{$this->tenant->codigo}/productos", $payload);
|
||||||
|
|
||||||
|
$response->assertCreated();
|
||||||
|
|
||||||
|
// Assert JSON structure
|
||||||
|
$response->assertJsonPath('data.nombre', 'Remera Sport');
|
||||||
|
$response->assertJsonCount(2, 'data.variants');
|
||||||
|
$response->assertJsonPath('data.variants.0.slug', 'remera-sport-s-azul');
|
||||||
|
$response->assertJsonPath('data.variants.0.definitions.0.value', 'S');
|
||||||
|
$response->assertJsonPath('data.variants.1.precio', '16000.00');
|
||||||
|
|
||||||
|
// Assert Database
|
||||||
|
$this->assertDatabaseHas('productos', [
|
||||||
|
'tenant_codigo' => $this->tenant->codigo,
|
||||||
|
'slug' => 'remera-sport',
|
||||||
|
]);
|
||||||
|
|
||||||
|
$product = Product::where('slug', 'remera-sport')->firstOrFail();
|
||||||
|
|
||||||
|
// Assert that products_attributes has both explicit extraAttr and those from variants (sizeAttr, colorAttr)
|
||||||
|
$this->assertDatabaseHas('products_attributes', [
|
||||||
|
'product_id' => $product->id,
|
||||||
|
'attribute_id' => $this->extraAttr->id,
|
||||||
|
]);
|
||||||
|
$this->assertDatabaseHas('products_attributes', [
|
||||||
|
'product_id' => $product->id,
|
||||||
|
'attribute_id' => $this->sizeAttr->id,
|
||||||
|
]);
|
||||||
|
$this->assertDatabaseHas('products_attributes', [
|
||||||
|
'product_id' => $product->id,
|
||||||
|
'attribute_id' => $this->colorAttr->id,
|
||||||
|
]);
|
||||||
|
|
||||||
|
$this->assertCount(2, $product->variants);
|
||||||
|
$this->assertDatabaseHas('productos_variantes', [
|
||||||
|
'producto_id' => $product->id,
|
||||||
|
'slug' => 'remera-sport-s-azul',
|
||||||
|
'stock' => 10,
|
||||||
|
'precio' => 15000.00,
|
||||||
|
]);
|
||||||
|
|
||||||
|
$variantS = ProductVariant::where('slug', 'remera-sport-s-azul')->firstOrFail();
|
||||||
|
$this->assertDatabaseHas('productos_variantes_values', [
|
||||||
|
'producto_variante_id' => $variantS->id,
|
||||||
|
'attribute_id' => $this->sizeAttr->id,
|
||||||
|
'value' => 'S',
|
||||||
|
]);
|
||||||
|
$this->assertDatabaseHas('productos_variantes_values', [
|
||||||
|
'producto_variante_id' => $variantS->id,
|
||||||
|
'attribute_id' => $this->colorAttr->id,
|
||||||
|
'value' => 'Azul',
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function test_it_updates_product_and_syncs_variants_and_attributes(): void
|
||||||
|
{
|
||||||
|
// 1. Create a product with 2 variants initially
|
||||||
|
$product = Product::create([
|
||||||
|
'tenant_codigo' => $this->tenant->codigo,
|
||||||
|
'categoria_id' => 1,
|
||||||
|
'slug' => 'pantalon-cargo',
|
||||||
|
'nombre' => 'Pantalon Cargo',
|
||||||
|
'precio' => 20000.00,
|
||||||
|
]);
|
||||||
|
|
||||||
|
$product->attributes()->sync([$this->extraAttr->id]);
|
||||||
|
|
||||||
|
$v1 = $product->variants()->create([
|
||||||
|
'slug' => 'pantalon-cargo-38',
|
||||||
|
'nombre' => 'Pantalon Cargo 38',
|
||||||
|
'stock' => 4,
|
||||||
|
'precio' => 20000.00,
|
||||||
|
]);
|
||||||
|
$v1->definitions()->create([
|
||||||
|
'attribute_id' => $this->sizeAttr->id,
|
||||||
|
'value' => '38',
|
||||||
|
]);
|
||||||
|
|
||||||
|
$v2 = $product->variants()->create([
|
||||||
|
'slug' => 'pantalon-cargo-40',
|
||||||
|
'nombre' => 'Pantalon Cargo 40',
|
||||||
|
'stock' => 8,
|
||||||
|
'precio' => 20000.00,
|
||||||
|
]);
|
||||||
|
$v2->definitions()->create([
|
||||||
|
'attribute_id' => $this->sizeAttr->id,
|
||||||
|
'value' => '40',
|
||||||
|
]);
|
||||||
|
|
||||||
|
// 2. Perform update payload
|
||||||
|
// We will:
|
||||||
|
// - Update v1 (change stock/precio, keep id)
|
||||||
|
// - Delete v2 (by omitting it)
|
||||||
|
// - Create a new variant v3
|
||||||
|
// - Update attribute_ids (remove extraAttr, add sizeAttr and colorAttr indirectly through variants)
|
||||||
|
$payload = [
|
||||||
|
'categoria_id' => 1,
|
||||||
|
'slug' => 'pantalon-cargo-new-slug',
|
||||||
|
'nombre' => 'Pantalon Cargo V2',
|
||||||
|
'precio' => 22000.00,
|
||||||
|
'attribute_ids' => [], // explicitly remove extraAttr
|
||||||
|
'variants' => [
|
||||||
|
[
|
||||||
|
'id' => $v1->id,
|
||||||
|
'slug' => 'pantalon-cargo-38-updated',
|
||||||
|
'nombre' => 'Pantalon Cargo 38 Updated',
|
||||||
|
'stock' => 12,
|
||||||
|
'precio' => 22000.00,
|
||||||
|
'definitions' => [
|
||||||
|
[
|
||||||
|
'attribute_id' => $this->sizeAttr->id,
|
||||||
|
'value' => '38-updated',
|
||||||
|
],
|
||||||
|
],
|
||||||
|
],
|
||||||
|
[
|
||||||
|
'slug' => 'pantalon-cargo-42',
|
||||||
|
'nombre' => 'Pantalon Cargo 42',
|
||||||
|
'stock' => 15,
|
||||||
|
'precio' => 22000.00,
|
||||||
|
'definitions' => [
|
||||||
|
[
|
||||||
|
'attribute_id' => $this->sizeAttr->id,
|
||||||
|
'value' => '42',
|
||||||
|
],
|
||||||
|
],
|
||||||
|
],
|
||||||
|
],
|
||||||
|
];
|
||||||
|
|
||||||
|
$response = $this->putJson(
|
||||||
|
"/api/tenants/{$this->tenant->codigo}/productos/{$product->id}",
|
||||||
|
$payload
|
||||||
|
);
|
||||||
|
|
||||||
|
$response->assertOk();
|
||||||
|
|
||||||
|
// Assert updated values
|
||||||
|
$response->assertJsonPath('data.nombre', 'Pantalon Cargo V2');
|
||||||
|
$response->assertJsonCount(2, 'data.variants');
|
||||||
|
|
||||||
|
// Check DB state
|
||||||
|
// extraAttr must be detached
|
||||||
|
$this->assertDatabaseMissing('products_attributes', [
|
||||||
|
'product_id' => $product->id,
|
||||||
|
'attribute_id' => $this->extraAttr->id,
|
||||||
|
]);
|
||||||
|
// sizeAttr must be attached (as it's used in variant v1 and v3 definitions)
|
||||||
|
$this->assertDatabaseHas('products_attributes', [
|
||||||
|
'product_id' => $product->id,
|
||||||
|
'attribute_id' => $this->sizeAttr->id,
|
||||||
|
]);
|
||||||
|
|
||||||
|
// v1 must be updated
|
||||||
|
$this->assertDatabaseHas('productos_variantes', [
|
||||||
|
'id' => $v1->id,
|
||||||
|
'slug' => 'pantalon-cargo-38-updated',
|
||||||
|
'stock' => 12,
|
||||||
|
'precio' => 22000.00,
|
||||||
|
]);
|
||||||
|
$this->assertDatabaseHas('productos_variantes_values', [
|
||||||
|
'producto_variante_id' => $v1->id,
|
||||||
|
'attribute_id' => $this->sizeAttr->id,
|
||||||
|
'value' => '38-updated',
|
||||||
|
]);
|
||||||
|
|
||||||
|
// v2 must be deleted
|
||||||
|
$this->assertDatabaseMissing('productos_variantes', [
|
||||||
|
'id' => $v2->id,
|
||||||
|
]);
|
||||||
|
$this->assertDatabaseMissing('productos_variantes_values', [
|
||||||
|
'producto_variante_id' => $v2->id,
|
||||||
|
]);
|
||||||
|
|
||||||
|
// v3 must be created
|
||||||
|
$this->assertDatabaseHas('productos_variantes', [
|
||||||
|
'producto_id' => $product->id,
|
||||||
|
'slug' => 'pantalon-cargo-42',
|
||||||
|
'stock' => 15,
|
||||||
|
'precio' => 22000.00,
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function test_it_does_not_modify_variants_if_not_present_in_update_payload(): void
|
||||||
|
{
|
||||||
|
$product = Product::create([
|
||||||
|
'tenant_codigo' => $this->tenant->codigo,
|
||||||
|
'categoria_id' => 1,
|
||||||
|
'slug' => 'short-running',
|
||||||
|
'nombre' => 'Short Running',
|
||||||
|
'precio' => 8000.00,
|
||||||
|
]);
|
||||||
|
|
||||||
|
$v1 = $product->variants()->create([
|
||||||
|
'slug' => 'short-running-m',
|
||||||
|
'nombre' => 'Short Running M',
|
||||||
|
'stock' => 5,
|
||||||
|
'precio' => 8000.00,
|
||||||
|
]);
|
||||||
|
|
||||||
|
$payload = [
|
||||||
|
'categoria_id' => 1,
|
||||||
|
'slug' => 'short-running',
|
||||||
|
'nombre' => 'Short Running Updated',
|
||||||
|
'precio' => 9000.00,
|
||||||
|
];
|
||||||
|
|
||||||
|
$response = $this->putJson(
|
||||||
|
"/api/tenants/{$this->tenant->codigo}/productos/{$product->id}",
|
||||||
|
$payload
|
||||||
|
);
|
||||||
|
|
||||||
|
$response->assertOk();
|
||||||
|
$this->assertDatabaseHas('productos', [
|
||||||
|
'id' => $product->id,
|
||||||
|
'nombre' => 'Short Running Updated',
|
||||||
|
]);
|
||||||
|
|
||||||
|
// Variant should still exist untouched
|
||||||
|
$this->assertDatabaseHas('productos_variantes', [
|
||||||
|
'id' => $v1->id,
|
||||||
|
'slug' => 'short-running-m',
|
||||||
|
'stock' => 5,
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function test_it_rejects_variants_with_invalid_attributes(): void
|
||||||
|
{
|
||||||
|
$payload = [
|
||||||
|
'categoria_id' => 1,
|
||||||
|
'slug' => 'remera-sport',
|
||||||
|
'nombre' => 'Remera Sport',
|
||||||
|
'precio' => 15000.00,
|
||||||
|
'variants' => [
|
||||||
|
[
|
||||||
|
'slug' => 'remera-sport-s-azul',
|
||||||
|
'nombre' => 'Remera Sport S Azul',
|
||||||
|
'stock' => 10,
|
||||||
|
'precio' => 15000.00,
|
||||||
|
'definitions' => [
|
||||||
|
[
|
||||||
|
'attribute_id' => 99999, // Non-existent ID
|
||||||
|
'value' => 'S',
|
||||||
|
],
|
||||||
|
],
|
||||||
|
],
|
||||||
|
],
|
||||||
|
];
|
||||||
|
|
||||||
|
$response = $this->postJson("/api/tenants/{$this->tenant->codigo}/productos", $payload);
|
||||||
|
|
||||||
|
$response->assertUnprocessable();
|
||||||
|
$response->assertJsonValidationErrors(['variants.0.definitions.0.attribute_id']);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function createTenant(string $codigo, string $nombre, string $dominio): Tenant
|
||||||
|
{
|
||||||
|
$hdrKey = (string) Str::uuid();
|
||||||
|
$ftrKey = (string) Str::uuid();
|
||||||
|
|
||||||
|
$headerAttachment = \App\Domains\Attachable\Models\Attachment::create([
|
||||||
|
'key' => $hdrKey,
|
||||||
|
'path' => 'tenants/' . $hdrKey . '.png',
|
||||||
|
'filename' => 'logo_header.png',
|
||||||
|
'type' => \App\Domains\Attachable\Enums\AttachmentType::Image,
|
||||||
|
'mime_type' => 'image/png',
|
||||||
|
]);
|
||||||
|
$footerAttachment = \App\Domains\Attachable\Models\Attachment::create([
|
||||||
|
'key' => $ftrKey,
|
||||||
|
'path' => 'tenants/' . $ftrKey . '.png',
|
||||||
|
'filename' => 'logo_footer.png',
|
||||||
|
'type' => \App\Domains\Attachable\Enums\AttachmentType::Image,
|
||||||
|
'mime_type' => 'image/png',
|
||||||
|
]);
|
||||||
|
|
||||||
|
return Tenant::create([
|
||||||
|
'codigo' => $codigo,
|
||||||
|
'nombre' => $nombre,
|
||||||
|
'dominio' => $dominio,
|
||||||
|
'primary_color' => '#111111',
|
||||||
|
'secondary_color' => '#222222',
|
||||||
|
'danger_color' => '#333333',
|
||||||
|
'header_footer_bg_color' => '#444444',
|
||||||
|
'header_logo_id' => $headerAttachment->id,
|
||||||
|
'footer_logo_id' => $footerAttachment->id,
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user