Merge branch 'codex/sales-at-farm-level' into 'development'

codex/fix: hidden product warehouse depletion and egg <= 0

See merge request mbugroup/lti-api!393
This commit is contained in:
Adnan Zahir
2026-04-06 22:32:51 +07:00
5 changed files with 154 additions and 10 deletions
@@ -16,6 +16,7 @@ type WarehouseRepository interface {
NameExists(ctx context.Context, name string, excludeID *uint) (bool, error)
IdExists(ctx context.Context, id uint) (bool, error)
GetByKandangID(ctx context.Context, kandangId uint) (*entity.Warehouse, error)
GetByKandangIDAndLocationID(ctx context.Context, kandangId uint, locationId uint) (*entity.Warehouse, error)
GetLatestByKandangID(ctx context.Context, kandangId uint) (*entity.Warehouse, error)
}
@@ -62,6 +63,20 @@ func (r *WarehouseRepositoryImpl) GetByKandangID(ctx context.Context, kandangId
return &warehouse, nil
}
func (r *WarehouseRepositoryImpl) GetByKandangIDAndLocationID(ctx context.Context, kandangId uint, locationId uint) (*entity.Warehouse, error) {
var warehouse entity.Warehouse
err := r.db.WithContext(ctx).
Where("kandang_id = ?", kandangId).
Where("location_id = ?", locationId).
Where("deleted_at IS NULL").
Order("id ASC").
First(&warehouse).Error
if err != nil {
return nil, err
}
return &warehouse, nil
}
func (r *WarehouseRepositoryImpl) GetLatestByKandangID(ctx context.Context, kandangId uint) (*entity.Warehouse, error) {
var warehouse entity.Warehouse
err := r.db.WithContext(ctx).
@@ -0,0 +1,63 @@
package repository
import (
"context"
"testing"
"github.com/glebarez/sqlite"
entity "gitlab.com/mbugroup/lti-api.git/internal/entities"
"gorm.io/gorm"
)
func TestGetByKandangIDAndLocationIDReturnsLocationMatchedWarehouse(t *testing.T) {
db := setupWarehouseRepositoryTestDB(t)
repo := NewWarehouseRepository(db)
warehouse, err := repo.GetByKandangIDAndLocationID(context.Background(), 5, 13)
if err != nil {
t.Fatalf("expected location-matched warehouse, got error: %v", err)
}
if warehouse.Id != 33 {
t.Fatalf("expected warehouse 33, got %d", warehouse.Id)
}
}
func TestGetByKandangIDKeepsLegacyFirstWarehouseBehavior(t *testing.T) {
db := setupWarehouseRepositoryTestDB(t)
repo := NewWarehouseRepository(db)
warehouse, err := repo.GetByKandangID(context.Background(), 5)
if err != nil {
t.Fatalf("expected warehouse, got error: %v", err)
}
if warehouse.Id != 17 {
t.Fatalf("expected legacy first warehouse 17, got %d", warehouse.Id)
}
}
func setupWarehouseRepositoryTestDB(t *testing.T) *gorm.DB {
t.Helper()
db, err := gorm.Open(sqlite.Open("file:"+t.Name()+"?mode=memory&cache=private"), &gorm.Config{})
if err != nil {
t.Fatalf("failed opening sqlite db: %v", err)
}
if err := db.AutoMigrate(&entity.Warehouse{}); err != nil {
t.Fatalf("failed migrating warehouses: %v", err)
}
warehouses := []entity.Warehouse{
{Id: 17, Name: "Cijangkar 1", Type: "KANDANG", AreaId: 1, LocationId: uintPtr(1), KandangId: uintPtr(5), CreatedBy: 1},
{Id: 33, Name: "Gudang Cijangkar 1", Type: "KANDANG", AreaId: 1, LocationId: uintPtr(13), KandangId: uintPtr(5), CreatedBy: 1},
}
if err := db.Create(&warehouses).Error; err != nil {
t.Fatalf("failed seeding warehouses: %v", err)
}
return db
}
func uintPtr(v uint) *uint {
return &v
}