mirror of
https://gitlab.com/mbugroup/lti-api.git
synced 2026-06-09 15:07:49 +00:00
Compare commits
20 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c3eab60f49 | |||
| 255e6a16d3 | |||
| 93ed89b4ef | |||
| ef2f9568ad | |||
| badbe4086a | |||
| 6528739bfd | |||
| 68bddd5c78 | |||
| 90efd0ba5a | |||
| bfef144668 | |||
| 09b1f19d19 | |||
| 672f80a3ba | |||
| 0f12c706b0 | |||
| d26c4e9e1a | |||
| be7f3ac82a | |||
| a46edc4498 | |||
| 254ce509fb | |||
| 8624030b39 | |||
| b4fbef702a | |||
| 0410169746 | |||
| fecbcab48d |
@@ -0,0 +1,484 @@
|
|||||||
|
// Command reconcile-fifo-total-used memperbaiki "phantom total_used" pada
|
||||||
|
// stockable lot FIFO v2 (recording_eggs, stock_transfer_details, dst.).
|
||||||
|
//
|
||||||
|
// LATAR BELAKANG
|
||||||
|
// Sebelum fix di population_allocation.go, ReleaseByUsable melepas SEMUA alokasi
|
||||||
|
// CONSUME sebuah usable (termasuk RECORDING_EGG / STOCK_TRANSFER_IN) tanpa
|
||||||
|
// men-decrement total_used stockable-nya. Akibatnya total_used "nyangkut" lebih
|
||||||
|
// besar dari jumlah alokasi ACTIVE yang membackup-nya (phantom) → available
|
||||||
|
// dihitung 0 padahal stok fisik ada → Delivery Order telur nyangkut di pending.
|
||||||
|
//
|
||||||
|
// PERBAIKAN
|
||||||
|
// Sumber kebenaran konsumsi = stock_allocations status ACTIVE & purpose CONSUME.
|
||||||
|
// Command ini menyetel ulang total_used setiap lot = SUM(alokasi ACTIVE CONSUME
|
||||||
|
// untuk lot itu), lalu menjalankan FIFO v2 Reflow per (PW, flag group) sehingga
|
||||||
|
// pending dialokasi ulang ke stok yang kini available dan product_warehouses.qty
|
||||||
|
// dihitung ulang.
|
||||||
|
//
|
||||||
|
// PENTING: jalankan command ini SETELAH fix kode (population_allocation.go)
|
||||||
|
// ter-deploy, dan SEBELUM mengaktifkan blok over-sell telur.
|
||||||
|
//
|
||||||
|
// Cara pakai:
|
||||||
|
//
|
||||||
|
// go run ./cmd/reconcile-fifo-total-used/ -pw=1292 # dry-run 1 PW
|
||||||
|
// go run ./cmd/reconcile-fifo-total-used/ -pw=1292 -apply # apply 1 PW
|
||||||
|
// go run ./cmd/reconcile-fifo-total-used/ -pw=1292,1296,1268 -apply
|
||||||
|
// go run ./cmd/reconcile-fifo-total-used/ -pw=1292 -apply -output=json
|
||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"context"
|
||||||
|
"encoding/json"
|
||||||
|
"flag"
|
||||||
|
"fmt"
|
||||||
|
"log"
|
||||||
|
"os"
|
||||||
|
"regexp"
|
||||||
|
"strconv"
|
||||||
|
"strings"
|
||||||
|
"time"
|
||||||
|
|
||||||
|
commonSvc "gitlab.com/mbugroup/lti-api.git/internal/common/service"
|
||||||
|
"gitlab.com/mbugroup/lti-api.git/internal/config"
|
||||||
|
"gitlab.com/mbugroup/lti-api.git/internal/database"
|
||||||
|
|
||||||
|
"github.com/sirupsen/logrus"
|
||||||
|
"gorm.io/gorm"
|
||||||
|
gormlogger "gorm.io/gorm/logger"
|
||||||
|
)
|
||||||
|
|
||||||
|
const (
|
||||||
|
outputTable = "table"
|
||||||
|
outputJSON = "json"
|
||||||
|
)
|
||||||
|
|
||||||
|
var identifierRe = regexp.MustCompile(`^[a-zA-Z_][a-zA-Z0-9_]*$`)
|
||||||
|
|
||||||
|
type options struct {
|
||||||
|
Apply bool
|
||||||
|
Output string
|
||||||
|
DBSSLMode string
|
||||||
|
PWs []uint
|
||||||
|
}
|
||||||
|
|
||||||
|
// stockableRule menggambarkan satu jenis stockable (mis. RECORDING_EGG) beserta
|
||||||
|
// tabel & kolom yang dipakai FIFO v2 untuk melacak stok masuk.
|
||||||
|
type stockableRule struct {
|
||||||
|
LegacyTypeKey string
|
||||||
|
SourceTable string
|
||||||
|
SourceIDColumn string
|
||||||
|
UsedQuantityCol string
|
||||||
|
ProductWarehouseCol string
|
||||||
|
QuantityCol string
|
||||||
|
ScopeSQL string
|
||||||
|
}
|
||||||
|
|
||||||
|
type pwResult struct {
|
||||||
|
ProductWarehouseID uint `json:"product_warehouse_id"`
|
||||||
|
Product string `json:"product"`
|
||||||
|
Warehouse string `json:"warehouse"`
|
||||||
|
FlagGroups []string `json:"flag_groups"`
|
||||||
|
|
||||||
|
QtyBefore float64 `json:"qty_before"`
|
||||||
|
TotalUsedBefore float64 `json:"total_used_before"`
|
||||||
|
ActiveConsume float64 `json:"active_consume"`
|
||||||
|
Phantom float64 `json:"phantom"`
|
||||||
|
PendingBefore float64 `json:"pending_before"`
|
||||||
|
|
||||||
|
QtyAfter float64 `json:"qty_after,omitempty"`
|
||||||
|
PendingAfter float64 `json:"pending_after,omitempty"`
|
||||||
|
|
||||||
|
Status string `json:"status"`
|
||||||
|
Error string `json:"error,omitempty"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type runSummary struct {
|
||||||
|
Mode string `json:"mode"`
|
||||||
|
TargetPWs []uint `json:"target_pws"`
|
||||||
|
Results []pwResult `json:"results"`
|
||||||
|
DurationSeconds float64 `json:"duration_seconds"`
|
||||||
|
OverallStatus string `json:"overall_status"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func main() {
|
||||||
|
opts, err := parseFlags()
|
||||||
|
if err != nil {
|
||||||
|
log.Fatalf("invalid flags: %v", err)
|
||||||
|
}
|
||||||
|
if opts.DBSSLMode != "" {
|
||||||
|
config.DBSSLMode = opts.DBSSLMode
|
||||||
|
}
|
||||||
|
|
||||||
|
ctx := context.Background()
|
||||||
|
db := database.Connect(config.DBHost, config.DBName)
|
||||||
|
// Quiet the per-query GORM logging; this command emits its own summary and
|
||||||
|
// the reflow step would otherwise produce a very noisy query log.
|
||||||
|
db = db.Session(&gorm.Session{Logger: gormlogger.Default.LogMode(gormlogger.Silent)})
|
||||||
|
|
||||||
|
logger := logrus.New()
|
||||||
|
logger.SetLevel(logrus.WarnLevel)
|
||||||
|
svc := commonSvc.NewFifoStockV2Service(db, logger)
|
||||||
|
|
||||||
|
start := time.Now()
|
||||||
|
|
||||||
|
stockableRules, err := loadStockableRules(ctx, db)
|
||||||
|
if err != nil {
|
||||||
|
log.Fatalf("failed to load stockable route rules: %v", err)
|
||||||
|
}
|
||||||
|
pendingRules, err := loadUsablePendingRules(ctx, db)
|
||||||
|
if err != nil {
|
||||||
|
log.Fatalf("failed to load usable route rules: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
summary := runSummary{
|
||||||
|
Mode: modeLabel(opts.Apply),
|
||||||
|
TargetPWs: opts.PWs,
|
||||||
|
OverallStatus: "PASS",
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, pw := range opts.PWs {
|
||||||
|
res := reconcilePW(ctx, db, svc, pw, stockableRules, pendingRules, opts.Apply)
|
||||||
|
if res.Status == "FAIL" {
|
||||||
|
summary.OverallStatus = "FAIL"
|
||||||
|
}
|
||||||
|
summary.Results = append(summary.Results, res)
|
||||||
|
}
|
||||||
|
|
||||||
|
summary.DurationSeconds = time.Since(start).Seconds()
|
||||||
|
render(opts.Output, summary)
|
||||||
|
|
||||||
|
if !opts.Apply {
|
||||||
|
fmt.Println("\nDry-run only. Re-run with -apply to reset total_used and reflow the PW(s) above.")
|
||||||
|
}
|
||||||
|
if summary.OverallStatus == "FAIL" {
|
||||||
|
os.Exit(1)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// reconcilePW mengukur kondisi PW, lalu (jika -apply) menyetel ulang total_used
|
||||||
|
// tiap lot dan menjalankan reflow, semuanya dalam satu transaksi.
|
||||||
|
func reconcilePW(
|
||||||
|
ctx context.Context,
|
||||||
|
db *gorm.DB,
|
||||||
|
svc commonSvc.FifoStockV2Service,
|
||||||
|
pw uint,
|
||||||
|
stockableRules []stockableRule,
|
||||||
|
pendingRules []stockableRule,
|
||||||
|
apply bool,
|
||||||
|
) pwResult {
|
||||||
|
res := pwResult{ProductWarehouseID: pw, Status: "OK"}
|
||||||
|
|
||||||
|
if name, wh, err := loadPWIdentity(ctx, db, pw); err != nil {
|
||||||
|
res.Status = "FAIL"
|
||||||
|
res.Error = fmt.Sprintf("load identity: %v", err)
|
||||||
|
return res
|
||||||
|
} else {
|
||||||
|
res.Product, res.Warehouse = name, wh
|
||||||
|
}
|
||||||
|
|
||||||
|
flagGroups, err := loadFlagGroups(ctx, db, pw)
|
||||||
|
if err != nil {
|
||||||
|
res.Status = "FAIL"
|
||||||
|
res.Error = fmt.Sprintf("load flag groups: %v", err)
|
||||||
|
return res
|
||||||
|
}
|
||||||
|
res.FlagGroups = flagGroups
|
||||||
|
|
||||||
|
res.QtyBefore, _ = loadQty(ctx, db, pw)
|
||||||
|
res.TotalUsedBefore, _ = sumStockableUsed(ctx, db, pw, stockableRules)
|
||||||
|
res.ActiveConsume, _ = loadActiveConsume(ctx, db, pw)
|
||||||
|
res.PendingBefore, _ = sumPending(ctx, db, pw, pendingRules)
|
||||||
|
res.Phantom = res.TotalUsedBefore - res.ActiveConsume
|
||||||
|
|
||||||
|
if !apply {
|
||||||
|
return res
|
||||||
|
}
|
||||||
|
|
||||||
|
err = db.WithContext(ctx).Transaction(func(tx *gorm.DB) error {
|
||||||
|
for _, rule := range stockableRules {
|
||||||
|
if err := recomputeUsed(ctx, tx, rule, pw); err != nil {
|
||||||
|
return fmt.Errorf("recompute %s: %w", rule.LegacyTypeKey, err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
for _, fg := range flagGroups {
|
||||||
|
if _, err := svc.Reflow(ctx, commonSvc.FifoStockV2ReflowRequest{
|
||||||
|
FlagGroupCode: fg,
|
||||||
|
ProductWarehouseID: pw,
|
||||||
|
Tx: tx,
|
||||||
|
}); err != nil {
|
||||||
|
return fmt.Errorf("reflow flag_group=%s: %w", fg, err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
})
|
||||||
|
if err != nil {
|
||||||
|
res.Status = "FAIL"
|
||||||
|
res.Error = err.Error()
|
||||||
|
return res
|
||||||
|
}
|
||||||
|
|
||||||
|
res.QtyAfter, _ = loadQty(ctx, db, pw)
|
||||||
|
res.PendingAfter, _ = sumPending(ctx, db, pw, pendingRules)
|
||||||
|
return res
|
||||||
|
}
|
||||||
|
|
||||||
|
func recomputeUsed(ctx context.Context, tx *gorm.DB, rule stockableRule, pw uint) error {
|
||||||
|
q := fmt.Sprintf(`
|
||||||
|
UPDATE %s t
|
||||||
|
SET %s = COALESCE((
|
||||||
|
SELECT SUM(sa.qty) FROM stock_allocations sa
|
||||||
|
WHERE sa.stockable_type = ?
|
||||||
|
AND sa.stockable_id = t.%s
|
||||||
|
AND sa.status = 'ACTIVE'
|
||||||
|
AND sa.allocation_purpose = 'CONSUME'
|
||||||
|
), 0)
|
||||||
|
WHERE t.%s = ?`, rule.SourceTable, rule.UsedQuantityCol, rule.SourceIDColumn, rule.ProductWarehouseCol)
|
||||||
|
if strings.TrimSpace(rule.ScopeSQL) != "" {
|
||||||
|
q += " AND (" + rule.ScopeSQL + ")"
|
||||||
|
}
|
||||||
|
return tx.WithContext(ctx).Exec(q, rule.LegacyTypeKey, pw).Error
|
||||||
|
}
|
||||||
|
|
||||||
|
// ---- loaders ----
|
||||||
|
|
||||||
|
func loadStockableRules(ctx context.Context, db *gorm.DB) ([]stockableRule, error) {
|
||||||
|
type row struct {
|
||||||
|
LegacyTypeKey string `gorm:"column:legacy_type_key"`
|
||||||
|
SourceTable string `gorm:"column:source_table"`
|
||||||
|
SourceIDColumn string `gorm:"column:source_id_column"`
|
||||||
|
UsedQuantityCol string `gorm:"column:used_quantity_col"`
|
||||||
|
ProductWarehouseCol string `gorm:"column:product_warehouse_col"`
|
||||||
|
QuantityCol string `gorm:"column:quantity_col"`
|
||||||
|
ScopeSQL string `gorm:"column:scope_sql"`
|
||||||
|
}
|
||||||
|
var rows []row
|
||||||
|
err := db.WithContext(ctx).
|
||||||
|
Table("fifo_stock_v2_route_rules").
|
||||||
|
Select("DISTINCT legacy_type_key, source_table, source_id_column, COALESCE(used_quantity_col,'') AS used_quantity_col, product_warehouse_col, COALESCE(quantity_col,'') AS quantity_col, COALESCE(scope_sql,'') AS scope_sql").
|
||||||
|
Where("lane = ? AND is_active = TRUE", "STOCKABLE").
|
||||||
|
Where("used_quantity_col IS NOT NULL AND used_quantity_col <> ''").
|
||||||
|
Scan(&rows).Error
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
out := make([]stockableRule, 0, len(rows))
|
||||||
|
seen := map[string]bool{}
|
||||||
|
for _, r := range rows {
|
||||||
|
if !validIdentifiers(r.SourceTable, r.SourceIDColumn, r.UsedQuantityCol, r.ProductWarehouseCol) {
|
||||||
|
return nil, fmt.Errorf("unsafe identifier in route rule %s (table=%s used=%s pw=%s)", r.LegacyTypeKey, r.SourceTable, r.UsedQuantityCol, r.ProductWarehouseCol)
|
||||||
|
}
|
||||||
|
key := r.LegacyTypeKey + "|" + r.SourceTable + "|" + r.UsedQuantityCol + "|" + r.ProductWarehouseCol
|
||||||
|
if seen[key] {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
seen[key] = true
|
||||||
|
out = append(out, stockableRule(r))
|
||||||
|
}
|
||||||
|
return out, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func loadUsablePendingRules(ctx context.Context, db *gorm.DB) ([]stockableRule, error) {
|
||||||
|
type row struct {
|
||||||
|
SourceTable string `gorm:"column:source_table"`
|
||||||
|
ProductWarehouseCol string `gorm:"column:product_warehouse_col"`
|
||||||
|
PendingCol string `gorm:"column:pending_quantity_col"`
|
||||||
|
ScopeSQL string `gorm:"column:scope_sql"`
|
||||||
|
}
|
||||||
|
var rows []row
|
||||||
|
err := db.WithContext(ctx).
|
||||||
|
Table("fifo_stock_v2_route_rules").
|
||||||
|
Select("DISTINCT source_table, product_warehouse_col, pending_quantity_col, COALESCE(scope_sql,'') AS scope_sql").
|
||||||
|
Where("lane = ? AND is_active = TRUE", "USABLE").
|
||||||
|
Where("pending_quantity_col IS NOT NULL AND pending_quantity_col <> ''").
|
||||||
|
Scan(&rows).Error
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
out := make([]stockableRule, 0, len(rows))
|
||||||
|
seen := map[string]bool{}
|
||||||
|
for _, r := range rows {
|
||||||
|
if !validIdentifiers(r.SourceTable, r.ProductWarehouseCol, r.PendingCol) {
|
||||||
|
return nil, fmt.Errorf("unsafe identifier in usable rule (table=%s pw=%s pending=%s)", r.SourceTable, r.ProductWarehouseCol, r.PendingCol)
|
||||||
|
}
|
||||||
|
key := r.SourceTable + "|" + r.PendingCol + "|" + r.ProductWarehouseCol
|
||||||
|
if seen[key] {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
seen[key] = true
|
||||||
|
out = append(out, stockableRule{
|
||||||
|
SourceTable: r.SourceTable,
|
||||||
|
ProductWarehouseCol: r.ProductWarehouseCol,
|
||||||
|
UsedQuantityCol: r.PendingCol, // reuse field as the column to SUM
|
||||||
|
ScopeSQL: r.ScopeSQL,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
return out, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func loadPWIdentity(ctx context.Context, db *gorm.DB, pw uint) (string, string, error) {
|
||||||
|
type row struct {
|
||||||
|
Product string `gorm:"column:product"`
|
||||||
|
Warehouse string `gorm:"column:warehouse"`
|
||||||
|
}
|
||||||
|
var out row
|
||||||
|
err := db.WithContext(ctx).
|
||||||
|
Table("product_warehouses pw").
|
||||||
|
Select("p.name AS product, w.name AS warehouse").
|
||||||
|
Joins("JOIN products p ON p.id = pw.product_id").
|
||||||
|
Joins("JOIN warehouses w ON w.id = pw.warehouse_id").
|
||||||
|
Where("pw.id = ?", pw).
|
||||||
|
Take(&out).Error
|
||||||
|
return out.Product, out.Warehouse, err
|
||||||
|
}
|
||||||
|
|
||||||
|
func loadFlagGroups(ctx context.Context, db *gorm.DB, pw uint) ([]string, error) {
|
||||||
|
var groups []string
|
||||||
|
err := db.WithContext(ctx).
|
||||||
|
Table("stock_allocations").
|
||||||
|
Distinct("flag_group_code").
|
||||||
|
Where("product_warehouse_id = ? AND flag_group_code IS NOT NULL AND flag_group_code <> ''", pw).
|
||||||
|
Order("flag_group_code ASC").
|
||||||
|
Scan(&groups).Error
|
||||||
|
return groups, err
|
||||||
|
}
|
||||||
|
|
||||||
|
func loadQty(ctx context.Context, db *gorm.DB, pw uint) (float64, error) {
|
||||||
|
var v float64
|
||||||
|
err := db.WithContext(ctx).
|
||||||
|
Table("product_warehouses").
|
||||||
|
Select("COALESCE(qty,0)").
|
||||||
|
Where("id = ?", pw).
|
||||||
|
Scan(&v).Error
|
||||||
|
return v, err
|
||||||
|
}
|
||||||
|
|
||||||
|
func loadActiveConsume(ctx context.Context, db *gorm.DB, pw uint) (float64, error) {
|
||||||
|
var v float64
|
||||||
|
err := db.WithContext(ctx).
|
||||||
|
Table("stock_allocations").
|
||||||
|
Select("COALESCE(SUM(qty),0)").
|
||||||
|
Where("product_warehouse_id = ? AND status = 'ACTIVE' AND allocation_purpose = 'CONSUME'", pw).
|
||||||
|
Scan(&v).Error
|
||||||
|
return v, err
|
||||||
|
}
|
||||||
|
|
||||||
|
func sumStockableUsed(ctx context.Context, db *gorm.DB, pw uint, rules []stockableRule) (float64, error) {
|
||||||
|
total := 0.0
|
||||||
|
for _, rule := range rules {
|
||||||
|
v, err := sumColumn(ctx, db, rule.SourceTable, rule.UsedQuantityCol, rule.ProductWarehouseCol, rule.ScopeSQL, pw)
|
||||||
|
if err != nil {
|
||||||
|
return total, err
|
||||||
|
}
|
||||||
|
total += v
|
||||||
|
}
|
||||||
|
return total, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func sumPending(ctx context.Context, db *gorm.DB, pw uint, rules []stockableRule) (float64, error) {
|
||||||
|
total := 0.0
|
||||||
|
for _, rule := range rules {
|
||||||
|
v, err := sumColumn(ctx, db, rule.SourceTable, rule.UsedQuantityCol, rule.ProductWarehouseCol, rule.ScopeSQL, pw)
|
||||||
|
if err != nil {
|
||||||
|
return total, err
|
||||||
|
}
|
||||||
|
total += v
|
||||||
|
}
|
||||||
|
return total, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func sumColumn(ctx context.Context, db *gorm.DB, table, col, pwCol, scope string, pw uint) (float64, error) {
|
||||||
|
q := fmt.Sprintf("SELECT COALESCE(SUM(%s),0) FROM %s WHERE %s = ?", col, table, pwCol)
|
||||||
|
if strings.TrimSpace(scope) != "" {
|
||||||
|
q += " AND (" + scope + ")"
|
||||||
|
}
|
||||||
|
var v float64
|
||||||
|
err := db.WithContext(ctx).Raw(q, pw).Scan(&v).Error
|
||||||
|
return v, err
|
||||||
|
}
|
||||||
|
|
||||||
|
// ---- flags / render ----
|
||||||
|
|
||||||
|
func parseFlags() (*options, error) {
|
||||||
|
var opts options
|
||||||
|
var pwsRaw string
|
||||||
|
flag.BoolVar(&opts.Apply, "apply", false, "Apply the reconciliation (omit for dry-run)")
|
||||||
|
flag.StringVar(&opts.Output, "output", outputTable, "Output format: table or json")
|
||||||
|
flag.StringVar(&opts.DBSSLMode, "db-sslmode", "", "Database sslmode override")
|
||||||
|
flag.StringVar(&pwsRaw, "pw", "", "Comma-separated product_warehouse ids to reconcile (required)")
|
||||||
|
flag.Parse()
|
||||||
|
|
||||||
|
opts.Output = strings.ToLower(strings.TrimSpace(opts.Output))
|
||||||
|
if opts.Output == "" {
|
||||||
|
opts.Output = outputTable
|
||||||
|
}
|
||||||
|
if opts.Output != outputTable && opts.Output != outputJSON {
|
||||||
|
return nil, fmt.Errorf("unsupported --output=%s", opts.Output)
|
||||||
|
}
|
||||||
|
|
||||||
|
pwsRaw = strings.TrimSpace(pwsRaw)
|
||||||
|
if pwsRaw == "" {
|
||||||
|
return nil, fmt.Errorf("-pw is required (e.g. -pw=1292 or -pw=1292,1296)")
|
||||||
|
}
|
||||||
|
for _, part := range strings.Split(pwsRaw, ",") {
|
||||||
|
part = strings.TrimSpace(part)
|
||||||
|
if part == "" {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
id, err := strconv.ParseUint(part, 10, 64)
|
||||||
|
if err != nil || id == 0 {
|
||||||
|
return nil, fmt.Errorf("invalid product_warehouse id %q", part)
|
||||||
|
}
|
||||||
|
opts.PWs = append(opts.PWs, uint(id))
|
||||||
|
}
|
||||||
|
if len(opts.PWs) == 0 {
|
||||||
|
return nil, fmt.Errorf("no valid product_warehouse ids parsed from -pw")
|
||||||
|
}
|
||||||
|
return &opts, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func validIdentifiers(ids ...string) bool {
|
||||||
|
for _, id := range ids {
|
||||||
|
if !identifierRe.MatchString(id) {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
|
func modeLabel(apply bool) string {
|
||||||
|
if apply {
|
||||||
|
return "APPLY"
|
||||||
|
}
|
||||||
|
return "DRY_RUN"
|
||||||
|
}
|
||||||
|
|
||||||
|
func render(mode string, summary runSummary) {
|
||||||
|
if mode == outputJSON {
|
||||||
|
enc := json.NewEncoder(os.Stdout)
|
||||||
|
enc.SetIndent("", " ")
|
||||||
|
_ = enc.Encode(summary)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
fmt.Printf("=== Reconcile FIFO total_used ===\n")
|
||||||
|
fmt.Printf("Mode : %s\n", summary.Mode)
|
||||||
|
for _, r := range summary.Results {
|
||||||
|
fmt.Printf("\n--- PW %d (%s @ %s) [%s] ---\n", r.ProductWarehouseID, r.Product, r.Warehouse, r.Status)
|
||||||
|
if r.Error != "" {
|
||||||
|
fmt.Printf("ERROR : %s\n", r.Error)
|
||||||
|
}
|
||||||
|
fmt.Printf("Flag groups : %s\n", strings.Join(r.FlagGroups, ", "))
|
||||||
|
fmt.Printf("qty (before) : %.3f\n", r.QtyBefore)
|
||||||
|
fmt.Printf("Σ total_used : %.3f\n", r.TotalUsedBefore)
|
||||||
|
fmt.Printf("Σ active CONSUME: %.3f\n", r.ActiveConsume)
|
||||||
|
fmt.Printf("PHANTOM : %.3f (total_used yang akan dilepas)\n", r.Phantom)
|
||||||
|
fmt.Printf("pending (before): %.3f\n", r.PendingBefore)
|
||||||
|
if summary.Mode == "APPLY" && r.Status == "OK" {
|
||||||
|
fmt.Printf("qty (after) : %.3f\n", r.QtyAfter)
|
||||||
|
fmt.Printf("pending (after) : %.3f\n", r.PendingAfter)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
fmt.Printf("\nDuration : %.2fs\n", summary.DurationSeconds)
|
||||||
|
fmt.Printf("Overall status : %s\n", summary.OverallStatus)
|
||||||
|
}
|
||||||
@@ -102,11 +102,17 @@ type HppV2CostRepository interface {
|
|||||||
GetProjectFlockKandangContext(ctx context.Context, projectFlockKandangId uint) (*HppV2ProjectFlockKandangContext, error)
|
GetProjectFlockKandangContext(ctx context.Context, projectFlockKandangId uint) (*HppV2ProjectFlockKandangContext, error)
|
||||||
GetProjectFlockKandangIDs(ctx context.Context, projectFlockId uint) ([]uint, error)
|
GetProjectFlockKandangIDs(ctx context.Context, projectFlockId uint) ([]uint, error)
|
||||||
GetLatestTransferInputByProjectFlockKandangID(ctx context.Context, projectFlockKandangId uint, period time.Time) (*HppV2LatestTransferInputRow, error)
|
GetLatestTransferInputByProjectFlockKandangID(ctx context.Context, projectFlockKandangId uint, period time.Time) (*HppV2LatestTransferInputRow, error)
|
||||||
|
// GetAllTransferInputsByProjectFlockKandangID return SEMUA approved transfer ke target kandang
|
||||||
|
// itu, untuk skenario multi-source di mana 1 target menerima dari multiple transfer terpisah.
|
||||||
|
// Setiap row = 1 transfer dengan cost basis & chick_in_date sendiri (per source). Order:
|
||||||
|
// effective_date ASC, id ASC (kronologis).
|
||||||
|
GetAllTransferInputsByProjectFlockKandangID(ctx context.Context, projectFlockKandangId uint, period time.Time) ([]HppV2LatestTransferInputRow, error)
|
||||||
GetManualDepreciationInputByProjectFlockID(ctx context.Context, projectFlockID uint) (*HppV2ManualDepreciationInputRow, error)
|
GetManualDepreciationInputByProjectFlockID(ctx context.Context, projectFlockID uint) (*HppV2ManualDepreciationInputRow, error)
|
||||||
GetRecordingStockRoutingAdjustmentCostByProjectFlockID(ctx context.Context, projectFlockID uint, periodDate time.Time) (float64, error)
|
GetRecordingStockRoutingAdjustmentCostByProjectFlockID(ctx context.Context, projectFlockID uint, periodDate time.Time) (float64, error)
|
||||||
GetFarmDepreciationSnapshotByProjectFlockIDAndPeriod(ctx context.Context, projectFlockID uint, periodDate time.Time) (*HppV2FarmDepreciationSnapshotRow, error)
|
GetFarmDepreciationSnapshotByProjectFlockIDAndPeriod(ctx context.Context, projectFlockID uint, periodDate time.Time) (*HppV2FarmDepreciationSnapshotRow, error)
|
||||||
GetEarliestChickInDateByProjectFlockID(ctx context.Context, projectFlockID uint) (*time.Time, error)
|
GetEarliestChickInDateByProjectFlockID(ctx context.Context, projectFlockID uint) (*time.Time, error)
|
||||||
GetDepreciationPercents(ctx context.Context, houseTypes []string, maxDay int) (map[string]map[int]float64, error)
|
GetChickinPopulationByPFKForFarm(ctx context.Context, projectFlockID uint) (map[uint]float64, error)
|
||||||
|
GetMultiplicationPercentages(ctx context.Context, houseTypes []string, maxDay int) (map[string]map[int]float64, map[string]*time.Time, error)
|
||||||
ListUsageCostRowsByProductFlags(ctx context.Context, projectFlockKandangIDs []uint, flagNames []string, date *time.Time) ([]HppV2UsageCostRow, error)
|
ListUsageCostRowsByProductFlags(ctx context.Context, projectFlockKandangIDs []uint, flagNames []string, date *time.Time) ([]HppV2UsageCostRow, error)
|
||||||
ListAdjustmentCostRowsByProductFlags(ctx context.Context, projectFlockKandangIDs []uint, flagNames []string, date *time.Time) ([]HppV2AdjustmentCostRow, error)
|
ListAdjustmentCostRowsByProductFlags(ctx context.Context, projectFlockKandangIDs []uint, flagNames []string, date *time.Time) ([]HppV2AdjustmentCostRow, error)
|
||||||
ListExpenseRealizationRowsByProjectFlockKandangIDs(ctx context.Context, projectFlockKandangIDs []uint, date *time.Time, ekspedisi bool) ([]HppV2ExpenseCostRow, error)
|
ListExpenseRealizationRowsByProjectFlockKandangIDs(ctx context.Context, projectFlockKandangIDs []uint, date *time.Time, ekspedisi bool) ([]HppV2ExpenseCostRow, error)
|
||||||
@@ -230,6 +236,62 @@ LIMIT 1
|
|||||||
return &row, nil
|
return &row, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (r *HppV2RepositoryImpl) GetAllTransferInputsByProjectFlockKandangID(
|
||||||
|
ctx context.Context,
|
||||||
|
projectFlockKandangId uint,
|
||||||
|
period time.Time,
|
||||||
|
) ([]HppV2LatestTransferInputRow, error) {
|
||||||
|
var rows []HppV2LatestTransferInputRow
|
||||||
|
query := `
|
||||||
|
WITH latest_transfer_approval AS (
|
||||||
|
SELECT a.approvable_id, a.action
|
||||||
|
FROM approvals a
|
||||||
|
JOIN (
|
||||||
|
SELECT approvable_id, MAX(action_at) AS latest_action_at
|
||||||
|
FROM approvals
|
||||||
|
WHERE approvable_type = @approval_type
|
||||||
|
GROUP BY approvable_id
|
||||||
|
) la
|
||||||
|
ON la.approvable_id = a.approvable_id
|
||||||
|
AND la.latest_action_at = a.action_at
|
||||||
|
WHERE a.approvable_type = @approval_type
|
||||||
|
),
|
||||||
|
approved_transfers AS (
|
||||||
|
SELECT
|
||||||
|
lt.id,
|
||||||
|
lt.from_project_flock_id,
|
||||||
|
COALESCE(DATE(lt.effective_move_date), DATE(lt.economic_cutoff_date), DATE(lt.transfer_date)) AS effective_date
|
||||||
|
FROM laying_transfers lt
|
||||||
|
JOIN latest_transfer_approval lta ON lta.approvable_id = lt.id
|
||||||
|
WHERE lt.deleted_at IS NULL
|
||||||
|
AND lt.executed_at IS NOT NULL
|
||||||
|
AND lta.action = 'APPROVED'
|
||||||
|
)
|
||||||
|
SELECT
|
||||||
|
ltt.target_project_flock_kandang_id AS project_flock_kandang_id,
|
||||||
|
at.from_project_flock_id AS source_project_flock_id,
|
||||||
|
at.effective_date AS transfer_date,
|
||||||
|
ltt.total_qty AS transfer_qty,
|
||||||
|
at.id AS transfer_id
|
||||||
|
FROM laying_transfer_targets ltt
|
||||||
|
JOIN approved_transfers at ON at.id = ltt.laying_transfer_id
|
||||||
|
WHERE ltt.deleted_at IS NULL
|
||||||
|
AND ltt.target_project_flock_kandang_id = @project_flock_kandang_id
|
||||||
|
AND at.effective_date <= DATE(@period_date)
|
||||||
|
ORDER BY at.effective_date ASC, at.id ASC
|
||||||
|
`
|
||||||
|
|
||||||
|
err := r.db.WithContext(ctx).Raw(query, map[string]any{
|
||||||
|
"approval_type": utils.ApprovalWorkflowTransferToLaying.String(),
|
||||||
|
"project_flock_kandang_id": projectFlockKandangId,
|
||||||
|
"period_date": period,
|
||||||
|
}).Scan(&rows).Error
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
return rows, nil
|
||||||
|
}
|
||||||
|
|
||||||
func (r *HppV2RepositoryImpl) GetManualDepreciationInputByProjectFlockID(
|
func (r *HppV2RepositoryImpl) GetManualDepreciationInputByProjectFlockID(
|
||||||
ctx context.Context,
|
ctx context.Context,
|
||||||
projectFlockID uint,
|
projectFlockID uint,
|
||||||
@@ -373,42 +435,74 @@ func (r *HppV2RepositoryImpl) GetEarliestChickInDateByProjectFlockID(ctx context
|
|||||||
return selected.ChickInDate, nil
|
return selected.ChickInDate, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (r *HppV2RepositoryImpl) GetDepreciationPercents(
|
func (r *HppV2RepositoryImpl) GetChickinPopulationByPFKForFarm(
|
||||||
|
ctx context.Context,
|
||||||
|
projectFlockID uint,
|
||||||
|
) (map[uint]float64, error) {
|
||||||
|
type row struct {
|
||||||
|
ProjectFlockKandangID uint `gorm:"column:project_flock_kandang_id"`
|
||||||
|
TotalQty float64 `gorm:"column:total_qty"`
|
||||||
|
}
|
||||||
|
var rows []row
|
||||||
|
err := r.db.WithContext(ctx).
|
||||||
|
Table("project_chickins AS pc").
|
||||||
|
Select("pc.project_flock_kandang_id, SUM(pc.usage_qty) AS total_qty").
|
||||||
|
Joins("JOIN project_flock_kandangs AS pfk ON pfk.id = pc.project_flock_kandang_id").
|
||||||
|
Where("pc.deleted_at IS NULL").
|
||||||
|
Where("pfk.project_flock_id = ?", projectFlockID).
|
||||||
|
Group("pc.project_flock_kandang_id").
|
||||||
|
Scan(&rows).Error
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
result := make(map[uint]float64, len(rows))
|
||||||
|
for _, x := range rows {
|
||||||
|
result[x.ProjectFlockKandangID] = x.TotalQty
|
||||||
|
}
|
||||||
|
return result, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (r *HppV2RepositoryImpl) GetMultiplicationPercentages(
|
||||||
ctx context.Context,
|
ctx context.Context,
|
||||||
houseTypes []string,
|
houseTypes []string,
|
||||||
maxDay int,
|
maxDay int,
|
||||||
) (map[string]map[int]float64, error) {
|
) (map[string]map[int]float64, map[string]*time.Time, error) {
|
||||||
result := make(map[string]map[int]float64)
|
result := make(map[string]map[int]float64)
|
||||||
|
effectiveDates := make(map[string]*time.Time)
|
||||||
if len(houseTypes) == 0 || maxDay <= 0 {
|
if len(houseTypes) == 0 || maxDay <= 0 {
|
||||||
return result, nil
|
return result, effectiveDates, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
type row struct {
|
type row struct {
|
||||||
HouseType string
|
HouseType string
|
||||||
Day int
|
Day int
|
||||||
DepreciationPercent float64
|
MultiplicationPercentage float64
|
||||||
|
EffectiveDate *time.Time
|
||||||
}
|
}
|
||||||
|
|
||||||
rows := make([]row, 0)
|
rows := make([]row, 0)
|
||||||
err := r.db.WithContext(ctx).
|
err := r.db.WithContext(ctx).Raw(`
|
||||||
Table("house_depreciation_standards").
|
SELECT DISTINCT ON (house_type::text, day)
|
||||||
Select("house_type::text AS house_type, day, depreciation_percent").
|
house_type::text AS house_type, day, multiplication_percentage, effective_date
|
||||||
Where("house_type::text IN ?", houseTypes).
|
FROM house_depreciation_standards
|
||||||
Where("day <= ?", maxDay).
|
WHERE house_type::text IN ? AND day <= ?
|
||||||
Order("house_type ASC, day ASC").
|
ORDER BY house_type, day, effective_date DESC NULLS LAST
|
||||||
Scan(&rows).Error
|
`, houseTypes, maxDay).Scan(&rows).Error
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, item := range rows {
|
for _, item := range rows {
|
||||||
if _, exists := result[item.HouseType]; !exists {
|
if _, exists := result[item.HouseType]; !exists {
|
||||||
result[item.HouseType] = make(map[int]float64)
|
result[item.HouseType] = make(map[int]float64)
|
||||||
}
|
}
|
||||||
result[item.HouseType][item.Day] = item.DepreciationPercent
|
result[item.HouseType][item.Day] = item.MultiplicationPercentage
|
||||||
|
if _, tracked := effectiveDates[item.HouseType]; !tracked {
|
||||||
|
effectiveDates[item.HouseType] = item.EffectiveDate
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return result, nil
|
return result, effectiveDates, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (r *HppV2RepositoryImpl) ListUsageCostRowsByProductFlags(
|
func (r *HppV2RepositoryImpl) ListUsageCostRowsByProductFlags(
|
||||||
|
|||||||
@@ -6,8 +6,8 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
depreciationStartAgeDayCloseHouse = 155
|
depreciationStartAgeDayCloseHouse = 175
|
||||||
depreciationStartAgeDayOpenHouse = 176
|
depreciationStartAgeDayOpenHouse = 175
|
||||||
)
|
)
|
||||||
|
|
||||||
func NormalizeDepreciationHouseType(raw string) string {
|
func NormalizeDepreciationHouseType(raw string) string {
|
||||||
@@ -26,8 +26,8 @@ func DepreciationStartAgeDay(houseType string) int {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func FlockAgeDay(originDate time.Time, periodDate time.Time) int {
|
func FlockAgeDay(originDate time.Time, periodDate time.Time) int {
|
||||||
origin := time.Date(originDate.Year(), originDate.Month(), originDate.Day(), 0, 0, 0, 0, originDate.Location())
|
origin := time.Date(originDate.Year(), originDate.Month(), originDate.Day(), 0, 0, 0, 0, time.UTC)
|
||||||
period := time.Date(periodDate.Year(), periodDate.Month(), periodDate.Day(), 0, 0, 0, 0, periodDate.Location())
|
period := time.Date(periodDate.Year(), periodDate.Month(), periodDate.Day(), 0, 0, 0, 0, time.UTC)
|
||||||
if period.Before(origin) {
|
if period.Before(origin) {
|
||||||
return 0
|
return 0
|
||||||
}
|
}
|
||||||
@@ -47,9 +47,9 @@ func CalculateDepreciationAtDayN(
|
|||||||
initialPulletCost float64,
|
initialPulletCost float64,
|
||||||
dayN int,
|
dayN int,
|
||||||
houseType string,
|
houseType string,
|
||||||
percentByHouseType map[string]map[int]float64,
|
multiplicationByHouseType map[string]map[int]float64,
|
||||||
) (float64, float64, float64) {
|
) (float64, float64, float64) {
|
||||||
return CalculateDepreciationFromDayRange(initialPulletCost, 1, dayN, houseType, percentByHouseType)
|
return CalculateDepreciationFromDayRange(initialPulletCost, 1, dayN, houseType, multiplicationByHouseType)
|
||||||
}
|
}
|
||||||
|
|
||||||
func CalculateDepreciationFromDayRange(
|
func CalculateDepreciationFromDayRange(
|
||||||
@@ -57,8 +57,8 @@ func CalculateDepreciationFromDayRange(
|
|||||||
startDay int,
|
startDay int,
|
||||||
endDay int,
|
endDay int,
|
||||||
houseType string,
|
houseType string,
|
||||||
percentByHouseType map[string]map[int]float64,
|
multiplicationByHouseType map[string]map[int]float64,
|
||||||
) (float64, float64, float64) {
|
) (pulletCostDayN, depreciationValue, multiplicationPercentage float64) {
|
||||||
if initialPulletCost <= 0 || endDay <= 0 {
|
if initialPulletCost <= 0 || endDay <= 0 {
|
||||||
return 0, 0, 0
|
return 0, 0, 0
|
||||||
}
|
}
|
||||||
@@ -70,30 +70,30 @@ func CalculateDepreciationFromDayRange(
|
|||||||
}
|
}
|
||||||
|
|
||||||
normalizedHouseType := NormalizeDepreciationHouseType(houseType)
|
normalizedHouseType := NormalizeDepreciationHouseType(houseType)
|
||||||
housePercent, exists := percentByHouseType[normalizedHouseType]
|
houseMult, exists := multiplicationByHouseType[normalizedHouseType]
|
||||||
if !exists {
|
if !exists {
|
||||||
return 0, 0, 0
|
return 0, 0, 0
|
||||||
}
|
}
|
||||||
|
|
||||||
current := initialPulletCost
|
current := initialPulletCost
|
||||||
pulletCostDayN := 0.0
|
|
||||||
depreciationValue := 0.0
|
|
||||||
depreciationPercent := 0.0
|
|
||||||
for day := startDay; day <= endDay; day++ {
|
for day := startDay; day <= endDay; day++ {
|
||||||
pct := housePercent[day]
|
mult, ok := houseMult[day]
|
||||||
dep := current * (pct / 100)
|
if !ok {
|
||||||
|
// No standard for this day → assume no depreciation (mult=1).
|
||||||
|
mult = 1.0
|
||||||
|
}
|
||||||
if day == endDay {
|
if day == endDay {
|
||||||
pulletCostDayN = current
|
pulletCostDayN = current
|
||||||
depreciationValue = dep
|
multiplicationPercentage = mult
|
||||||
depreciationPercent = pct
|
depreciationValue = current * (1.0 - mult)
|
||||||
}
|
}
|
||||||
current -= dep
|
current = current * mult
|
||||||
if current < 0 {
|
if current < 0 {
|
||||||
current = 0
|
current = 0
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return pulletCostDayN, depreciationValue, depreciationPercent
|
return pulletCostDayN, depreciationValue, multiplicationPercentage
|
||||||
}
|
}
|
||||||
|
|
||||||
func CalculateEffectiveDepreciationPercent(totalDepreciationValue, totalPulletCostDayN float64) float64 {
|
func CalculateEffectiveDepreciationPercent(totalDepreciationValue, totalPulletCostDayN float64) float64 {
|
||||||
|
|||||||
@@ -1191,27 +1191,73 @@ func (s *hppV2Service) getDepreciationComponent(
|
|||||||
}, nil
|
}, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Multi-source support: 1 target kandang bisa menerima dari MULTIPLE transfer terpisah
|
||||||
|
// (tiap transfer = 1 source kandang). Depresiasi per target = SUM dari per-transfer depresiasi.
|
||||||
|
// Setiap transfer dihitung dengan chick_in_date source-nya sendiri dan cost basis pro-rated
|
||||||
|
// berdasarkan qty share (transfer.qty / totalTransferQty).
|
||||||
|
transferInputs, err := s.hppRepo.GetAllTransferInputsByProjectFlockKandangID(context.Background(), projectFlockKandangId, periodDate)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
// Filter valid transfers (punya source flock id)
|
||||||
|
validTransfers := make([]commonRepo.HppV2LatestTransferInputRow, 0, len(transferInputs))
|
||||||
|
totalTransferQty := 0.0
|
||||||
|
for _, t := range transferInputs {
|
||||||
|
if t.SourceProjectFlockID == 0 {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
validTransfers = append(validTransfers, t)
|
||||||
|
totalTransferQty += t.TransferQty
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(validTransfers) > 0 {
|
||||||
if totalPulletCost <= 0 {
|
if totalPulletCost <= 0 {
|
||||||
return nil, nil
|
return nil, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
transferInput, err := s.hppRepo.GetLatestTransferInputByProjectFlockKandangID(context.Background(), projectFlockKandangId, periodDate)
|
totalDepreciation := 0.0
|
||||||
if err != nil {
|
parts := make([]HppV2ComponentPart, 0, len(validTransfers))
|
||||||
return nil, err
|
for i := range validTransfers {
|
||||||
|
t := validTransfers[i]
|
||||||
|
// Pro-rate cost basis per transfer berdasarkan qty share.
|
||||||
|
// CATATAN: pendekatan ini AKURAT kalau cost per ekor sama antar source flock.
|
||||||
|
// Kalau cost per ekor berbeda signifikan antar source, follow-up: refactor
|
||||||
|
// `buildGrowingUsagePart` untuk multi-source-flock cost computation.
|
||||||
|
transferCostBasis := totalPulletCost
|
||||||
|
if totalTransferQty > 0 && len(validTransfers) > 1 {
|
||||||
|
transferCostBasis = totalPulletCost * (t.TransferQty / totalTransferQty)
|
||||||
}
|
}
|
||||||
|
|
||||||
var part *HppV2ComponentPart
|
part, partErr := s.buildNormalTransferDepreciationPart(contextRow, &t, periodDate, transferCostBasis)
|
||||||
if transferInput != nil && transferInput.SourceProjectFlockID > 0 {
|
if partErr != nil {
|
||||||
part, err = s.buildNormalTransferDepreciationPart(contextRow, transferInput, periodDate, totalPulletCost)
|
return nil, partErr
|
||||||
|
}
|
||||||
|
if part == nil {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
totalDepreciation += part.Total
|
||||||
|
parts = append(parts, *part)
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(parts) == 0 {
|
||||||
|
return nil, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
return &HppV2Component{
|
||||||
|
Code: hppV2ComponentDepreciation,
|
||||||
|
Title: "Depreciation",
|
||||||
|
Scopes: []string{hppV2ScopeProductionCost},
|
||||||
|
Total: totalDepreciation,
|
||||||
|
Parts: parts,
|
||||||
|
}, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// Fallback: manual cut-over (kandang tanpa transfer record)
|
||||||
|
part, err := s.buildManualCutoverDepreciationPart(projectFlockKandangId, contextRow, periodDate, totalPulletCost)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
} else {
|
|
||||||
part, err = s.buildManualCutoverDepreciationPart(projectFlockKandangId, contextRow, periodDate, totalPulletCost)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if part == nil {
|
if part == nil {
|
||||||
return nil, nil
|
return nil, nil
|
||||||
}
|
}
|
||||||
@@ -1344,20 +1390,27 @@ func (s *hppV2Service) buildNormalTransferDepreciationPart(
|
|||||||
}
|
}
|
||||||
|
|
||||||
houseType := NormalizeDepreciationHouseType(contextRow.HouseType)
|
houseType := NormalizeDepreciationHouseType(contextRow.HouseType)
|
||||||
percentByHouseType, err := s.hppRepo.GetDepreciationPercents(context.Background(), []string{houseType}, scheduleDay)
|
multiplicationByHouseType, effectiveDates, err := s.hppRepo.GetMultiplicationPercentages(context.Background(), []string{houseType}, scheduleDay)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
pulletCostDayN, depreciationValue, depreciationPercent := CalculateDepreciationAtDayN(
|
pulletCostDayN, depreciationValue, multiplicationPercentage := CalculateDepreciationAtDayN(
|
||||||
totalPulletCost,
|
totalPulletCost,
|
||||||
scheduleDay,
|
scheduleDay,
|
||||||
contextRow.HouseType,
|
contextRow.HouseType,
|
||||||
percentByHouseType,
|
multiplicationByHouseType,
|
||||||
)
|
)
|
||||||
if depreciationValue <= 0 {
|
if depreciationValue <= 0 && pulletCostDayN <= 0 {
|
||||||
return nil, nil
|
return nil, nil
|
||||||
}
|
}
|
||||||
|
totalValueAfter := pulletCostDayN * multiplicationPercentage
|
||||||
|
depreciationPercent := (1.0 - multiplicationPercentage) * 100.0
|
||||||
|
|
||||||
|
var standardEffectiveDate string
|
||||||
|
if ed, ok := effectiveDates[houseType]; ok && ed != nil {
|
||||||
|
standardEffectiveDate = formatDateOnly(*ed)
|
||||||
|
}
|
||||||
|
|
||||||
return &HppV2ComponentPart{
|
return &HppV2ComponentPart{
|
||||||
Code: hppV2PartDepreciationNormal,
|
Code: hppV2PartDepreciationNormal,
|
||||||
@@ -1367,11 +1420,15 @@ func (s *hppV2Service) buildNormalTransferDepreciationPart(
|
|||||||
Details: map[string]any{
|
Details: map[string]any{
|
||||||
"basis_total": totalPulletCost,
|
"basis_total": totalPulletCost,
|
||||||
"pullet_cost_day_n": pulletCostDayN,
|
"pullet_cost_day_n": pulletCostDayN,
|
||||||
|
"multiplication_percentage": multiplicationPercentage,
|
||||||
|
"total_value_pullet_after_depreciation": totalValueAfter,
|
||||||
"depreciation_percent": depreciationPercent,
|
"depreciation_percent": depreciationPercent,
|
||||||
"schedule_day": scheduleDay,
|
"schedule_day": scheduleDay,
|
||||||
"origin_date": formatDateOnly(*originDate),
|
"origin_date": formatDateOnly(*originDate),
|
||||||
"transfer_date": formatDateOnly(transferInput.TransferDate),
|
"transfer_date": formatDateOnly(transferInput.TransferDate),
|
||||||
"source_project_flock_id": transferInput.SourceProjectFlockID,
|
"source_project_flock_id": transferInput.SourceProjectFlockID,
|
||||||
|
"standard_effective_date": standardEffectiveDate,
|
||||||
|
"kandang_population": transferInput.TransferQty,
|
||||||
},
|
},
|
||||||
References: []HppV2Reference{
|
References: []HppV2Reference{
|
||||||
{
|
{
|
||||||
@@ -1392,7 +1449,7 @@ func (s *hppV2Service) buildManualCutoverDepreciationPart(
|
|||||||
periodDate time.Time,
|
periodDate time.Time,
|
||||||
totalPulletCost float64,
|
totalPulletCost float64,
|
||||||
) (*HppV2ComponentPart, error) {
|
) (*HppV2ComponentPart, error) {
|
||||||
if contextRow == nil || totalPulletCost <= 0 {
|
if contextRow == nil {
|
||||||
return nil, nil
|
return nil, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1407,6 +1464,21 @@ func (s *hppV2Service) buildManualCutoverDepreciationPart(
|
|||||||
return nil, nil
|
return nil, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
populations, err := s.hppRepo.GetChickinPopulationByPFKForFarm(context.Background(), contextRow.ProjectFlockID)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
var totalPopulation float64
|
||||||
|
for _, qty := range populations {
|
||||||
|
totalPopulation += qty
|
||||||
|
}
|
||||||
|
kandangPopulation := populations[projectFlockKandangId]
|
||||||
|
if totalPopulation <= 0 || kandangPopulation <= 0 {
|
||||||
|
return nil, nil
|
||||||
|
}
|
||||||
|
populationShare := kandangPopulation / totalPopulation
|
||||||
|
basis := manualInput.TotalCost * populationShare
|
||||||
|
|
||||||
originDate, err := s.hppRepo.GetEarliestChickInDateByProjectFlockID(context.Background(), contextRow.ProjectFlockID)
|
originDate, err := s.hppRepo.GetEarliestChickInDateByProjectFlockID(context.Background(), contextRow.ProjectFlockID)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
@@ -1427,21 +1499,29 @@ func (s *hppV2Service) buildManualCutoverDepreciationPart(
|
|||||||
}
|
}
|
||||||
|
|
||||||
houseType := NormalizeDepreciationHouseType(contextRow.HouseType)
|
houseType := NormalizeDepreciationHouseType(contextRow.HouseType)
|
||||||
percentByHouseType, err := s.hppRepo.GetDepreciationPercents(context.Background(), []string{houseType}, reportScheduleDay)
|
multiplicationByHouseType, effectiveDates, err := s.hppRepo.GetMultiplicationPercentages(context.Background(), []string{houseType}, reportScheduleDay)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
pulletCostDayN, depreciationValue, depreciationPercent := CalculateDepreciationFromDayRange(
|
pulletCostDayN, depreciationValue, multiplicationPercentage := CalculateDepreciationFromDayRange(
|
||||||
totalPulletCost,
|
basis,
|
||||||
startDay,
|
startDay,
|
||||||
reportScheduleDay,
|
reportScheduleDay,
|
||||||
contextRow.HouseType,
|
contextRow.HouseType,
|
||||||
percentByHouseType,
|
multiplicationByHouseType,
|
||||||
)
|
)
|
||||||
if depreciationValue <= 0 {
|
if depreciationValue <= 0 && pulletCostDayN <= 0 {
|
||||||
return nil, nil
|
return nil, nil
|
||||||
}
|
}
|
||||||
|
totalValueAfter := pulletCostDayN * multiplicationPercentage
|
||||||
|
depreciationPercent := (1.0 - multiplicationPercentage) * 100.0
|
||||||
|
_ = totalPulletCost
|
||||||
|
|
||||||
|
var standardEffectiveDate string
|
||||||
|
if ed, ok := effectiveDates[houseType]; ok && ed != nil {
|
||||||
|
standardEffectiveDate = formatDateOnly(*ed)
|
||||||
|
}
|
||||||
|
|
||||||
return &HppV2ComponentPart{
|
return &HppV2ComponentPart{
|
||||||
Code: hppV2PartDepreciationCutover,
|
Code: hppV2PartDepreciationCutover,
|
||||||
@@ -1449,8 +1529,12 @@ func (s *hppV2Service) buildManualCutoverDepreciationPart(
|
|||||||
Scopes: []string{hppV2ScopeProductionCost},
|
Scopes: []string{hppV2ScopeProductionCost},
|
||||||
Total: depreciationValue,
|
Total: depreciationValue,
|
||||||
Details: map[string]any{
|
Details: map[string]any{
|
||||||
"basis_total": totalPulletCost,
|
"basis_total": basis,
|
||||||
|
"manual_input_total": manualInput.TotalCost,
|
||||||
|
"population_share": populationShare,
|
||||||
"pullet_cost_day_n": pulletCostDayN,
|
"pullet_cost_day_n": pulletCostDayN,
|
||||||
|
"multiplication_percentage": multiplicationPercentage,
|
||||||
|
"total_value_pullet_after_depreciation": totalValueAfter,
|
||||||
"depreciation_percent": depreciationPercent,
|
"depreciation_percent": depreciationPercent,
|
||||||
"schedule_day": reportScheduleDay,
|
"schedule_day": reportScheduleDay,
|
||||||
"start_schedule_day": startDay,
|
"start_schedule_day": startDay,
|
||||||
@@ -1458,6 +1542,8 @@ func (s *hppV2Service) buildManualCutoverDepreciationPart(
|
|||||||
"cutover_date": formatDateOnly(manualInput.CutoverDate),
|
"cutover_date": formatDateOnly(manualInput.CutoverDate),
|
||||||
"manual_input_id": manualInput.ID,
|
"manual_input_id": manualInput.ID,
|
||||||
"project_flock_kandang": projectFlockKandangId,
|
"project_flock_kandang": projectFlockKandangId,
|
||||||
|
"standard_effective_date": standardEffectiveDate,
|
||||||
|
"kandang_population": kandangPopulation,
|
||||||
},
|
},
|
||||||
References: []HppV2Reference{
|
References: []HppV2Reference{
|
||||||
{
|
{
|
||||||
@@ -1465,7 +1551,7 @@ func (s *hppV2Service) buildManualCutoverDepreciationPart(
|
|||||||
ID: manualInput.ID,
|
ID: manualInput.ID,
|
||||||
Date: formatDateOnly(manualInput.CutoverDate),
|
Date: formatDateOnly(manualInput.CutoverDate),
|
||||||
Qty: 1,
|
Qty: 1,
|
||||||
Total: totalPulletCost,
|
Total: manualInput.TotalCost,
|
||||||
AppliedTotal: depreciationValue,
|
AppliedTotal: depreciationValue,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
@@ -1724,7 +1810,7 @@ func partHasScope(part *HppV2ComponentPart, scope string) bool {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func dateOnly(value time.Time) time.Time {
|
func dateOnly(value time.Time) time.Time {
|
||||||
return time.Date(value.Year(), value.Month(), value.Day(), 0, 0, 0, 0, value.Location())
|
return time.Date(value.Year(), value.Month(), value.Day(), 0, 0, 0, 0, time.UTC)
|
||||||
}
|
}
|
||||||
|
|
||||||
func formatDateOnly(value time.Time) string {
|
func formatDateOnly(value time.Time) string {
|
||||||
|
|||||||
@@ -57,6 +57,14 @@ func (s *hppV2RepoStub) GetLatestTransferInputByProjectFlockKandangID(_ context.
|
|||||||
return s.latestTransferByPFK[projectFlockKandangId], nil
|
return s.latestTransferByPFK[projectFlockKandangId], nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (s *hppV2RepoStub) GetAllTransferInputsByProjectFlockKandangID(_ context.Context, projectFlockKandangId uint, _ time.Time) ([]commonRepo.HppV2LatestTransferInputRow, error) {
|
||||||
|
row := s.latestTransferByPFK[projectFlockKandangId]
|
||||||
|
if row == nil {
|
||||||
|
return []commonRepo.HppV2LatestTransferInputRow{}, nil
|
||||||
|
}
|
||||||
|
return []commonRepo.HppV2LatestTransferInputRow{*row}, nil
|
||||||
|
}
|
||||||
|
|
||||||
func (s *hppV2RepoStub) GetManualDepreciationInputByProjectFlockID(_ context.Context, projectFlockID uint) (*commonRepo.HppV2ManualDepreciationInputRow, error) {
|
func (s *hppV2RepoStub) GetManualDepreciationInputByProjectFlockID(_ context.Context, projectFlockID uint) (*commonRepo.HppV2ManualDepreciationInputRow, error) {
|
||||||
return s.manualInputByProject[projectFlockID], nil
|
return s.manualInputByProject[projectFlockID], nil
|
||||||
}
|
}
|
||||||
@@ -93,6 +101,19 @@ func (s *hppV2RepoStub) GetDepreciationPercents(_ context.Context, houseTypes []
|
|||||||
return result, nil
|
return result, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// GetMultiplicationPercentages — alias yang sama dengan GetDepreciationPercents untuk match
|
||||||
|
// interface HppV2CostRepository (interface dipakai method name baru ini).
|
||||||
|
func (s *hppV2RepoStub) GetMultiplicationPercentages(ctx context.Context, houseTypes []string, maxDay int) (map[string]map[int]float64, map[string]*time.Time, error) {
|
||||||
|
vals, err := s.GetDepreciationPercents(ctx, houseTypes, maxDay)
|
||||||
|
return vals, make(map[string]*time.Time), err
|
||||||
|
}
|
||||||
|
|
||||||
|
// GetChickinPopulationByPFKForFarm — return populasi per PFK dari satu project flock.
|
||||||
|
// Stub minimal: return empty map (depreciation manual cutover tidak di-test di sini).
|
||||||
|
func (s *hppV2RepoStub) GetChickinPopulationByPFKForFarm(_ context.Context, _ uint) (map[uint]float64, error) {
|
||||||
|
return map[uint]float64{}, nil
|
||||||
|
}
|
||||||
|
|
||||||
func (s *hppV2RepoStub) ListUsageCostRowsByProductFlags(_ context.Context, projectFlockKandangIDs []uint, flagNames []string, _ *time.Time) ([]commonRepo.HppV2UsageCostRow, error) {
|
func (s *hppV2RepoStub) ListUsageCostRowsByProductFlags(_ context.Context, projectFlockKandangIDs []uint, flagNames []string, _ *time.Time) ([]commonRepo.HppV2UsageCostRow, error) {
|
||||||
return append([]commonRepo.HppV2UsageCostRow{}, s.usageRowsByKey[stubKey(projectFlockKandangIDs, flagNames)]...), nil
|
return append([]commonRepo.HppV2UsageCostRow{}, s.usageRowsByKey[stubKey(projectFlockKandangIDs, flagNames)]...), nil
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -45,7 +45,16 @@ func ReleasePopulationConsumptionByUsable(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return stockAllocationRepo.ReleaseByUsable(ctx, usableType, usableID, nil, nil)
|
// Only release the PROJECT_FLOCK_POPULATION allocations here. Releasing the
|
||||||
|
// other CONSUME allocations of this usable (RECORDING_EGG, STOCK_TRANSFER_IN,
|
||||||
|
// PURCHASE_ITEMS, etc.) would orphan their stockable total_used because this
|
||||||
|
// path only restores total_used_qty for population lots — leaving the FIFO
|
||||||
|
// stock counters permanently inflated (phantom stock). Those stock
|
||||||
|
// allocations are owned by the FIFO Reflow/Rollback path, which decrements
|
||||||
|
// total_used correctly via adjustStockableUsedQuantity.
|
||||||
|
return stockAllocationRepo.ReleaseByUsable(ctx, usableType, usableID, nil, func(db *gorm.DB) *gorm.DB {
|
||||||
|
return db.Where("stockable_type = ?", fifo.StockableKeyProjectFlockPopulation.String())
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
func AllocatePopulationConsumption(
|
func AllocatePopulationConsumption(
|
||||||
|
|||||||
@@ -121,9 +121,12 @@ func init() {
|
|||||||
// Redis
|
// Redis
|
||||||
RedisURL = viper.GetString("REDIS_URL")
|
RedisURL = viper.GetString("REDIS_URL")
|
||||||
|
|
||||||
|
// TransferToLayingGrowingMaxWeek: batas umur (minggu dari chick_in) yang masih boleh ditransfer ke laying.
|
||||||
|
// Disatukan dengan depreciation_start_age_day = 175 hari = 25 minggu, agar konsisten antara batas transfer
|
||||||
|
// dan kapan depresiasi mulai berjalan.
|
||||||
TransferToLayingGrowingMaxWeek = viper.GetInt("TRANSFER_TO_LAYING_GROWING_MAX_WEEK")
|
TransferToLayingGrowingMaxWeek = viper.GetInt("TRANSFER_TO_LAYING_GROWING_MAX_WEEK")
|
||||||
if TransferToLayingGrowingMaxWeek <= 0 {
|
if TransferToLayingGrowingMaxWeek <= 0 {
|
||||||
TransferToLayingGrowingMaxWeek = 19
|
TransferToLayingGrowingMaxWeek = 25
|
||||||
}
|
}
|
||||||
|
|
||||||
// Object storage
|
// Object storage
|
||||||
|
|||||||
@@ -0,0 +1,8 @@
|
|||||||
|
-- IRREVERSIBLE migration: po_number lama (counter-based) tidak di-backup
|
||||||
|
-- saat UP karena user secara eksplisit pilih "tanpa backup table".
|
||||||
|
-- Down ini hanya raise notice supaya operator sadar harus restore dari
|
||||||
|
-- DB-level backup terpisah kalau memang perlu rollback.
|
||||||
|
DO $$
|
||||||
|
BEGIN
|
||||||
|
RAISE NOTICE 'WARNING: Migration 20260529143940_normalize_po_number_to_pr_pattern is irreversible. Original counter-based PO numbers were not backed up. Restore from DB-level backup if rollback is required.';
|
||||||
|
END $$;
|
||||||
@@ -0,0 +1,87 @@
|
|||||||
|
BEGIN;
|
||||||
|
|
||||||
|
-- ============================================================
|
||||||
|
-- Normalize purchases.po_number agar mengikuti pr_number (swap prefix).
|
||||||
|
-- Contoh: pr_number='PR-LTI-0050' -> po_number='PO-LTI-0050'
|
||||||
|
--
|
||||||
|
-- Konteks: sebelumnya pr_number dan po_number punya counter sequential
|
||||||
|
-- terpisah (lihat purchase.repository.go NextPrNumber / NextPoNumber yang
|
||||||
|
-- dihapus seiring migration ini), sehingga selalu diverge. Setelah
|
||||||
|
-- perubahan code (ApproveManagerPurchase derive PO dari PR), historis
|
||||||
|
-- perlu di-backfill supaya konsisten.
|
||||||
|
--
|
||||||
|
-- Juga update expenses.po_number (snapshot dari expense_bridge.go)
|
||||||
|
-- supaya konsisten dengan purchases.
|
||||||
|
--
|
||||||
|
-- Constraint uq_purchases_po_number adalah NOT DEFERRABLE (per-row check),
|
||||||
|
-- jadi single UPDATE bulk gagal di swap-conflict (contoh: row A mau jadi
|
||||||
|
-- 'PO-LTI-0700' tapi row B masih punya 'PO-LTI-0700' -> error 23505).
|
||||||
|
-- Solusi: capture target ke temp table, NULL dulu, baru set nilai derived.
|
||||||
|
--
|
||||||
|
-- IRREVERSIBLE: nilai po_number lama (counter-based) tidak di-backup.
|
||||||
|
-- Kalau ada kegagalan di tengah, COMMIT tidak terjadi -> ROLLBACK otomatis.
|
||||||
|
-- ============================================================
|
||||||
|
|
||||||
|
-- 1. Capture target IDs (snapshot rencana update — sebelum perubahan apapun)
|
||||||
|
CREATE TEMP TABLE _purchases_po_normalize_ids ON COMMIT DROP AS
|
||||||
|
SELECT id
|
||||||
|
FROM purchases
|
||||||
|
WHERE po_number IS NOT NULL
|
||||||
|
AND pr_number LIKE 'PR-LTI-%'
|
||||||
|
AND po_number <> REPLACE(pr_number, 'PR-LTI-', 'PO-LTI-');
|
||||||
|
|
||||||
|
-- 2. Update expenses DULU — join via current po_number masih valid sebelum step 3-4
|
||||||
|
UPDATE expenses e
|
||||||
|
SET po_number = REPLACE(p.pr_number, 'PR-LTI-', 'PO-LTI-')
|
||||||
|
FROM purchases p
|
||||||
|
JOIN _purchases_po_normalize_ids n ON n.id = p.id
|
||||||
|
WHERE e.po_number = p.po_number
|
||||||
|
AND e.po_number IS NOT NULL
|
||||||
|
AND e.po_number <> '';
|
||||||
|
|
||||||
|
-- 3. NULL-kan purchases.po_number untuk target — lepas constraint conflict
|
||||||
|
UPDATE purchases
|
||||||
|
SET po_number = NULL
|
||||||
|
WHERE id IN (SELECT id FROM _purchases_po_normalize_ids);
|
||||||
|
|
||||||
|
-- 4. Set nilai derived dari pr_number (sekarang aman karena slot lama sudah NULL)
|
||||||
|
UPDATE purchases p
|
||||||
|
SET po_number = REPLACE(p.pr_number, 'PR-LTI-', 'PO-LTI-')
|
||||||
|
FROM _purchases_po_normalize_ids n
|
||||||
|
WHERE p.id = n.id;
|
||||||
|
|
||||||
|
-- 5. Sanity check — fail (auto-rollback) kalau masih ada mismatch
|
||||||
|
DO $$
|
||||||
|
DECLARE
|
||||||
|
v_mismatch_purchases INT;
|
||||||
|
v_mismatch_expenses INT;
|
||||||
|
v_target_count INT;
|
||||||
|
BEGIN
|
||||||
|
SELECT COUNT(*) INTO v_target_count FROM _purchases_po_normalize_ids;
|
||||||
|
|
||||||
|
SELECT COUNT(*) INTO v_mismatch_purchases
|
||||||
|
FROM purchases
|
||||||
|
WHERE po_number IS NOT NULL
|
||||||
|
AND pr_number LIKE 'PR-LTI-%'
|
||||||
|
AND po_number <> REPLACE(pr_number, 'PR-LTI-', 'PO-LTI-');
|
||||||
|
|
||||||
|
IF v_mismatch_purchases > 0 THEN
|
||||||
|
RAISE EXCEPTION 'Normalize failed: % purchases rows still have mismatched po_number', v_mismatch_purchases;
|
||||||
|
END IF;
|
||||||
|
|
||||||
|
SELECT COUNT(*) INTO v_mismatch_expenses
|
||||||
|
FROM expenses e
|
||||||
|
JOIN purchases p ON e.po_number = p.po_number
|
||||||
|
WHERE p.pr_number LIKE 'PR-LTI-%'
|
||||||
|
AND e.po_number IS NOT NULL
|
||||||
|
AND e.po_number <> ''
|
||||||
|
AND e.po_number <> REPLACE(p.pr_number, 'PR-LTI-', 'PO-LTI-');
|
||||||
|
|
||||||
|
IF v_mismatch_expenses > 0 THEN
|
||||||
|
RAISE EXCEPTION 'Normalize failed: % expenses rows still have mismatched po_number', v_mismatch_expenses;
|
||||||
|
END IF;
|
||||||
|
|
||||||
|
RAISE NOTICE 'Normalize complete: % purchases rows updated', v_target_count;
|
||||||
|
END $$;
|
||||||
|
|
||||||
|
COMMIT;
|
||||||
+17
@@ -0,0 +1,17 @@
|
|||||||
|
-- Hapus open_house dan close_house rows dengan effective_date baru
|
||||||
|
DELETE FROM house_depreciation_standards
|
||||||
|
WHERE house_type IN ('open_house', 'close_house') AND effective_date = '2026-05-29';
|
||||||
|
|
||||||
|
-- Hapus kolom multiplication_percentage
|
||||||
|
ALTER TABLE house_depreciation_standards DROP COLUMN multiplication_percentage;
|
||||||
|
|
||||||
|
-- Invalidate snapshot cache
|
||||||
|
DELETE FROM farm_depreciation_snapshots;
|
||||||
|
|
||||||
|
-- Kembalikan unique constraint lama
|
||||||
|
ALTER TABLE house_depreciation_standards
|
||||||
|
DROP CONSTRAINT house_depreciation_standards_house_type_day_eff_unique;
|
||||||
|
|
||||||
|
ALTER TABLE house_depreciation_standards
|
||||||
|
ADD CONSTRAINT house_depreciation_standards_house_type_day_unique
|
||||||
|
UNIQUE (house_type, day);
|
||||||
+172
@@ -0,0 +1,172 @@
|
|||||||
|
-- Drop unique constraint lama (house_type, day) agar bisa support multi effective_date
|
||||||
|
ALTER TABLE house_depreciation_standards
|
||||||
|
DROP CONSTRAINT house_depreciation_standards_house_type_day_unique;
|
||||||
|
|
||||||
|
-- Unique baru: (house_type, day, effective_date)
|
||||||
|
-- NULL dianggap distinct di PostgreSQL → row lama (effective_date NULL) tidak konflik dengan row baru
|
||||||
|
ALTER TABLE house_depreciation_standards
|
||||||
|
ADD CONSTRAINT house_depreciation_standards_house_type_day_eff_unique
|
||||||
|
UNIQUE (house_type, day, effective_date);
|
||||||
|
|
||||||
|
-- Tambah kolom multiplication_percentage (nilai dari baris ke-3 Excel "Depresiasi 25 week.xlsx")
|
||||||
|
ALTER TABLE house_depreciation_standards
|
||||||
|
ADD COLUMN multiplication_percentage numeric(20,15) NOT NULL DEFAULT 0;
|
||||||
|
|
||||||
|
-- Isi multiplication_percentage untuk semua row existing (effective_date IS NULL)
|
||||||
|
-- Value diambil dari row 3 Excel: kolom A=day1 s/d TL=day532
|
||||||
|
UPDATE house_depreciation_standards AS hds
|
||||||
|
SET multiplication_percentage = v.val
|
||||||
|
FROM (VALUES
|
||||||
|
(1,0.997742664),(2,0.997737557),(3,0.997732426),(4,0.997727273),(5,0.997722096),
|
||||||
|
(6,0.997716895),(7,0.99771167),(8,0.997706422),(9,0.997701149),(10,0.997695853),
|
||||||
|
(11,0.997690531),(12,0.9977),(13,0.997679814),(14,0.997674419),(15,0.998),
|
||||||
|
(16,0.997997998),(17,0.997993982),(18,0.99798995),(19,0.997985901),(20,0.997981837),
|
||||||
|
(21,0.997977755),(22,0.997635934),(23,0.997630332),(24,0.997624703),(25,0.997619048),
|
||||||
|
(26,0.997613365),(27,0.997607656),(28,0.997601918),(29,0.997596154),(30,0.997590361),
|
||||||
|
(31,0.997584541),(32,0.997578692),(33,0.997572816),(34,0.99756691),(35,0.997560976),
|
||||||
|
(36,0.997555012),(37,0.99754902),(38,0.997542998),(39,0.997536946),(40,0.997530864),
|
||||||
|
(41,0.997524752),(42,0.99751861),(43,0.997867804),(44,0.997863248),(45,0.997858672),
|
||||||
|
(46,0.997854077),(47,0.997849462),(48,0.997844828),(49,0.997840173),(50,0.997474747),
|
||||||
|
(51,0.997468354),(52,0.997461929),(53,0.997455471),(54,0.99744898),(55,0.997442455),
|
||||||
|
(56,0.997435897),(57,0.997429306),(58,0.99742268),(59,0.997416021),(60,0.997409326),
|
||||||
|
(61,0.997402597),(62,0.997395833),(63,0.997389034),(64,0.997756171),(65,0.997751124),
|
||||||
|
(66,0.997746056),(67,0.997740964),(68,0.997735849),(69,0.997730711),(70,0.99772555),
|
||||||
|
(71,0.997340426),(72,0.997333333),(73,0.997326203),(74,0.997319035),(75,0.997311828),
|
||||||
|
(76,0.997304582),(77,0.9972973),(78,0.99767712),(79,0.99767171),(80,0.99766628),
|
||||||
|
(81,0.99766082),(82,0.99765533),(83,0.99764982),(84,0.997644287),(85,0.997245179),
|
||||||
|
(86,0.997237569),(87,0.997229917),(88,0.997222222),(89,0.997214485),(90,0.997206704),
|
||||||
|
(91,0.99719888),(92,0.997191011),(93,0.997183099),(94,0.997175141),(95,0.997167139),
|
||||||
|
(96,0.997159091),(97,0.997150997),(98,0.997142857),(99,0.997544003),(100,0.997537957),
|
||||||
|
(101,0.99753188),(102,0.997525773),(103,0.997519636),(104,0.997513469),(105,0.99750727),
|
||||||
|
(106,0.997084548),(107,0.997076023),(108,0.997067449),(109,0.997058824),(110,0.997050147),
|
||||||
|
(111,0.99704142),(112,0.997032641),(113,0.99744898),(114,0.997442455),(115,0.997435897),
|
||||||
|
(116,0.997429306),(117,0.99742268),(118,0.997416021),(119,0.997409326),(120,0.996969697),
|
||||||
|
(121,0.996960486),(122,0.99695122),(123,0.996941896),(124,0.996932515),(125,0.996923077),
|
||||||
|
(126,0.99691358),(127,0.997346307),(128,0.997339246),(129,0.997332148),(130,0.997325011),
|
||||||
|
(131,0.997317836),(132,0.997310623),(133,0.997303371),(134,0.996845426),(135,0.996835443),
|
||||||
|
(136,0.996825397),(137,0.996815287),(138,0.996805112),(139,0.996794872),(140,0.996784566),
|
||||||
|
(141,0.997235023),(142,0.997227357),(143,0.997219648),(144,0.997211896),(145,0.997204101),
|
||||||
|
(146,0.997196262),(147,0.997188379),(148,0.996710526),(149,0.99669967),(150,0.996688742),
|
||||||
|
(151,0.996677741),(152,0.996666667),(153,0.996655518),(154,0.996644295),(155,0.997113997),
|
||||||
|
(156,0.997105644),(157,0.997097242),(158,0.997088792),(159,0.997080292),(160,0.997071742),
|
||||||
|
(161,0.997063142),(162,0.997054492),(163,0.99704579),(164,0.997037037),(165,0.997028232),
|
||||||
|
(166,0.997019374),(167,0.997010463),(168,0.997001499),(169,0.996491228),(170,0.996478873),
|
||||||
|
(171,0.996466431),(172,0.996453901),(173,0.996441281),(174,0.996428571),(175,0.996415771),
|
||||||
|
(176,0.996916752),(177,0.996907216),(178,0.996897622),(179,0.996887967),(180,0.996878252),
|
||||||
|
(181,0.996868476),(182,0.996858639),(183,0.996848739),(184,0.996838778),(185,0.996828753),
|
||||||
|
(186,0.996818664),(187,0.996808511),(188,0.996798292),(189,0.996788009),(190,0.996240602),
|
||||||
|
(191,0.996226415),(192,0.996212121),(193,0.996197719),(194,0.996183206),(195,0.996168582),
|
||||||
|
(196,0.996153846),(197,0.996690568),(198,0.996679579),(199,0.996668517),(200,0.996657382),
|
||||||
|
(201,0.996646171),(202,0.996634885),(203,0.996623523),(204,0.996612084),(205,0.996600567),
|
||||||
|
(206,0.996588971),(207,0.996577296),(208,0.996565541),(209,0.996553705),(210,0.996541787),
|
||||||
|
(211,0.996529786),(212,0.996517702),(213,0.996505533),(214,0.996493279),(215,0.996480938),
|
||||||
|
(216,0.996468511),(217,0.996455995),(218,0.996443391),(219,0.996430696),(220,0.99641791),
|
||||||
|
(221,0.996405033),(222,0.996392063),(223,0.996378998),(224,0.996365839),(225,0.995744681),
|
||||||
|
(226,0.995726496),(227,0.995708155),(228,0.995689655),(229,0.995670996),(230,0.995652174),
|
||||||
|
(231,0.995633188),(232,0.996240602),(233,0.996226415),(234,0.996212121),(235,0.996197719),
|
||||||
|
(236,0.996183206),(237,0.996168582),(238,0.996153846),(239,0.9961389960),(240,0.996124031),
|
||||||
|
(241,0.996108949),(242,0.99609375),(243,0.996078431),(244,0.996062992),(245,0.996047431),
|
||||||
|
(246,0.996031746),(247,0.996015936),(248,0.996),(249,0.995983936),(250,0.995967742),
|
||||||
|
(251,0.995951417),(252,0.995934959),(253,0.995918367),(254,0.995901639),(255,0.995884774),
|
||||||
|
(256,0.995867769),(257,0.995850622),(258,0.995833333),(259,0.9958158999),(260,0.995798319),
|
||||||
|
(261,0.995780591),(262,0.995762712),(263,0.995744681),(264,0.995726496),(265,0.995708155),
|
||||||
|
(266,0.995689655),(267,0.995670996),(268,0.995652174),(269,0.995633188),(270,0.995614035),
|
||||||
|
(271,0.995594714),(272,0.995575221),(273,0.995555556),(274,0.995535714),(275,0.995515695),
|
||||||
|
(276,0.995495495),(277,0.995475113),(278,0.995454545),(279,0.99543379),(280,0.995412844),
|
||||||
|
(281,0.995391705),(282,0.99537037),(283,0.995348837),(284,0.995327103),(285,0.995305164),
|
||||||
|
(286,0.995282919),(287,0.995260664),(288,0.996031746),(289,0.996015936),(290,0.996),
|
||||||
|
(291,0.995983936),(292,0.995967742),(293,0.995951417),(294,0.995934959),(295,0.995102041),
|
||||||
|
(296,0.995077933),(297,0.995053586),(298,0.995028998),(299,0.995004163),(300,0.994979079),
|
||||||
|
(301,0.994953743),(302,0.994928149),(303,0.994902294),(304,0.994876174),(305,0.994849785),
|
||||||
|
(306,0.994823123),(307,0.994796184),(308,0.994768963),(309,0.994741455),(310,0.994713656),
|
||||||
|
(311,0.994685562),(312,0.994657168),(313,0.994628469),(314,0.99459946),(315,0.994570136),
|
||||||
|
(316,0.994540491),(317,0.994510522),(318,0.994480221),(319,0.994449584),(320,0.994418605),
|
||||||
|
(321,0.994387278),(322,0.994355597),(323,0.995269631),(324,0.995247148),(325,0.995224451),
|
||||||
|
(326,0.995201536),(327,0.995178399),(328,0.995155039),(329,0.995131451),(330,0.994129159),
|
||||||
|
(331,0.994094488),(332,0.994059406),(333,0.994023904),(334,0.993987976),(335,0.993951613),
|
||||||
|
(336,0.993914807),(337,0.994897959),(338,0.994871795),(339,0.994845361),(340,0.994818653),
|
||||||
|
(341,0.994791667),(342,0.994764398),(343,0.994736842),(344,0.993650794),(345,0.993610224),
|
||||||
|
(346,0.993569132),(347,0.993527508),(348,0.993484342),(349,0.993442623),(350,0.99339934),
|
||||||
|
(351,0.993355482),(352,0.993311037),(353,0.993265993),(354,0.993220339),(355,0.993174061),
|
||||||
|
(356,0.993127148),(357,0.993079585),(358,0.994192799),(359,0.994158879),(360,0.994124559),
|
||||||
|
(361,0.994089835),(362,0.994054697),(363,0.994019139),(364,0.993983153),(365,0.992736077),
|
||||||
|
(366,0.992682927),(367,0.992628993),(368,0.992574257),(369,0.992518703),(370,0.992462312),
|
||||||
|
(371,0.992405063),(372,0.993622449),(373,0.993581515),(374,0.993540052),(375,0.993498049),
|
||||||
|
(376,0.993455497),(377,0.993412385),(378,0.9933687),(379,0.993324433),(380,0.99327957),
|
||||||
|
(381,0.9932341),(382,0.993188011),(383,0.993141289),(384,0.993093923),(385,0.993045897),
|
||||||
|
(386,0.991596639),(387,0.991525424),(388,0.991452991),(389,0.99137931),(390,0.991304348),
|
||||||
|
(391,0.99122807),(392,0.991150442),(393,0.992559524),(394,0.992503748),(395,0.99244713),
|
||||||
|
(396,0.99238965),(397,0.992331288),(398,0.992272025),(399,0.992211838),(400,0.992150706),
|
||||||
|
(401,0.992088608),(402,0.992025518),(403,0.991961415),(404,0.991896272),(405,0.991830065),
|
||||||
|
(406,0.991762768),(407,0.991694352),(408,0.991624791),(409,0.991554054),(410,0.991482112),
|
||||||
|
(411,0.991408935),(412,0.991334489),(413,0.991258741),(414,0.989417989),(415,0.989304813),
|
||||||
|
(416,0.989189189),(417,0.989071038),(418,0.988950276),(419,0.988826816),(420,0.988700565),
|
||||||
|
(421,0.99047619),(422,0.990384615),(423,0.990291262),(424,0.990196078),(425,0.99009901),
|
||||||
|
(426,0.99),(427,0.98989899),(428,0.989795918),(429,0.989690722),(430,0.989583333),
|
||||||
|
(431,0.989473684),(432,0.989361702),(433,0.989247312),(434,0.989130435),(435,0.989010989),
|
||||||
|
(436,0.988888889),(437,0.988764045),(438,0.988636364),(439,0.988505747),(440,0.988372093),
|
||||||
|
(441,0.988235294),(442,0.988095238),(443,0.987951807),(444,0.987804878),(445,0.987654321),
|
||||||
|
(446,0.9875),(447,0.987341772),(448,0.987179487),(449,0.987012987),(450,0.986842105),
|
||||||
|
(451,0.986666667),(452,0.986486486),(453,0.98630137),(454,0.986111111),(455,0.985915493),
|
||||||
|
(456,0.985714286),(457,0.985507246),(458,0.985294118),(459,0.985074627),(460,0.984848485),
|
||||||
|
(461,0.984615385),(462,0.984375),(463,0.987301587),(464,0.987138264),(465,0.986970684),
|
||||||
|
(466,0.98679868),(467,0.986622074),(468,0.986440678),(469,0.986254296),(470,0.982578397),
|
||||||
|
(471,0.982269504),(472,0.981949458),(473,0.981617647),(474,0.981273408),(475,0.980916031),
|
||||||
|
(476,0.980544747),(477,0.98015873),(478,0.979757085),(479,0.979338843),(480,0.978902954),
|
||||||
|
(481,0.978448276),(482,0.977973568),(483,0.977477477),(484,0.976958525),(485,0.976415094),
|
||||||
|
(486,0.975845411),(487,0.975247525),(488,0.974619289),(489,0.973958333),(490,0.973262032),
|
||||||
|
(491,0.978021978),(492,0.97752809),(493,0.977011494),(494,0.976470588),(495,0.975903614),
|
||||||
|
(496,0.975308642),(497,0.974683544),(498,0.967532468),(499,0.966442953),(500,0.965277778),
|
||||||
|
(501,0.964028777),(502,0.962686567),(503,0.96124031),(504,0.959677419),(505,0.966386555),
|
||||||
|
(506,0.965217391),(507,0.963963964),(508,0.962616822),(509,0.961165049),(510,0.95959596),
|
||||||
|
(511,0.957894737),(512,0.945054945),(513,0.941860465),(514,0.938271605),(515,0.934210526),
|
||||||
|
(516,0.929577465),(517,0.924242424),(518,0.918032787),(519,0.928571429),(520,0.923076923),
|
||||||
|
(521,0.916666667),(522,0.909090909),(523,0.9),(524,0.888888889),(525,0.875),
|
||||||
|
(526,0.857142857),(527,0.833333333),(528,0.8),(529,0.75),(530,0.666666667),
|
||||||
|
(531,0.5),(532,9.11e-12)
|
||||||
|
) AS v(day_num, val)
|
||||||
|
WHERE hds.day = v.day_num;
|
||||||
|
|
||||||
|
-- Insert open_house baru dengan effective_date 2026-05-20
|
||||||
|
-- multiplication_percentage diambil dari row existing (sudah di-UPDATE di step sebelumnya)
|
||||||
|
INSERT INTO house_depreciation_standards
|
||||||
|
(house_type, day, effective_date, depreciation_percent, standard_week, name, multiplication_percentage)
|
||||||
|
SELECT
|
||||||
|
'open_house'::house_type_enum,
|
||||||
|
day,
|
||||||
|
'2026-05-29'::date,
|
||||||
|
depreciation_percent,
|
||||||
|
25,
|
||||||
|
'Standard Open House Week 25',
|
||||||
|
multiplication_percentage
|
||||||
|
FROM (
|
||||||
|
SELECT DISTINCT ON (day)
|
||||||
|
day, depreciation_percent, multiplication_percentage
|
||||||
|
FROM house_depreciation_standards
|
||||||
|
WHERE house_type = 'open_house'
|
||||||
|
ORDER BY day, effective_date DESC NULLS LAST
|
||||||
|
) effective_open_house;
|
||||||
|
|
||||||
|
|
||||||
|
-- Insert close_house baru dengan effective_date 2026-05-29
|
||||||
|
-- multiplication_percentage diambil dari row existing (sudah di-UPDATE di step sebelumnya)
|
||||||
|
INSERT INTO house_depreciation_standards
|
||||||
|
(house_type, day, effective_date, depreciation_percent, standard_week, name, multiplication_percentage)
|
||||||
|
SELECT
|
||||||
|
'close_house'::house_type_enum,
|
||||||
|
day,
|
||||||
|
'2026-05-29'::date,
|
||||||
|
depreciation_percent,
|
||||||
|
25,
|
||||||
|
'Standard Close House Week 25',
|
||||||
|
multiplication_percentage
|
||||||
|
FROM (
|
||||||
|
SELECT DISTINCT ON (day)
|
||||||
|
day, depreciation_percent, multiplication_percentage
|
||||||
|
FROM house_depreciation_standards
|
||||||
|
WHERE house_type = 'open_house'
|
||||||
|
ORDER BY day, effective_date DESC NULLS LAST
|
||||||
|
) effective_close_house;
|
||||||
|
|
||||||
|
-- Invalidate snapshot cache depreciation agar recompute dengan standard baru
|
||||||
|
DELETE FROM farm_depreciation_snapshots;
|
||||||
+22
@@ -0,0 +1,22 @@
|
|||||||
|
-- Rollback: balik ke rule lama (19 minggu = 133 hari)
|
||||||
|
|
||||||
|
BEGIN;
|
||||||
|
|
||||||
|
UPDATE laying_transfers lt
|
||||||
|
SET economic_cutoff_date = sub.cutoff_date,
|
||||||
|
updated_at = NOW()
|
||||||
|
FROM (
|
||||||
|
SELECT
|
||||||
|
lt2.id AS transfer_id,
|
||||||
|
(MIN(pc.chick_in_date)::date + INTERVAL '133 days')::date AS cutoff_date
|
||||||
|
FROM laying_transfers lt2
|
||||||
|
JOIN project_chickins pc ON pc.project_flock_kandang_id = lt2.source_project_flock_kandang_id
|
||||||
|
WHERE lt2.deleted_at IS NULL
|
||||||
|
AND lt2.source_project_flock_kandang_id IS NOT NULL
|
||||||
|
AND pc.deleted_at IS NULL
|
||||||
|
GROUP BY lt2.id
|
||||||
|
) sub
|
||||||
|
WHERE lt.id = sub.transfer_id
|
||||||
|
AND lt.deleted_at IS NULL;
|
||||||
|
|
||||||
|
COMMIT;
|
||||||
+24
@@ -0,0 +1,24 @@
|
|||||||
|
-- Recalculate laying_transfers.economic_cutoff_date dari rule 19 minggu (lama) ke 25 minggu (baru,
|
||||||
|
-- sejalan dengan depreciation_start_age_day = 175). Semua transfer historis yang punya
|
||||||
|
-- source_project_flock_kandang_id akan di-update agar economic_cutoff_date = source.chick_in_date + 175 hari.
|
||||||
|
|
||||||
|
BEGIN;
|
||||||
|
|
||||||
|
UPDATE laying_transfers lt
|
||||||
|
SET economic_cutoff_date = sub.cutoff_date,
|
||||||
|
updated_at = NOW()
|
||||||
|
FROM (
|
||||||
|
SELECT
|
||||||
|
lt2.id AS transfer_id,
|
||||||
|
(MIN(pc.chick_in_date)::date + INTERVAL '175 days')::date AS cutoff_date
|
||||||
|
FROM laying_transfers lt2
|
||||||
|
JOIN project_chickins pc ON pc.project_flock_kandang_id = lt2.source_project_flock_kandang_id
|
||||||
|
WHERE lt2.deleted_at IS NULL
|
||||||
|
AND lt2.source_project_flock_kandang_id IS NOT NULL
|
||||||
|
AND pc.deleted_at IS NULL
|
||||||
|
GROUP BY lt2.id
|
||||||
|
) sub
|
||||||
|
WHERE lt.id = sub.transfer_id
|
||||||
|
AND lt.deleted_at IS NULL;
|
||||||
|
|
||||||
|
COMMIT;
|
||||||
+14
@@ -0,0 +1,14 @@
|
|||||||
|
-- Rollback total_cost ke nilai sebelum migration
|
||||||
|
UPDATE farm_depreciation_manual_inputs
|
||||||
|
SET total_cost = 562618200.000,
|
||||||
|
updated_at = NOW()
|
||||||
|
WHERE project_flock_id = 10;
|
||||||
|
|
||||||
|
UPDATE farm_depreciation_manual_inputs
|
||||||
|
SET total_cost = 598552406.000,
|
||||||
|
updated_at = NOW()
|
||||||
|
WHERE project_flock_id = 11;
|
||||||
|
|
||||||
|
-- Snapshot lama tidak bisa di-restore — biarkan kosong, recompute otomatis
|
||||||
|
-- saat user request endpoint depresiasi
|
||||||
|
TRUNCATE TABLE farm_depreciation_snapshots;
|
||||||
+21
@@ -0,0 +1,21 @@
|
|||||||
|
-- Update total_cost farm_depreciation_manual_inputs untuk PFK 10 & 11
|
||||||
|
-- per permintaan user (cutover 28 Feb 2026)
|
||||||
|
--
|
||||||
|
-- PFK 10 (Flock Jamali 003) : 562.618.200,000 -> 1.900.157.533,55
|
||||||
|
-- PFK 11 (Flock Tamansari 001) : 598.552.406,000 -> 2.521.797.832,14
|
||||||
|
|
||||||
|
UPDATE farm_depreciation_manual_inputs
|
||||||
|
SET total_cost = 1900157533.55,
|
||||||
|
cutover_date = DATE '2026-02-28',
|
||||||
|
updated_at = NOW()
|
||||||
|
WHERE project_flock_id = 10;
|
||||||
|
|
||||||
|
UPDATE farm_depreciation_manual_inputs
|
||||||
|
SET total_cost = 2521797832.14,
|
||||||
|
cutover_date = DATE '2026-02-28',
|
||||||
|
updated_at = NOW()
|
||||||
|
WHERE project_flock_id = 11;
|
||||||
|
|
||||||
|
-- Pengaman: pastikan snapshot di-recompute dengan total_cost baru
|
||||||
|
-- saat user request /api/reports/expense/depreciation
|
||||||
|
TRUNCATE TABLE farm_depreciation_snapshots;
|
||||||
@@ -72,6 +72,7 @@ func (u *DeliveryOrdersController) GetAll(c *fiber.Ctx) error {
|
|||||||
MarketingId: uint(c.QueryInt("marketing_id", 0)),
|
MarketingId: uint(c.QueryInt("marketing_id", 0)),
|
||||||
ProjectFlockID: uint(c.QueryInt("project_flock_id", 0)),
|
ProjectFlockID: uint(c.QueryInt("project_flock_id", 0)),
|
||||||
ProjectFlockKandangID: uint(c.QueryInt("project_flock_kandang_id", 0)),
|
ProjectFlockKandangID: uint(c.QueryInt("project_flock_kandang_id", 0)),
|
||||||
|
WarehouseID: uint(c.QueryInt("warehouse_id", 0)),
|
||||||
SortBy: sortBy,
|
SortBy: sortBy,
|
||||||
SortOrder: sortOrder,
|
SortOrder: sortOrder,
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -70,23 +70,26 @@ func buildMarketingExportWorkbook(items []dto.MarketingListDTO) ([]byte, error)
|
|||||||
}
|
}
|
||||||
|
|
||||||
func setMarketingExportColumns(file *excelize.File, sheet string) error {
|
func setMarketingExportColumns(file *excelize.File, sheet string) error {
|
||||||
|
// A–Q = 17 columns
|
||||||
|
// E = Sales (new), H = Gudang (new), Satuan (old I) removed
|
||||||
columnWidths := map[string]float64{
|
columnWidths := map[string]float64{
|
||||||
"A": 16,
|
"A": 16, // No. Order
|
||||||
"B": 14,
|
"B": 14, // Tanggal
|
||||||
"C": 18,
|
"C": 18, // Status
|
||||||
"D": 20,
|
"D": 20, // Customer
|
||||||
"E": 14,
|
"E": 20, // Sales (new)
|
||||||
"F": 40,
|
"F": 14, // Tipe
|
||||||
"G": 10,
|
"G": 40, // Nama Produk
|
||||||
"H": 12,
|
"H": 20, // Gudang (new)
|
||||||
"I": 12,
|
"I": 10, // Week
|
||||||
"J": 12,
|
"J": 12, // Jumlah
|
||||||
"K": 16,
|
"K": 12, // Qty Peti
|
||||||
"L": 16,
|
"L": 16, // Berat Rata-rata (kg)
|
||||||
"M": 18,
|
"M": 16, // Total Berat (kg)
|
||||||
"N": 18,
|
"N": 18, // Harga Satuan
|
||||||
"O": 18,
|
"O": 18, // Total Harga
|
||||||
"P": 24,
|
"P": 18, // Grand Total
|
||||||
|
"Q": 24, // Catatan
|
||||||
}
|
}
|
||||||
|
|
||||||
for col, width := range columnWidths {
|
for col, width := range columnWidths {
|
||||||
@@ -108,18 +111,19 @@ func setMarketingExportHeaders(file *excelize.File, sheet string) error {
|
|||||||
"Tanggal", // B
|
"Tanggal", // B
|
||||||
"Status", // C
|
"Status", // C
|
||||||
"Customer", // D
|
"Customer", // D
|
||||||
"Tipe", // E
|
"Sales", // E (new)
|
||||||
"Nama Produk", // F
|
"Tipe", // F
|
||||||
"Week", // G
|
"Nama Produk", // G
|
||||||
"Jumlah", // H
|
"Gudang", // H (new)
|
||||||
"Satuan", // I
|
"Week", // I
|
||||||
"Qty Peti", // J
|
"Jumlah Butir", // J
|
||||||
"Berat Rata-rata (kg)", // K
|
"Qty Peti", // K
|
||||||
"Total Berat (kg)", // L
|
"Berat Rata-rata (kg)", // L
|
||||||
"Harga Satuan", // M
|
"Total Berat (kg)", // M
|
||||||
"Total Harga", // N
|
"Harga Satuan", // N
|
||||||
"Grand Total", // O
|
"Total Harga", // O
|
||||||
"Catatan", // P
|
"Grand Total", // P
|
||||||
|
"Catatan", // Q
|
||||||
}
|
}
|
||||||
|
|
||||||
for i, header := range headers {
|
for i, header := range headers {
|
||||||
@@ -148,7 +152,7 @@ func setMarketingExportHeaders(file *excelize.File, sheet string) error {
|
|||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
return file.SetCellStyle(sheet, "A1", "P1", headerStyle)
|
return file.SetCellStyle(sheet, "A1", "Q1", headerStyle)
|
||||||
}
|
}
|
||||||
|
|
||||||
func setMarketingExportRows(file *excelize.File, sheet string, items []dto.MarketingListDTO) error {
|
func setMarketingExportRows(file *excelize.File, sheet string, items []dto.MarketingListDTO) error {
|
||||||
@@ -162,17 +166,161 @@ func setMarketingExportRows(file *excelize.File, sheet string, items []dto.Marke
|
|||||||
soDate := formatMarketingExportDate(item.SoDate)
|
soDate := formatMarketingExportDate(item.SoDate)
|
||||||
status := formatMarketingExportStatus(item)
|
status := formatMarketingExportStatus(item)
|
||||||
customer := safeMarketingExportText(item.Customer.Name)
|
customer := safeMarketingExportText(item.Customer.Name)
|
||||||
grandTotal := sumMarketingGrandTotal(item.SalesOrder)
|
|
||||||
notes := safeMarketingExportText(item.Notes)
|
notes := safeMarketingExportText(item.Notes)
|
||||||
|
salesPerson := safeMarketingExportText(item.SalesPerson.Name)
|
||||||
|
|
||||||
|
isDeliveryOrder := strings.EqualFold(strings.TrimSpace(status), "delivery order")
|
||||||
|
|
||||||
|
// ── Delivery Order branch ──────────────────────────────────────────────
|
||||||
|
if isDeliveryOrder {
|
||||||
|
grandTotal := sumDeliveryGrandTotal(item.DeliveryOrder)
|
||||||
|
|
||||||
|
if len(item.DeliveryOrder) == 0 {
|
||||||
|
row++
|
||||||
|
r := strconv.Itoa(row)
|
||||||
|
vals := map[string]interface{}{
|
||||||
|
"A": soNumber, "B": soDate, "C": status, "D": customer, "E": salesPerson,
|
||||||
|
"F": "-", "G": "-", "H": "-", "I": "-", "J": "-", "K": "-",
|
||||||
|
"L": "-", "M": "-", "N": "-", "O": "-",
|
||||||
|
"P": grandTotal, "Q": notes,
|
||||||
|
}
|
||||||
|
for col, val := range vals {
|
||||||
|
if err := file.SetCellValue(sheet, col+r, val); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
// Build lookup map: MarketingProductId → SO product (for Week & MarketingType)
|
||||||
|
soProductMap := make(map[uint]*dto.DeliveryMarketingProductDTO, len(item.SalesOrder))
|
||||||
|
for i := range item.SalesOrder {
|
||||||
|
soProductMap[item.SalesOrder[i].Id] = &item.SalesOrder[i]
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, group := range item.DeliveryOrder {
|
||||||
|
doNumber := safeMarketingExportText(group.DoNumber)
|
||||||
|
|
||||||
|
doDate := "-"
|
||||||
|
if group.DeliveryDate != nil {
|
||||||
|
doDate = formatMarketingExportDate(*group.DeliveryDate)
|
||||||
|
}
|
||||||
|
|
||||||
|
gudang := "-"
|
||||||
|
if group.Warehouse != nil {
|
||||||
|
gudang = safeMarketingExportText(group.Warehouse.Name)
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(group.Deliveries) == 0 {
|
||||||
|
row++
|
||||||
|
r := strconv.Itoa(row)
|
||||||
|
vals := map[string]interface{}{
|
||||||
|
"A": doNumber, "B": doDate, "C": status, "D": customer, "E": salesPerson,
|
||||||
|
"F": "-", "G": "-", "H": gudang, "I": "-", "J": "-", "K": "-",
|
||||||
|
"L": "-", "M": "-", "N": "-", "O": "-",
|
||||||
|
"P": grandTotal, "Q": notes,
|
||||||
|
}
|
||||||
|
for col, val := range vals {
|
||||||
|
if err := file.SetCellValue(sheet, col+r, val); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, delivery := range group.Deliveries {
|
||||||
|
row++
|
||||||
|
r := strconv.Itoa(row)
|
||||||
|
|
||||||
|
productName := "-"
|
||||||
|
if delivery.ProductWarehouse != nil && delivery.ProductWarehouse.Product != nil {
|
||||||
|
if n := strings.TrimSpace(delivery.ProductWarehouse.Product.Name); n != "" {
|
||||||
|
productName = n
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
week := "-"
|
||||||
|
marketingType := "-"
|
||||||
|
if soProduct, ok := soProductMap[delivery.MarketingProductId]; ok {
|
||||||
|
if soProduct.Week != nil {
|
||||||
|
week = strconv.Itoa(*soProduct.Week)
|
||||||
|
}
|
||||||
|
marketingType = safeMarketingExportText(soProduct.MarketingType)
|
||||||
|
}
|
||||||
|
|
||||||
|
if err := file.SetCellValue(sheet, "A"+r, doNumber); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
if err := file.SetCellValue(sheet, "B"+r, doDate); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
if err := file.SetCellValue(sheet, "C"+r, status); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
if err := file.SetCellValue(sheet, "D"+r, customer); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
if err := file.SetCellValue(sheet, "E"+r, salesPerson); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
if err := file.SetCellValue(sheet, "F"+r, marketingType); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
if err := file.SetCellValue(sheet, "G"+r, productName); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
if err := file.SetCellValue(sheet, "H"+r, gudang); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
if err := file.SetCellValue(sheet, "I"+r, week); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
if err := file.SetCellValue(sheet, "J"+r, delivery.Qty); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
if delivery.TotalPeti != nil {
|
||||||
|
if err := file.SetCellValue(sheet, "K"+r, *delivery.TotalPeti); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if err := file.SetCellValue(sheet, "K"+r, "-"); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if err := file.SetCellValue(sheet, "L"+r, delivery.AvgWeight); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
if err := file.SetCellValue(sheet, "M"+r, delivery.TotalWeight); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
if err := file.SetCellValue(sheet, "N"+r, delivery.UnitPrice); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
if err := file.SetCellValue(sheet, "O"+r, delivery.TotalPrice); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
if err := file.SetCellValue(sheet, "P"+r, grandTotal); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
if err := file.SetCellValue(sheet, "Q"+r, notes); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
// ── Sales Order branch (all other statuses) ───────────────────────────
|
||||||
|
grandTotal := sumMarketingGrandTotal(item.SalesOrder)
|
||||||
|
|
||||||
if len(item.SalesOrder) == 0 {
|
if len(item.SalesOrder) == 0 {
|
||||||
row++
|
row++
|
||||||
r := strconv.Itoa(row)
|
r := strconv.Itoa(row)
|
||||||
vals := map[string]interface{}{
|
vals := map[string]interface{}{
|
||||||
"A": soNumber, "B": soDate, "C": status, "D": customer,
|
"A": soNumber, "B": soDate, "C": status, "D": customer, "E": salesPerson,
|
||||||
"E": "-", "F": "-", "G": "-", "H": "-", "I": "-", "J": "-",
|
"F": "-", "G": "-", "H": "-", "I": "-", "J": "-", "K": "-",
|
||||||
"K": "-", "L": "-", "M": "-", "N": "-",
|
"L": "-", "M": "-", "N": "-", "O": "-",
|
||||||
"O": grandTotal, "P": notes,
|
"P": grandTotal, "Q": notes,
|
||||||
}
|
}
|
||||||
for col, val := range vals {
|
for col, val := range vals {
|
||||||
if err := file.SetCellValue(sheet, col+r, val); err != nil {
|
if err := file.SetCellValue(sheet, col+r, val); err != nil {
|
||||||
@@ -198,9 +346,9 @@ func setMarketingExportRows(file *excelize.File, sheet string, items []dto.Marke
|
|||||||
week = strconv.Itoa(*prod.Week)
|
week = strconv.Itoa(*prod.Week)
|
||||||
}
|
}
|
||||||
|
|
||||||
satuan := "-"
|
gudang := "-"
|
||||||
if prod.ConvertionUnit != nil && strings.TrimSpace(*prod.ConvertionUnit) != "" {
|
if prod.ProductWarehouse != nil {
|
||||||
satuan = *prod.ConvertionUnit
|
gudang = safeMarketingExportText(prod.ProductWarehouse.Warehouse.Name)
|
||||||
}
|
}
|
||||||
|
|
||||||
if err := file.SetCellValue(sheet, "A"+r, soNumber); err != nil {
|
if err := file.SetCellValue(sheet, "A"+r, soNumber); err != nil {
|
||||||
@@ -215,46 +363,49 @@ func setMarketingExportRows(file *excelize.File, sheet string, items []dto.Marke
|
|||||||
if err := file.SetCellValue(sheet, "D"+r, customer); err != nil {
|
if err := file.SetCellValue(sheet, "D"+r, customer); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
if err := file.SetCellValue(sheet, "E"+r, safeMarketingExportText(prod.MarketingType)); err != nil {
|
if err := file.SetCellValue(sheet, "E"+r, salesPerson); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
if err := file.SetCellValue(sheet, "F"+r, productName); err != nil {
|
if err := file.SetCellValue(sheet, "F"+r, safeMarketingExportText(prod.MarketingType)); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
if err := file.SetCellValue(sheet, "G"+r, week); err != nil {
|
if err := file.SetCellValue(sheet, "G"+r, productName); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
if err := file.SetCellValue(sheet, "H"+r, prod.Qty); err != nil {
|
if err := file.SetCellValue(sheet, "H"+r, gudang); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
if err := file.SetCellValue(sheet, "I"+r, satuan); err != nil {
|
if err := file.SetCellValue(sheet, "I"+r, week); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
if err := file.SetCellValue(sheet, "J"+r, prod.Qty); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
if prod.TotalPeti != nil {
|
if prod.TotalPeti != nil {
|
||||||
if err := file.SetCellValue(sheet, "J"+r, *prod.TotalPeti); err != nil {
|
if err := file.SetCellValue(sheet, "K"+r, *prod.TotalPeti); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if err := file.SetCellValue(sheet, "J"+r, "-"); err != nil {
|
if err := file.SetCellValue(sheet, "K"+r, "-"); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if err := file.SetCellValue(sheet, "K"+r, prod.AvgWeight); err != nil {
|
if err := file.SetCellValue(sheet, "L"+r, prod.AvgWeight); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
if err := file.SetCellValue(sheet, "L"+r, prod.TotalWeight); err != nil {
|
if err := file.SetCellValue(sheet, "M"+r, prod.TotalWeight); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
if err := file.SetCellValue(sheet, "M"+r, prod.UnitPrice); err != nil {
|
if err := file.SetCellValue(sheet, "N"+r, prod.UnitPrice); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
if err := file.SetCellValue(sheet, "N"+r, prod.TotalPrice); err != nil {
|
if err := file.SetCellValue(sheet, "O"+r, prod.TotalPrice); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
if err := file.SetCellValue(sheet, "O"+r, grandTotal); err != nil {
|
if err := file.SetCellValue(sheet, "P"+r, grandTotal); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
if err := file.SetCellValue(sheet, "P"+r, notes); err != nil {
|
if err := file.SetCellValue(sheet, "Q"+r, notes); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -276,7 +427,7 @@ func setMarketingExportRows(file *excelize.File, sheet string, items []dto.Marke
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
if err := file.SetCellStyle(sheet, "A2", "P"+lastRowStr, dataStyle); err != nil {
|
if err := file.SetCellStyle(sheet, "A2", "Q"+lastRowStr, dataStyle); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -287,7 +438,7 @@ func setMarketingExportRows(file *excelize.File, sheet string, items []dto.Marke
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
if err := file.SetCellStyle(sheet, "K2", "O"+lastRowStr, numberStyle); err != nil {
|
if err := file.SetCellStyle(sheet, "L2", "P"+lastRowStr, numberStyle); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -298,7 +449,7 @@ func setMarketingExportRows(file *excelize.File, sheet string, items []dto.Marke
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
for _, col := range []string{"G", "H", "J"} {
|
for _, col := range []string{"I", "J", "K"} {
|
||||||
if err := file.SetCellStyle(sheet, col+"2", col+lastRowStr, centerStyle); err != nil {
|
if err := file.SetCellStyle(sheet, col+"2", col+lastRowStr, centerStyle); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
@@ -327,16 +478,23 @@ func formatMarketingExportStatus(item dto.MarketingListDTO) string {
|
|||||||
return safeMarketingExportText(item.LatestApproval.StepName)
|
return safeMarketingExportText(item.LatestApproval.StepName)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
func sumMarketingGrandTotal(items []dto.DeliveryMarketingProductDTO) float64 {
|
func sumMarketingGrandTotal(items []dto.DeliveryMarketingProductDTO) float64 {
|
||||||
total := 0.0
|
total := 0.0
|
||||||
for _, item := range items {
|
for _, item := range items {
|
||||||
total += item.TotalPrice
|
total += item.TotalPrice
|
||||||
}
|
}
|
||||||
|
|
||||||
return total
|
return total
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func sumDeliveryGrandTotal(groups []dto.DeliveryGroupDTO) float64 {
|
||||||
|
total := 0.0
|
||||||
|
for _, g := range groups {
|
||||||
|
for _, d := range g.Deliveries {
|
||||||
|
total += d.TotalPrice
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return total
|
||||||
|
}
|
||||||
|
|
||||||
func safeMarketingExportText(value string) string {
|
func safeMarketingExportText(value string) string {
|
||||||
trimmed := strings.TrimSpace(value)
|
trimmed := strings.TrimSpace(value)
|
||||||
|
|||||||
@@ -28,6 +28,8 @@ type MarketingListDTO struct {
|
|||||||
Customer customerDTO.CustomerRelationDTO `json:"customer"`
|
Customer customerDTO.CustomerRelationDTO `json:"customer"`
|
||||||
SalesPerson userDTO.UserRelationDTO `json:"sales_person"`
|
SalesPerson userDTO.UserRelationDTO `json:"sales_person"`
|
||||||
SoDocs string `json:"so_docs"`
|
SoDocs string `json:"so_docs"`
|
||||||
|
GrandTotalSO float64 `json:"grand_total_so"`
|
||||||
|
GrandTotalDO float64 `json:"grand_total_do"`
|
||||||
SalesOrder []DeliveryMarketingProductDTO `json:"sales_order"`
|
SalesOrder []DeliveryMarketingProductDTO `json:"sales_order"`
|
||||||
DeliveryOrder []DeliveryGroupDTO `json:"delivery_order"`
|
DeliveryOrder []DeliveryGroupDTO `json:"delivery_order"`
|
||||||
CreatedUser userDTO.UserRelationDTO `json:"created_user"`
|
CreatedUser userDTO.UserRelationDTO `json:"created_user"`
|
||||||
@@ -198,11 +200,21 @@ func ToMarketingListDTO(marketing *entity.Marketing, deliveryProducts []entity.M
|
|||||||
salesOrderProducts[i] = ToDeliveryMarketingProductDTO(product, marketing.MarketingType)
|
salesOrderProducts[i] = ToDeliveryMarketingProductDTO(product, marketing.MarketingType)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
var grandTotalSO, grandTotalDO float64
|
||||||
|
for _, p := range marketing.Products {
|
||||||
|
grandTotalSO += p.TotalPrice
|
||||||
|
if p.DeliveryProduct != nil && p.DeliveryProduct.DeliveryDate != nil {
|
||||||
|
grandTotalDO += p.DeliveryProduct.TotalPrice
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return MarketingListDTO{
|
return MarketingListDTO{
|
||||||
MarketingRelationDTO: ToMarketingRelationDTO(marketing),
|
MarketingRelationDTO: ToMarketingRelationDTO(marketing),
|
||||||
Customer: customer,
|
Customer: customer,
|
||||||
SalesPerson: salesPerson,
|
SalesPerson: salesPerson,
|
||||||
SoDocs: marketing.SoDocs,
|
SoDocs: marketing.SoDocs,
|
||||||
|
GrandTotalSO: grandTotalSO,
|
||||||
|
GrandTotalDO: grandTotalDO,
|
||||||
SalesOrder: salesOrderProducts,
|
SalesOrder: salesOrderProducts,
|
||||||
DeliveryOrder: extractDeliveryGroupsFromProducts(marketing),
|
DeliveryOrder: extractDeliveryGroupsFromProducts(marketing),
|
||||||
CreatedUser: createdUser,
|
CreatedUser: createdUser,
|
||||||
|
|||||||
@@ -287,6 +287,16 @@ func (s deliveryOrdersService) GetAll(c *fiber.Ctx, params *validation.DeliveryO
|
|||||||
db = db.Where("marketings.customer_id = ?", params.CustomerId)
|
db = db.Where("marketings.customer_id = ?", params.CustomerId)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if params.WarehouseID != 0 {
|
||||||
|
db = db.Where(`EXISTS (
|
||||||
|
SELECT 1
|
||||||
|
FROM marketing_products mp
|
||||||
|
JOIN product_warehouses pw ON pw.id = mp.product_warehouse_id
|
||||||
|
WHERE mp.marketing_id = marketings.id
|
||||||
|
AND pw.warehouse_id = ?
|
||||||
|
)`, params.WarehouseID)
|
||||||
|
}
|
||||||
|
|
||||||
db = s.applyMarketingProjectFlockFilter(c.Context(), db, params.ProjectFlockID, params.ProjectFlockKandangID)
|
db = s.applyMarketingProjectFlockFilter(c.Context(), db, params.ProjectFlockID, params.ProjectFlockKandangID)
|
||||||
db = s.applyMarketingSearchFilter(c.Context(), db, params.Search)
|
db = s.applyMarketingSearchFilter(c.Context(), db, params.Search)
|
||||||
|
|
||||||
|
|||||||
@@ -31,6 +31,7 @@ type DeliveryOrderQuery struct {
|
|||||||
MarketingId uint `query:"marketing_id" validate:"omitempty,gt=0"`
|
MarketingId uint `query:"marketing_id" validate:"omitempty,gt=0"`
|
||||||
ProjectFlockID uint `query:"project_flock_id" validate:"omitempty,gt=0"`
|
ProjectFlockID uint `query:"project_flock_id" validate:"omitempty,gt=0"`
|
||||||
ProjectFlockKandangID uint `query:"project_flock_kandang_id" validate:"omitempty,gt=0"`
|
ProjectFlockKandangID uint `query:"project_flock_kandang_id" validate:"omitempty,gt=0"`
|
||||||
|
WarehouseID uint `query:"warehouse_id" validate:"omitempty,gt=0"`
|
||||||
SortBy string `query:"sort_by" validate:"omitempty,oneof=so_number so_date status customer grand_total created_at"`
|
SortBy string `query:"sort_by" validate:"omitempty,oneof=so_number so_date status customer grand_total created_at"`
|
||||||
SortOrder string `query:"sort_order" validate:"omitempty,oneof=asc desc"`
|
SortOrder string `query:"sort_order" validate:"omitempty,oneof=asc desc"`
|
||||||
}
|
}
|
||||||
|
|||||||
+2
-6
@@ -387,16 +387,12 @@ func (s productionStandardService) EnsureWeekAvailable(ctx context.Context, stan
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
upperCategory := strings.ToUpper(category)
|
week := ((day - 1) / 7) + 1
|
||||||
weekBase := 1
|
|
||||||
if upperCategory == string(utils.ProjectFlockCategoryLaying) {
|
|
||||||
weekBase = config.LayingWeekStart()
|
|
||||||
}
|
|
||||||
week := ((day - 1) / 7) + weekBase
|
|
||||||
if week <= 0 {
|
if week <= 0 {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
upperCategory := strings.ToUpper(category)
|
||||||
if upperCategory == string(utils.ProjectFlockCategoryLaying) {
|
if upperCategory == string(utils.ProjectFlockCategoryLaying) {
|
||||||
detail, err := s.ProductionStandardDetailRepo.GetByStandardIDAndWeek(ctx, standardID, week)
|
detail, err := s.ProductionStandardDetailRepo.GetByStandardIDAndWeek(ctx, standardID, week)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|||||||
@@ -312,10 +312,10 @@ func (u *ProjectflockController) LookupProjectFlockKandang(c *fiber.Ctx) error {
|
|||||||
mapped := warehouseDTO.ToWarehouseRelationDTO(*warehouse)
|
mapped := warehouseDTO.ToWarehouseRelationDTO(*warehouse)
|
||||||
dtoResult.Warehouse = &mapped
|
dtoResult.Warehouse = &mapped
|
||||||
}
|
}
|
||||||
if _, isLaying, serr := u.ProjectflockService.GetProjectFlockKandangTransferStateAtDate(c, result.Id, recordDate); serr != nil {
|
if isTransition, isLaying, serr := u.ProjectflockService.GetProjectFlockKandangTransferStateAtDate(c, result.Id, recordDate); serr != nil {
|
||||||
return serr
|
return serr
|
||||||
} else {
|
} else {
|
||||||
dtoResult.IsTransition = false
|
dtoResult.IsTransition = isTransition
|
||||||
dtoResult.IsLaying = isLaying
|
dtoResult.IsLaying = isLaying
|
||||||
}
|
}
|
||||||
applyCutOverLayingLookupOverride(&dtoResult)
|
applyCutOverLayingLookupOverride(&dtoResult)
|
||||||
@@ -346,7 +346,7 @@ func (u *ProjectflockController) LookupProjectFlockKandang(c *fiber.Ctx) error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func applyCutOverLayingLookupOverride(result *dto.ProjectFlockKandangDTO) {
|
func applyCutOverLayingLookupOverride(result *dto.ProjectFlockKandangDTO) {
|
||||||
if result == nil || result.ProjectFlock == nil || result.IsLaying || result.ChickInDate == nil {
|
if result == nil || result.ProjectFlock == nil || result.IsLaying || result.IsTransition || result.ChickInDate == nil {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -588,11 +588,6 @@ func (s projectflockService) GetProjectFlockKandangTransferStateAtDate(ctx *fibe
|
|||||||
switch category {
|
switch category {
|
||||||
case strings.ToUpper(string(utils.ProjectFlockCategoryGrowing)):
|
case strings.ToUpper(string(utils.ProjectFlockCategoryGrowing)):
|
||||||
transfer, err = s.TransferLayingRepo.GetLatestApprovedBySourceKandang(ctx.Context(), projectFlockKandangID)
|
transfer, err = s.TransferLayingRepo.GetLatestApprovedBySourceKandang(ctx.Context(), projectFlockKandangID)
|
||||||
case strings.ToUpper(string(utils.ProjectFlockCategoryLaying)):
|
|
||||||
transfer, err = s.TransferLayingRepo.GetLatestApprovedByTargetKandang(ctx.Context(), projectFlockKandangID)
|
|
||||||
default:
|
|
||||||
return false, false, nil
|
|
||||||
}
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
if errors.Is(err, gorm.ErrRecordNotFound) {
|
if errors.Is(err, gorm.ErrRecordNotFound) {
|
||||||
return false, false, nil
|
return false, false, nil
|
||||||
@@ -600,6 +595,23 @@ func (s projectflockService) GetProjectFlockKandangTransferStateAtDate(ctx *fibe
|
|||||||
s.Log.Errorf("Failed to resolve transfer state for project flock kandang %d: %+v", projectFlockKandangID, err)
|
s.Log.Errorf("Failed to resolve transfer state for project flock kandang %d: %+v", projectFlockKandangID, err)
|
||||||
return false, false, fiber.NewError(fiber.StatusInternalServerError, "Failed to resolve transfer state")
|
return false, false, fiber.NewError(fiber.StatusInternalServerError, "Failed to resolve transfer state")
|
||||||
}
|
}
|
||||||
|
case strings.ToUpper(string(utils.ProjectFlockCategoryLaying)):
|
||||||
|
// Multi-source: target kandang bisa menerima dari multiple transfer terpisah. Pakai
|
||||||
|
// EARLIEST transfer (transfer_date ASC) sebagai anchor — kandang masuk transition/laying
|
||||||
|
// mengikuti batch pertama yang sampai.
|
||||||
|
allTransfers, allErr := s.TransferLayingRepo.GetAllApprovedByTargetKandang(ctx.Context(), projectFlockKandangID)
|
||||||
|
if allErr != nil {
|
||||||
|
s.Log.Errorf("Failed to resolve transfers for project flock kandang %d: %+v", projectFlockKandangID, allErr)
|
||||||
|
return false, false, fiber.NewError(fiber.StatusInternalServerError, "Failed to resolve transfer state")
|
||||||
|
}
|
||||||
|
if len(allTransfers) == 0 {
|
||||||
|
return false, false, nil
|
||||||
|
}
|
||||||
|
// Repository ORDER BY transfer_date ASC, id ASC → [0] = earliest
|
||||||
|
transfer = &allTransfers[0]
|
||||||
|
default:
|
||||||
|
return false, false, nil
|
||||||
|
}
|
||||||
if transfer == nil {
|
if transfer == nil {
|
||||||
return false, false, nil
|
return false, false, nil
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8,10 +8,12 @@ import (
|
|||||||
"time"
|
"time"
|
||||||
|
|
||||||
"gitlab.com/mbugroup/lti-api.git/internal/common/exportprogress"
|
"gitlab.com/mbugroup/lti-api.git/internal/common/exportprogress"
|
||||||
|
entity "gitlab.com/mbugroup/lti-api.git/internal/entities"
|
||||||
"gitlab.com/mbugroup/lti-api.git/internal/modules/production/recordings/dto"
|
"gitlab.com/mbugroup/lti-api.git/internal/modules/production/recordings/dto"
|
||||||
service "gitlab.com/mbugroup/lti-api.git/internal/modules/production/recordings/services"
|
service "gitlab.com/mbugroup/lti-api.git/internal/modules/production/recordings/services"
|
||||||
validation "gitlab.com/mbugroup/lti-api.git/internal/modules/production/recordings/validations"
|
validation "gitlab.com/mbugroup/lti-api.git/internal/modules/production/recordings/validations"
|
||||||
"gitlab.com/mbugroup/lti-api.git/internal/response"
|
"gitlab.com/mbugroup/lti-api.git/internal/response"
|
||||||
|
"gitlab.com/mbugroup/lti-api.git/internal/utils"
|
||||||
|
|
||||||
"github.com/gofiber/fiber/v2"
|
"github.com/gofiber/fiber/v2"
|
||||||
)
|
)
|
||||||
@@ -75,6 +77,43 @@ func (u *RecordingController) GetAll(c *fiber.Ctx) error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
listDTO := dto.ToRecordingListDTOs(result)
|
listDTO := dto.ToRecordingListDTOs(result)
|
||||||
|
|
||||||
|
recordingIDs := make([]uint, 0, len(result))
|
||||||
|
for i := range result {
|
||||||
|
if result[i].Id != 0 {
|
||||||
|
recordingIDs = append(recordingIDs, result[i].Id)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if len(recordingIDs) > 0 {
|
||||||
|
eggs, err := u.RecordingService.GetEggsWithFlagsByRecordingIDs(c.Context(), recordingIDs)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
eggByRecording := make(map[uint][]entity.RecordingEgg, len(recordingIDs))
|
||||||
|
for _, egg := range eggs {
|
||||||
|
eggByRecording[egg.RecordingId] = append(eggByRecording[egg.RecordingId], egg)
|
||||||
|
}
|
||||||
|
for i := range listDTO {
|
||||||
|
id := listDTO[i].Id
|
||||||
|
if eggList, ok := eggByRecording[id]; ok {
|
||||||
|
breakdown := make(map[string]dto.EggExportBreakdownDTO)
|
||||||
|
for _, egg := range eggList {
|
||||||
|
flagName := eggTypeFromProductName(egg.ProductWarehouse.Product.Name)
|
||||||
|
if flagName == "" {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
entry := breakdown[flagName]
|
||||||
|
entry.Qty += egg.Qty
|
||||||
|
if egg.Weight != nil {
|
||||||
|
entry.Kg += *egg.Weight
|
||||||
|
}
|
||||||
|
breakdown[flagName] = entry
|
||||||
|
}
|
||||||
|
listDTO[i].EggExportBreakdown = breakdown
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if strings.EqualFold(exportType, "excel") {
|
if strings.EqualFold(exportType, "excel") {
|
||||||
return exportRecordingListExcel(c, listDTO)
|
return exportRecordingListExcel(c, listDTO)
|
||||||
}
|
}
|
||||||
@@ -94,6 +133,33 @@ func (u *RecordingController) GetAll(c *fiber.Ctx) error {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// eggTypeFromProductName maps product name to egg type flag name by keyword matching.
|
||||||
|
// Falls back to empty string if no keyword matches.
|
||||||
|
func eggTypeFromProductName(name string) string {
|
||||||
|
normalized := strings.ToLower(strings.TrimSpace(name))
|
||||||
|
if normalized == "" {
|
||||||
|
return ""
|
||||||
|
}
|
||||||
|
// Ordered longest-first to prefer "papacal" over partial match of "pacal", etc.
|
||||||
|
keywords := []struct {
|
||||||
|
keyword string
|
||||||
|
flag string
|
||||||
|
}{
|
||||||
|
{"papacal", string(utils.FlagTelurPapacal)},
|
||||||
|
{"jumbo", string(utils.FlagTelurJumbo)},
|
||||||
|
{"retak", string(utils.FlagTelurRetak)},
|
||||||
|
{"putih", string(utils.FlagTelurPutih)},
|
||||||
|
{"pecah", string(utils.FlagTelurPecah)},
|
||||||
|
{"utuh", string(utils.FlagTelurUtuh)},
|
||||||
|
}
|
||||||
|
for _, k := range keywords {
|
||||||
|
if strings.Contains(normalized, k.keyword) {
|
||||||
|
return k.flag
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return ""
|
||||||
|
}
|
||||||
|
|
||||||
func (u *RecordingController) GetOne(c *fiber.Ctx) error {
|
func (u *RecordingController) GetOne(c *fiber.Ctx) error {
|
||||||
param := c.Params("id")
|
param := c.Params("id")
|
||||||
|
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ import (
|
|||||||
"time"
|
"time"
|
||||||
|
|
||||||
"gitlab.com/mbugroup/lti-api.git/internal/modules/production/recordings/dto"
|
"gitlab.com/mbugroup/lti-api.git/internal/modules/production/recordings/dto"
|
||||||
|
"gitlab.com/mbugroup/lti-api.git/internal/utils"
|
||||||
|
|
||||||
"github.com/gofiber/fiber/v2"
|
"github.com/gofiber/fiber/v2"
|
||||||
"github.com/xuri/excelize/v2"
|
"github.com/xuri/excelize/v2"
|
||||||
@@ -79,6 +80,18 @@ func setRecordingExportColumns(file *excelize.File, sheet string) error {
|
|||||||
"AB": 18,
|
"AB": 18,
|
||||||
"AC": 24,
|
"AC": 24,
|
||||||
"AD": 18,
|
"AD": 18,
|
||||||
|
"AE": 12,
|
||||||
|
"AF": 10,
|
||||||
|
"AG": 12,
|
||||||
|
"AH": 10,
|
||||||
|
"AI": 12,
|
||||||
|
"AJ": 10,
|
||||||
|
"AK": 12,
|
||||||
|
"AL": 10,
|
||||||
|
"AM": 12,
|
||||||
|
"AN": 10,
|
||||||
|
"AO": 12,
|
||||||
|
"AP": 10,
|
||||||
}
|
}
|
||||||
|
|
||||||
for col, width := range columnWidths {
|
for col, width := range columnWidths {
|
||||||
@@ -208,6 +221,31 @@ func setRecordingExportHeaders(file *excelize.File, sheet string) error {
|
|||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
eggTypes := []struct {
|
||||||
|
col1, col2, label string
|
||||||
|
}{
|
||||||
|
{"AE", "AF", "Telur Utuh"},
|
||||||
|
{"AG", "AH", "Telur Pecah"},
|
||||||
|
{"AI", "AJ", "Telur Putih"},
|
||||||
|
{"AK", "AL", "Telur Retak"},
|
||||||
|
{"AM", "AN", "Telur Papacal"},
|
||||||
|
{"AO", "AP", "Telur Jumbo"},
|
||||||
|
}
|
||||||
|
for _, et := range eggTypes {
|
||||||
|
if err := file.MergeCell(sheet, et.col1+"1", et.col2+"1"); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
if err := file.SetCellValue(sheet, et.col1+"1", et.label); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
if err := file.SetCellValue(sheet, et.col1+"2", "Butir"); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
if err := file.SetCellValue(sheet, et.col2+"2", "Kg"); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
headerStyle, err := file.NewStyle(&excelize.Style{
|
headerStyle, err := file.NewStyle(&excelize.Style{
|
||||||
Font: &excelize.Font{
|
Font: &excelize.Font{
|
||||||
Bold: true,
|
Bold: true,
|
||||||
@@ -234,7 +272,7 @@ func setRecordingExportHeaders(file *excelize.File, sheet string) error {
|
|||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
return file.SetCellStyle(sheet, "A1", "AD2", headerStyle)
|
return file.SetCellStyle(sheet, "A1", "AP2", headerStyle)
|
||||||
}
|
}
|
||||||
|
|
||||||
func setRecordingExportRows(file *excelize.File, sheet string, items []dto.RecordingListDTO) error {
|
func setRecordingExportRows(file *excelize.File, sheet string, items []dto.RecordingListDTO) error {
|
||||||
@@ -245,7 +283,8 @@ func setRecordingExportRows(file *excelize.File, sheet string, items []dto.Recor
|
|||||||
columns := []string{
|
columns := []string{
|
||||||
"A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N",
|
"A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N",
|
||||||
"O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "AA", "AB",
|
"O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "AA", "AB",
|
||||||
"AC", "AD",
|
"AC", "AD", "AE", "AF", "AG", "AH", "AI", "AJ", "AK", "AL", "AM", "AN",
|
||||||
|
"AO", "AP",
|
||||||
}
|
}
|
||||||
|
|
||||||
currentRow := 3
|
currentRow := 3
|
||||||
@@ -293,14 +332,14 @@ func setRecordingExportRows(file *excelize.File, sheet string, items []dto.Recor
|
|||||||
// Expand recordings into one row per sapronak
|
// Expand recordings into one row per sapronak
|
||||||
type sapronakRow struct {
|
type sapronakRow struct {
|
||||||
name string
|
name string
|
||||||
input string
|
input interface{} // float64 for numeric, string "-" for placeholder
|
||||||
}
|
}
|
||||||
sapronaks := make([]sapronakRow, 0)
|
sapronaks := make([]sapronakRow, 0)
|
||||||
if len(item.FeedUsage) > 0 {
|
if len(item.FeedUsage) > 0 {
|
||||||
for _, fu := range item.FeedUsage {
|
for _, fu := range item.FeedUsage {
|
||||||
sapronaks = append(sapronaks, sapronakRow{
|
sapronaks = append(sapronaks, sapronakRow{
|
||||||
name: safeExportText(fu.ProductName),
|
name: safeExportText(fu.ProductName),
|
||||||
input: formatNumberID(fu.UsageAmount+fu.PendingQty, 2, true),
|
input: fu.UsageAmount + fu.PendingQty,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
@@ -311,6 +350,23 @@ func setRecordingExportRows(file *excelize.File, sheet string, items []dto.Recor
|
|||||||
|
|
||||||
for sIdx, s := range sapronaks {
|
for sIdx, s := range sapronaks {
|
||||||
if sIdx == 0 {
|
if sIdx == 0 {
|
||||||
|
eggQty := func(flagName string) int {
|
||||||
|
if item.EggExportBreakdown != nil {
|
||||||
|
if bd, ok := item.EggExportBreakdown[flagName]; ok {
|
||||||
|
return bd.Qty
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
eggKg := func(flagName string) float64 {
|
||||||
|
if item.EggExportBreakdown != nil {
|
||||||
|
if bd, ok := item.EggExportBreakdown[flagName]; ok {
|
||||||
|
return bd.Kg
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
rowValues := []interface{}{
|
rowValues := []interface{}{
|
||||||
i + 1, // A
|
i + 1, // A
|
||||||
locationName, // B
|
locationName, // B
|
||||||
@@ -320,28 +376,40 @@ func setRecordingExportRows(file *excelize.File, sheet string, items []dto.Recor
|
|||||||
formatCategoryLabel(item.ProjectFlock.ProjectFlockCategory), // F
|
formatCategoryLabel(item.ProjectFlock.ProjectFlockCategory), // F
|
||||||
formatAgeLabel(item), // G
|
formatAgeLabel(item), // G
|
||||||
formatDateIndonesian(item.RecordDatetime), // H
|
formatDateIndonesian(item.RecordDatetime), // H
|
||||||
formatNumberID(item.ProjectFlock.TotalChickQty, 0, false), // I
|
item.ProjectFlock.TotalChickQty, // I
|
||||||
formatNumberID(item.FcrValue, 2, true), // J
|
item.FcrValue, // J
|
||||||
formatNumberID(fcrStd, 2, true), // K
|
fcrStd, // K
|
||||||
formatNumberID(item.FeedIntake, 2, true), // L
|
item.FeedIntake, // L
|
||||||
formatNumberID(feedIntakeStd, 2, true), // M
|
feedIntakeStd, // M
|
||||||
formatPercentID(item.CumDepletionRate, 2), // N
|
item.CumDepletionRate, // N
|
||||||
formatPercentID(maxDepletionStd, 2), // O
|
maxDepletionStd, // O
|
||||||
formatNumberID(item.TotalDepletionQty, 2, true), // P
|
item.TotalDepletionQty, // P
|
||||||
formatNumberID(item.EggMass, 2, true), // Q
|
item.EggMass, // Q
|
||||||
formatNumberID(eggMassStd, 2, true), // R
|
eggMassStd, // R
|
||||||
formatNumberID(item.EggWeight, 2, true), // S
|
item.EggWeight, // S
|
||||||
formatNumberID(eggWeightStd, 2, true), // T
|
eggWeightStd, // T
|
||||||
formatPercentID(item.HenDay, 2), // U
|
item.HenDay, // U
|
||||||
formatPercentID(henDayStd, 2), // V
|
henDayStd, // V
|
||||||
formatPercentID(item.HenHouse, 2), // W
|
item.HenHouse, // W
|
||||||
formatPercentID(henHouseStd, 2), // X
|
henHouseStd, // X
|
||||||
formatApprovalStatus(item), // Y
|
formatApprovalStatus(item), // Y
|
||||||
safeExportText(pointerString(item.Approval.Notes)), // Z
|
safeExportText(pointerString(item.Approval.Notes)), // Z
|
||||||
createdBy, // AA
|
createdBy, // AA
|
||||||
formatDateIndonesian(item.CreatedAt), // AB
|
formatDateIndonesian(item.CreatedAt), // AB
|
||||||
s.name, // AC
|
s.name, // AC
|
||||||
s.input, // AD
|
s.input, // AD
|
||||||
|
eggQty(string(utils.FlagTelurUtuh)), // AE
|
||||||
|
eggKg(string(utils.FlagTelurUtuh)), // AF
|
||||||
|
eggQty(string(utils.FlagTelurPecah)), // AG
|
||||||
|
eggKg(string(utils.FlagTelurPecah)), // AH
|
||||||
|
eggQty(string(utils.FlagTelurPutih)), // AI
|
||||||
|
eggKg(string(utils.FlagTelurPutih)), // AJ
|
||||||
|
eggQty(string(utils.FlagTelurRetak)), // AK
|
||||||
|
eggKg(string(utils.FlagTelurRetak)), // AL
|
||||||
|
eggQty(string(utils.FlagTelurPapacal)), // AM
|
||||||
|
eggKg(string(utils.FlagTelurPapacal)), // AN
|
||||||
|
eggQty(string(utils.FlagTelurJumbo)), // AO
|
||||||
|
eggKg(string(utils.FlagTelurJumbo)), // AP
|
||||||
}
|
}
|
||||||
|
|
||||||
for idx, col := range columns {
|
for idx, col := range columns {
|
||||||
@@ -379,7 +447,7 @@ func setRecordingExportRows(file *excelize.File, sheet string, items []dto.Recor
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
if err := file.SetCellStyle(sheet, "A3", fmt.Sprintf("AD%d", lastRow), dataCenterStyle); err != nil {
|
if err := file.SetCellStyle(sheet, "A3", fmt.Sprintf("AP%d", lastRow), dataCenterStyle); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -445,6 +513,7 @@ func setRecordingExportRows(file *excelize.File, sheet string, items []dto.Recor
|
|||||||
|
|
||||||
mergeCols := []string{"A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N",
|
mergeCols := []string{"A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N",
|
||||||
"O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "AA", "AB",
|
"O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "AA", "AB",
|
||||||
|
"AE", "AF", "AG", "AH", "AI", "AJ", "AK", "AL", "AM", "AN", "AO", "AP",
|
||||||
}
|
}
|
||||||
for _, rng := range itemRanges {
|
for _, rng := range itemRanges {
|
||||||
if rng.end > rng.start {
|
if rng.end > rng.start {
|
||||||
@@ -454,6 +523,53 @@ func setRecordingExportRows(file *excelize.File, sheet string, items []dto.Recor
|
|||||||
}
|
}
|
||||||
file.SetCellStyle(sheet, fmt.Sprintf("AC%d", rng.end), fmt.Sprintf("AC%d", rng.end), borderBottomLeftStyle)
|
file.SetCellStyle(sheet, fmt.Sprintf("AC%d", rng.end), fmt.Sprintf("AC%d", rng.end), borderBottomLeftStyle)
|
||||||
file.SetCellStyle(sheet, fmt.Sprintf("AD%d", rng.end), fmt.Sprintf("AD%d", rng.end), borderBottomCenterStyle)
|
file.SetCellStyle(sheet, fmt.Sprintf("AD%d", rng.end), fmt.Sprintf("AD%d", rng.end), borderBottomCenterStyle)
|
||||||
|
// Egg columns use center + thick bottom border
|
||||||
|
for _, col := range []string{"AE", "AF", "AG", "AH", "AI", "AJ", "AK", "AL", "AM", "AN", "AO", "AP"} {
|
||||||
|
file.SetCellStyle(sheet, fmt.Sprintf("%s%d", col, rng.end), fmt.Sprintf("%s%d", col, rng.end), borderBottomCenterStyle)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
numFmtInt := "0"
|
||||||
|
numberIntStyle, err := file.NewStyle(&excelize.Style{
|
||||||
|
CustomNumFmt: &numFmtInt,
|
||||||
|
Alignment: &excelize.Alignment{Horizontal: "center", Vertical: "center", WrapText: true},
|
||||||
|
Border: []excelize.Border{
|
||||||
|
{Type: "left", Color: "E6E6E6", Style: 1},
|
||||||
|
{Type: "top", Color: "E6E6E6", Style: 1},
|
||||||
|
{Type: "bottom", Color: "E6E6E6", Style: 1},
|
||||||
|
{Type: "right", Color: "E6E6E6", Style: 1},
|
||||||
|
},
|
||||||
|
})
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
numFmtFloat := "0.00"
|
||||||
|
numberFloatStyle, err := file.NewStyle(&excelize.Style{
|
||||||
|
CustomNumFmt: &numFmtFloat,
|
||||||
|
Alignment: &excelize.Alignment{Horizontal: "center", Vertical: "center", WrapText: true},
|
||||||
|
Border: []excelize.Border{
|
||||||
|
{Type: "left", Color: "E6E6E6", Style: 1},
|
||||||
|
{Type: "top", Color: "E6E6E6", Style: 1},
|
||||||
|
{Type: "bottom", Color: "E6E6E6", Style: 1},
|
||||||
|
{Type: "right", Color: "E6E6E6", Style: 1},
|
||||||
|
},
|
||||||
|
})
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
intCols := []string{"E", "I", "AE", "AG", "AI", "AK", "AM", "AO"}
|
||||||
|
for _, col := range intCols {
|
||||||
|
if err := file.SetCellStyle(sheet, col+"3", fmt.Sprintf("%s%d", col, lastRow), numberIntStyle); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
floatCols := []string{"J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "AD", "AF", "AH", "AJ", "AL", "AN", "AP"}
|
||||||
|
for _, col := range floatCols {
|
||||||
|
if err := file.SetCellStyle(sheet, col+"3", fmt.Sprintf("%s%d", col, lastRow), numberFloatStyle); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
|
|||||||
@@ -100,6 +100,11 @@ type RecordingFeedUsageDTO struct {
|
|||||||
PendingQty float64 `json:"pending_qty"`
|
PendingQty float64 `json:"pending_qty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type EggExportBreakdownDTO struct {
|
||||||
|
Qty int `json:"qty"`
|
||||||
|
Kg float64 `json:"kg"`
|
||||||
|
}
|
||||||
|
|
||||||
type RecordingListDTO struct {
|
type RecordingListDTO struct {
|
||||||
RecordingRelationDTO
|
RecordingRelationDTO
|
||||||
CreatedUser *userDTO.UserRelationDTO `json:"created_user,omitempty"`
|
CreatedUser *userDTO.UserRelationDTO `json:"created_user,omitempty"`
|
||||||
@@ -108,6 +113,7 @@ type RecordingListDTO struct {
|
|||||||
Kandang *RecordingKandangDTO `json:"kandang,omitempty"`
|
Kandang *RecordingKandangDTO `json:"kandang,omitempty"`
|
||||||
Location *RecordingLocationDTO `json:"location,omitempty"`
|
Location *RecordingLocationDTO `json:"location,omitempty"`
|
||||||
FeedUsage []RecordingFeedUsageDTO `json:"feed_usage,omitempty"`
|
FeedUsage []RecordingFeedUsageDTO `json:"feed_usage,omitempty"`
|
||||||
|
EggExportBreakdown map[string]EggExportBreakdownDTO `json:"egg_breakdown,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type RecordingDetailDTO struct {
|
type RecordingDetailDTO struct {
|
||||||
|
|||||||
@@ -51,6 +51,7 @@ type RecordingRepository interface {
|
|||||||
UpdateEggTotalQty(tx *gorm.DB, eggID uint, totalQty float64) error
|
UpdateEggTotalQty(tx *gorm.DB, eggID uint, totalQty float64) error
|
||||||
UpdateEggWeight(tx *gorm.DB, eggID uint, weight *float64) error
|
UpdateEggWeight(tx *gorm.DB, eggID uint, weight *float64) error
|
||||||
GetRecordingEggByID(ctx context.Context, id uint, modifier func(*gorm.DB) *gorm.DB) (*entity.RecordingEgg, error)
|
GetRecordingEggByID(ctx context.Context, id uint, modifier func(*gorm.DB) *gorm.DB) (*entity.RecordingEgg, error)
|
||||||
|
GetEggsWithFlagsByRecordingIDs(ctx context.Context, recordingIDs []uint) ([]entity.RecordingEgg, error)
|
||||||
|
|
||||||
ExistsOnDate(ctx context.Context, projectFlockKandangId uint, recordTime time.Time) (bool, error)
|
ExistsOnDate(ctx context.Context, projectFlockKandangId uint, recordTime time.Time) (bool, error)
|
||||||
|
|
||||||
@@ -581,6 +582,22 @@ func (r *RecordingRepositoryImpl) GetRecordingEggByID(
|
|||||||
return &egg, nil
|
return &egg, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (r *RecordingRepositoryImpl) GetEggsWithFlagsByRecordingIDs(ctx context.Context, recordingIDs []uint) ([]entity.RecordingEgg, error) {
|
||||||
|
if len(recordingIDs) == 0 {
|
||||||
|
return nil, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
var eggs []entity.RecordingEgg
|
||||||
|
err := r.DB().WithContext(ctx).
|
||||||
|
Preload("ProductWarehouse.Product").
|
||||||
|
Where("recording_eggs.recording_id IN ?", recordingIDs).
|
||||||
|
Find(&eggs).Error
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
return eggs, nil
|
||||||
|
}
|
||||||
|
|
||||||
func (r *RecordingRepositoryImpl) ExistsOnDate(ctx context.Context, projectFlockKandangId uint, recordTime time.Time) (bool, error) {
|
func (r *RecordingRepositoryImpl) ExistsOnDate(ctx context.Context, projectFlockKandangId uint, recordTime time.Time) (bool, error) {
|
||||||
if projectFlockKandangId == 0 {
|
if projectFlockKandangId == 0 {
|
||||||
return false, nil
|
return false, nil
|
||||||
|
|||||||
@@ -46,6 +46,7 @@ type RecordingService interface {
|
|||||||
DeleteOne(ctx *fiber.Ctx, id uint) error
|
DeleteOne(ctx *fiber.Ctx, id uint) error
|
||||||
Approval(ctx *fiber.Ctx, req *validation.Approve) ([]entity.Recording, error)
|
Approval(ctx *fiber.Ctx, req *validation.Approve) ([]entity.Recording, error)
|
||||||
GetProgressRows(ctx *fiber.Ctx, query *exportprogress.Query) ([]exportprogress.Row, error)
|
GetProgressRows(ctx *fiber.Ctx, query *exportprogress.Query) ([]exportprogress.Row, error)
|
||||||
|
GetEggsWithFlagsByRecordingIDs(ctx context.Context, recordingIDs []uint) ([]entity.RecordingEgg, error)
|
||||||
}
|
}
|
||||||
|
|
||||||
type recordingService struct {
|
type recordingService struct {
|
||||||
@@ -198,10 +199,22 @@ func (s recordingService) GetAll(c *fiber.Ctx, params *validation.Query) ([]enti
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, 0, err
|
return nil, 0, err
|
||||||
}
|
}
|
||||||
targetTransferByPFK, err := s.TransferLayingRepo.GetLatestApprovedByTargetKandangs(c.Context(), layingPFKIDs)
|
// Multi-source support: 1 target kandang bisa menerima dari multiple transfer terpisah.
|
||||||
|
// Untuk state evaluation (IsTransition/IsLaying), kita pakai EARLIEST transfer sebagai anchor
|
||||||
|
// (sesuai dengan rule "kandang masuk fase laying mengikuti batch pertama yang sampai").
|
||||||
|
allTransfersByTarget, err := s.TransferLayingRepo.GetAllApprovedByTargetKandangs(c.Context(), layingPFKIDs)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, 0, err
|
return nil, 0, err
|
||||||
}
|
}
|
||||||
|
targetTransferByPFK := make(map[uint]*entity.LayingTransfer, len(allTransfersByTarget))
|
||||||
|
for pfkID, list := range allTransfersByTarget {
|
||||||
|
if len(list) == 0 {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
// list sudah ORDER BY transfer_date ASC, id ASC → element [0] adalah earliest
|
||||||
|
earliest := list[0]
|
||||||
|
targetTransferByPFK[pfkID] = &earliest
|
||||||
|
}
|
||||||
hasTargetRecordingCache := make(map[uint]bool)
|
hasTargetRecordingCache := make(map[uint]bool)
|
||||||
|
|
||||||
cutOverChickinAvailability := make(map[uint]bool)
|
cutOverChickinAvailability := make(map[uint]bool)
|
||||||
@@ -247,6 +260,10 @@ func (s recordingService) GetProgressRows(c *fiber.Ctx, query *exportprogress.Qu
|
|||||||
return s.Repository.GetProgressRows(c.Context(), query.StartDate, query.EndDate, scope.IDs, scope.Restrict)
|
return s.Repository.GetProgressRows(c.Context(), query.StartDate, query.EndDate, scope.IDs, scope.Restrict)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (s recordingService) GetEggsWithFlagsByRecordingIDs(ctx context.Context, recordingIDs []uint) ([]entity.RecordingEgg, error) {
|
||||||
|
return s.Repository.GetEggsWithFlagsByRecordingIDs(ctx, recordingIDs)
|
||||||
|
}
|
||||||
|
|
||||||
func (s recordingService) GetOne(c *fiber.Ctx, id uint) (*entity.Recording, error) {
|
func (s recordingService) GetOne(c *fiber.Ctx, id uint) (*entity.Recording, error) {
|
||||||
if err := m.EnsureRecordingAccess(c, s.Repository.DB(), id); err != nil {
|
if err := m.EnsureRecordingAccess(c, s.Repository.DB(), id); err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
@@ -1292,11 +1309,6 @@ func (s *recordingService) evaluatePopulationMutationState(ctx context.Context,
|
|||||||
switch category {
|
switch category {
|
||||||
case strings.ToUpper(string(utils.ProjectFlockCategoryGrowing)):
|
case strings.ToUpper(string(utils.ProjectFlockCategoryGrowing)):
|
||||||
transfer, err = s.TransferLayingRepo.GetLatestApprovedBySourceKandang(ctx, recording.ProjectFlockKandangId)
|
transfer, err = s.TransferLayingRepo.GetLatestApprovedBySourceKandang(ctx, recording.ProjectFlockKandangId)
|
||||||
case strings.ToUpper(string(utils.ProjectFlockCategoryLaying)):
|
|
||||||
transfer, err = s.TransferLayingRepo.GetLatestApprovedByTargetKandang(ctx, recording.ProjectFlockKandangId)
|
|
||||||
default:
|
|
||||||
return true, false, false, false, nil, time.Time{}, nil
|
|
||||||
}
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
if errors.Is(err, gorm.ErrRecordNotFound) {
|
if errors.Is(err, gorm.ErrRecordNotFound) {
|
||||||
return true, false, false, false, nil, time.Time{}, nil
|
return true, false, false, false, nil, time.Time{}, nil
|
||||||
@@ -1304,6 +1316,23 @@ func (s *recordingService) evaluatePopulationMutationState(ctx context.Context,
|
|||||||
s.Log.Errorf("Failed to resolve approved transfer for recording %d: %+v", recording.Id, err)
|
s.Log.Errorf("Failed to resolve approved transfer for recording %d: %+v", recording.Id, err)
|
||||||
return true, false, false, false, nil, time.Time{}, fiber.NewError(fiber.StatusInternalServerError, "Gagal memvalidasi perubahan populasi recording")
|
return true, false, false, false, nil, time.Time{}, fiber.NewError(fiber.StatusInternalServerError, "Gagal memvalidasi perubahan populasi recording")
|
||||||
}
|
}
|
||||||
|
case strings.ToUpper(string(utils.ProjectFlockCategoryLaying)):
|
||||||
|
// Multi-source: target kandang bisa menerima dari multiple transfer terpisah.
|
||||||
|
// Pakai EARLIEST transfer (transfer_date ASC) sebagai anchor untuk state evaluation —
|
||||||
|
// kandang dianggap masuk transition/laying berdasarkan batch pertama yang masuk.
|
||||||
|
allTransfers, allErr := s.TransferLayingRepo.GetAllApprovedByTargetKandang(ctx, recording.ProjectFlockKandangId)
|
||||||
|
if allErr != nil {
|
||||||
|
s.Log.Errorf("Failed to resolve approved transfers for recording %d: %+v", recording.Id, allErr)
|
||||||
|
return true, false, false, false, nil, time.Time{}, fiber.NewError(fiber.StatusInternalServerError, "Gagal memvalidasi perubahan populasi recording")
|
||||||
|
}
|
||||||
|
if len(allTransfers) == 0 {
|
||||||
|
return true, false, false, false, nil, time.Time{}, nil
|
||||||
|
}
|
||||||
|
// Repository sudah ORDER BY transfer_date ASC, id ASC → element [0] adalah earliest.
|
||||||
|
transfer = &allTransfers[0]
|
||||||
|
default:
|
||||||
|
return true, false, false, false, nil, time.Time{}, nil
|
||||||
|
}
|
||||||
if transfer == nil {
|
if transfer == nil {
|
||||||
return true, false, false, false, nil, time.Time{}, nil
|
return true, false, false, false, nil, time.Time{}, nil
|
||||||
}
|
}
|
||||||
|
|||||||
+91
@@ -19,6 +19,11 @@ type TransferLayingRepository interface {
|
|||||||
GetLatestApprovedByTargetKandang(ctx context.Context, targetProjectFlockKandangID uint) (*entity.LayingTransfer, error)
|
GetLatestApprovedByTargetKandang(ctx context.Context, targetProjectFlockKandangID uint) (*entity.LayingTransfer, error)
|
||||||
GetLatestApprovedBySourceKandangs(ctx context.Context, pfkIDs []uint) (map[uint]*entity.LayingTransfer, error)
|
GetLatestApprovedBySourceKandangs(ctx context.Context, pfkIDs []uint) (map[uint]*entity.LayingTransfer, error)
|
||||||
GetLatestApprovedByTargetKandangs(ctx context.Context, pfkIDs []uint) (map[uint]*entity.LayingTransfer, error)
|
GetLatestApprovedByTargetKandangs(ctx context.Context, pfkIDs []uint) (map[uint]*entity.LayingTransfer, error)
|
||||||
|
// GetAllApprovedByTargetKandang return semua approved transfer yang menuju ke target kandang itu.
|
||||||
|
// Dipakai untuk multi-source case di mana 1 target kandang bisa menerima dari multiple transfer
|
||||||
|
// terpisah (tiap transfer = 1 source). Order: transfer_date ASC, id ASC (kronologis).
|
||||||
|
GetAllApprovedByTargetKandang(ctx context.Context, targetProjectFlockKandangID uint) ([]entity.LayingTransfer, error)
|
||||||
|
GetAllApprovedByTargetKandangs(ctx context.Context, pfkIDs []uint) (map[uint][]entity.LayingTransfer, error)
|
||||||
|
|
||||||
// Tambah method baru untuk query dengan filter lengkap
|
// Tambah method baru untuk query dengan filter lengkap
|
||||||
GetAllWithFilters(ctx context.Context, offset int, limit int, params *GetAllFilterParams) ([]entity.LayingTransfer, int64, error)
|
GetAllWithFilters(ctx context.Context, offset int, limit int, params *GetAllFilterParams) ([]entity.LayingTransfer, int64, error)
|
||||||
@@ -362,3 +367,89 @@ func (r *TransferLayingRepositoryImpl) GetLatestApprovedByTargetKandangs(ctx con
|
|||||||
}
|
}
|
||||||
return result, nil
|
return result, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// GetAllApprovedByTargetKandang return SEMUA approved transfer ke target kandang itu (bukan hanya yang
|
||||||
|
// terbaru). Dipakai untuk skenario multi-source di mana 1 target kandang menerima dari multiple transfer
|
||||||
|
// terpisah, sehingga depresiasi/HPP/recording state perlu aggregate dari semua transfer.
|
||||||
|
func (r *TransferLayingRepositoryImpl) GetAllApprovedByTargetKandang(ctx context.Context, targetProjectFlockKandangID uint) ([]entity.LayingTransfer, error) {
|
||||||
|
if targetProjectFlockKandangID == 0 {
|
||||||
|
return nil, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
var transfers []entity.LayingTransfer
|
||||||
|
err := r.db.WithContext(ctx).
|
||||||
|
Model(&entity.LayingTransfer{}).
|
||||||
|
Joins("JOIN laying_transfer_targets ltt ON ltt.laying_transfer_id = laying_transfers.id AND ltt.deleted_at IS NULL").
|
||||||
|
Where("ltt.target_project_flock_kandang_id = ?", targetProjectFlockKandangID).
|
||||||
|
Where("laying_transfers.deleted_at IS NULL").
|
||||||
|
Where(`(
|
||||||
|
SELECT a.action
|
||||||
|
FROM approvals a
|
||||||
|
WHERE a.approvable_type = ?
|
||||||
|
AND a.approvable_id = laying_transfers.id
|
||||||
|
ORDER BY a.id DESC
|
||||||
|
LIMIT 1
|
||||||
|
) = ?`, string(utils.ApprovalWorkflowTransferToLaying), entity.ApprovalActionApproved).
|
||||||
|
Order("laying_transfers.transfer_date ASC, laying_transfers.id ASC").
|
||||||
|
Distinct("laying_transfers.*").
|
||||||
|
Find(&transfers).Error
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
return transfers, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// GetAllApprovedByTargetKandangs batch version: return map dari target_pfk_id ke list of approved transfers.
|
||||||
|
// Order per target: transfer_date ASC, id ASC.
|
||||||
|
func (r *TransferLayingRepositoryImpl) GetAllApprovedByTargetKandangs(ctx context.Context, pfkIDs []uint) (map[uint][]entity.LayingTransfer, error) {
|
||||||
|
result := make(map[uint][]entity.LayingTransfer)
|
||||||
|
if len(pfkIDs) == 0 {
|
||||||
|
return result, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
type targetTransferRow struct {
|
||||||
|
TargetPFKID uint `gorm:"column:target_pfk_id"`
|
||||||
|
TransferID uint `gorm:"column:transfer_id"`
|
||||||
|
}
|
||||||
|
|
||||||
|
var rows []targetTransferRow
|
||||||
|
err := r.db.WithContext(ctx).Raw(`
|
||||||
|
SELECT ltt.target_project_flock_kandang_id AS target_pfk_id, ltt.laying_transfer_id AS transfer_id
|
||||||
|
FROM laying_transfer_targets ltt
|
||||||
|
JOIN laying_transfers t ON t.id = ltt.laying_transfer_id AND t.deleted_at IS NULL
|
||||||
|
WHERE ltt.target_project_flock_kandang_id IN ?
|
||||||
|
AND ltt.deleted_at IS NULL
|
||||||
|
AND (
|
||||||
|
SELECT a.action FROM approvals a
|
||||||
|
WHERE a.approvable_type = ? AND a.approvable_id = t.id
|
||||||
|
ORDER BY a.id DESC LIMIT 1
|
||||||
|
) = ?
|
||||||
|
ORDER BY t.transfer_date ASC, t.id ASC
|
||||||
|
`,
|
||||||
|
pfkIDs, string(utils.ApprovalWorkflowTransferToLaying), string(entity.ApprovalActionApproved),
|
||||||
|
).Scan(&rows).Error
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
if len(rows) == 0 {
|
||||||
|
return result, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
transferIDs := make([]uint, 0, len(rows))
|
||||||
|
targetsByTransfer := make(map[uint][]uint, len(rows))
|
||||||
|
for _, row := range rows {
|
||||||
|
transferIDs = append(transferIDs, row.TransferID)
|
||||||
|
targetsByTransfer[row.TransferID] = append(targetsByTransfer[row.TransferID], row.TargetPFKID)
|
||||||
|
}
|
||||||
|
|
||||||
|
var transfers []entity.LayingTransfer
|
||||||
|
if err := r.db.WithContext(ctx).Where("id IN ? AND deleted_at IS NULL", transferIDs).Order("transfer_date ASC, id ASC").Find(&transfers).Error; err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
for i := range transfers {
|
||||||
|
for _, targetID := range targetsByTransfer[transfers[i].Id] {
|
||||||
|
result[targetID] = append(result[targetID], transfers[i])
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return result, nil
|
||||||
|
}
|
||||||
|
|||||||
@@ -1617,6 +1617,13 @@ func (s *transferLayingService) validateKandangOwnership(
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// validateTargetSourceLineage memvalidasi bahwa source kandang yang sama TIDAK boleh ditransfer 2x ke
|
||||||
|
// target kandang yang sama (anti-duplicate pair). Aturan lama "satu target hanya boleh punya satu
|
||||||
|
// source" sudah dihapus — sekarang 1 target boleh menerima dari multiple source kandang via transfer
|
||||||
|
// terpisah (multi-source via N-call approach).
|
||||||
|
//
|
||||||
|
// Yang ditolak: kalau ada approved transfer lain (id != excludeTransferID) yang punya pair
|
||||||
|
// (source = sourceProjectFlockKandangID, target ∈ targetKandangIDs) yang sama.
|
||||||
func (s *transferLayingService) validateTargetSourceLineage(
|
func (s *transferLayingService) validateTargetSourceLineage(
|
||||||
ctx context.Context,
|
ctx context.Context,
|
||||||
sourceProjectFlockKandangID uint,
|
sourceProjectFlockKandangID uint,
|
||||||
@@ -1637,7 +1644,7 @@ func (s *transferLayingService) validateTargetSourceLineage(
|
|||||||
}
|
}
|
||||||
seen[targetKandangID] = struct{}{}
|
seen[targetKandangID] = struct{}{}
|
||||||
|
|
||||||
existingTransfer, err := s.Repository.GetLatestApprovedByTargetKandang(ctx, targetKandangID)
|
existingTransfers, err := s.Repository.GetAllApprovedByTargetKandang(ctx, targetKandangID)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
if errors.Is(err, gorm.ErrRecordNotFound) {
|
if errors.Is(err, gorm.ErrRecordNotFound) {
|
||||||
continue
|
continue
|
||||||
@@ -1645,17 +1652,21 @@ func (s *transferLayingService) validateTargetSourceLineage(
|
|||||||
s.Log.Errorf("Failed to validate transfer lineage for target kandang %d: %+v", targetKandangID, err)
|
s.Log.Errorf("Failed to validate transfer lineage for target kandang %d: %+v", targetKandangID, err)
|
||||||
return fiber.NewError(fiber.StatusInternalServerError, "Gagal memvalidasi relasi sumber transfer ke laying")
|
return fiber.NewError(fiber.StatusInternalServerError, "Gagal memvalidasi relasi sumber transfer ke laying")
|
||||||
}
|
}
|
||||||
if existingTransfer == nil {
|
|
||||||
continue
|
for i := range existingTransfers {
|
||||||
}
|
existingTransfer := &existingTransfers[i]
|
||||||
if excludeTransferID != 0 && existingTransfer.Id == excludeTransferID {
|
if excludeTransferID != 0 && existingTransfer.Id == excludeTransferID {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Source di header (single source of truth per migration 20260307130342).
|
||||||
existingSourceID := uint(0)
|
existingSourceID := uint(0)
|
||||||
if existingTransfer.SourceProjectFlockKandangId != nil && *existingTransfer.SourceProjectFlockKandangId != 0 {
|
if existingTransfer.SourceProjectFlockKandangId != nil && *existingTransfer.SourceProjectFlockKandangId != 0 {
|
||||||
existingSourceID = *existingTransfer.SourceProjectFlockKandangId
|
existingSourceID = *existingTransfer.SourceProjectFlockKandangId
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Fallback ke laying_transfer_sources untuk transfer yang belum punya source di header
|
||||||
|
// (historis pre-migration 20260307130342).
|
||||||
if existingSourceID == 0 && s.LayingTransferSourceRepo != nil {
|
if existingSourceID == 0 && s.LayingTransferSourceRepo != nil {
|
||||||
sources, sourceErr := s.LayingTransferSourceRepo.GetByLayingTransferId(ctx, existingTransfer.Id)
|
sources, sourceErr := s.LayingTransferSourceRepo.GetByLayingTransferId(ctx, existingTransfer.Id)
|
||||||
if sourceErr != nil {
|
if sourceErr != nil {
|
||||||
@@ -1663,30 +1674,28 @@ func (s *transferLayingService) validateTargetSourceLineage(
|
|||||||
return fiber.NewError(fiber.StatusInternalServerError, "Gagal memvalidasi relasi sumber transfer ke laying")
|
return fiber.NewError(fiber.StatusInternalServerError, "Gagal memvalidasi relasi sumber transfer ke laying")
|
||||||
}
|
}
|
||||||
for _, source := range sources {
|
for _, source := range sources {
|
||||||
if source.SourceProjectFlockKandangId != 0 {
|
if source.SourceProjectFlockKandangId == sourceProjectFlockKandangID {
|
||||||
existingSourceID = source.SourceProjectFlockKandangId
|
existingSourceID = source.SourceProjectFlockKandangId
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if existingSourceID == 0 {
|
|
||||||
continue
|
if existingSourceID != sourceProjectFlockKandangID {
|
||||||
}
|
|
||||||
if existingSourceID == sourceProjectFlockKandangID {
|
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
return fiber.NewError(
|
return fiber.NewError(
|
||||||
fiber.StatusBadRequest,
|
fiber.StatusBadRequest,
|
||||||
fmt.Sprintf(
|
fmt.Sprintf(
|
||||||
"Kandang tujuan %d sudah memiliki lineage sumber kandang %d dari transfer %s. Tidak boleh ganti ke sumber kandang %d.",
|
"Source kandang %d sudah pernah ditransfer ke target kandang %d via transfer %s. Tidak boleh duplikat (source, target) pair yang sama.",
|
||||||
targetKandangID,
|
|
||||||
existingSourceID,
|
|
||||||
existingTransfer.TransferNumber,
|
|
||||||
sourceProjectFlockKandangID,
|
sourceProjectFlockKandangID,
|
||||||
|
targetKandangID,
|
||||||
|
existingTransfer.TransferNumber,
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -24,7 +24,6 @@ type PurchaseRepository interface {
|
|||||||
UpdateReceivingDetails(ctx context.Context, purchaseID uint, updates []PurchaseReceivingUpdate) error
|
UpdateReceivingDetails(ctx context.Context, purchaseID uint, updates []PurchaseReceivingUpdate) error
|
||||||
DeleteItems(ctx context.Context, purchaseID uint, itemIDs []uint) error
|
DeleteItems(ctx context.Context, purchaseID uint, itemIDs []uint) error
|
||||||
NextPrNumber(ctx context.Context, tx *gorm.DB) (string, error)
|
NextPrNumber(ctx context.Context, tx *gorm.DB) (string, error)
|
||||||
NextPoNumber(ctx context.Context, tx *gorm.DB) (string, error)
|
|
||||||
BackfillProjectFlockKandang(ctx context.Context, purchaseID uint) error
|
BackfillProjectFlockKandang(ctx context.Context, purchaseID uint) error
|
||||||
SoftDeleteByProjectFlockKandangIDs(ctx context.Context, projectFlockKandangIDs []uint) error
|
SoftDeleteByProjectFlockKandangIDs(ctx context.Context, projectFlockKandangIDs []uint) error
|
||||||
GetItemsByProjectFlockID(ctx context.Context, projectFlockID uint) ([]entity.PurchaseItem, error)
|
GetItemsByProjectFlockID(ctx context.Context, projectFlockID uint) ([]entity.PurchaseItem, error)
|
||||||
@@ -369,9 +368,8 @@ func (r *PurchaseRepositoryImpl) NextPrNumber(ctx context.Context, tx *gorm.DB)
|
|||||||
return r.generateSequentialNumber(ctx, tx, "pr_number", utils.PurchasePRNumberPrefix, utils.PurchaseNumberPadding)
|
return r.generateSequentialNumber(ctx, tx, "pr_number", utils.PurchasePRNumberPrefix, utils.PurchaseNumberPadding)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (r *PurchaseRepositoryImpl) NextPoNumber(ctx context.Context, tx *gorm.DB) (string, error) {
|
// NOTE: NextPoNumber dihapus per migration 20260529143940 — po_number sekarang
|
||||||
return r.generateSequentialNumber(ctx, tx, "po_number", utils.PurchasePONumberPrefix, utils.PurchaseNumberPadding)
|
// di-derive dari pr_number (swap prefix) via derivePoFromPr di purchase.service.go.
|
||||||
}
|
|
||||||
|
|
||||||
func (r *PurchaseRepositoryImpl) generateSequentialNumber(ctx context.Context, tx *gorm.DB, column, prefix string, padding int) (string, error) {
|
func (r *PurchaseRepositoryImpl) generateSequentialNumber(ctx context.Context, tx *gorm.DB, column, prefix string, padding int) (string, error) {
|
||||||
db := tx
|
db := tx
|
||||||
|
|||||||
@@ -779,8 +779,7 @@ func (s *purchaseService) ApproveManagerPurchase(c *fiber.Ctx, id uint, req *val
|
|||||||
transactionErr := s.PurchaseRepo.DB().WithContext(c.Context()).Transaction(func(tx *gorm.DB) error {
|
transactionErr := s.PurchaseRepo.DB().WithContext(c.Context()).Transaction(func(tx *gorm.DB) error {
|
||||||
updateData := map[string]any{}
|
updateData := map[string]any{}
|
||||||
if !hasExistingPO {
|
if !hasExistingPO {
|
||||||
repoTx := rPurchase.NewPurchaseRepository(tx)
|
code, err := derivePoFromPr(purchase.PrNumber)
|
||||||
code, err := repoTx.NextPoNumber(c.Context(), tx)
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
@@ -2513,6 +2512,18 @@ func parseApprovalActionInput(raw string) (entity.ApprovalAction, error) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// derivePoFromPr menghasilkan po_number dari pr_number dengan swap prefix.
|
||||||
|
// Contoh: "PR-LTI-0050" -> "PO-LTI-0050". Mengembalikan error kalau pr_number
|
||||||
|
// tidak diawali prefix standar — caller harus memastikan PR sudah valid.
|
||||||
|
func derivePoFromPr(prNumber string) (string, error) {
|
||||||
|
trimmed := strings.TrimSpace(prNumber)
|
||||||
|
if !strings.HasPrefix(trimmed, utils.PurchasePRNumberPrefix) {
|
||||||
|
return "", fmt.Errorf("invalid pr_number %q: missing prefix %q", trimmed, utils.PurchasePRNumberPrefix)
|
||||||
|
}
|
||||||
|
suffix := strings.TrimPrefix(trimmed, utils.PurchasePRNumberPrefix)
|
||||||
|
return utils.PurchasePONumberPrefix + suffix, nil
|
||||||
|
}
|
||||||
|
|
||||||
func (s *purchaseService) rejectAndReload(
|
func (s *purchaseService) rejectAndReload(
|
||||||
c *fiber.Ctx,
|
c *fiber.Ctx,
|
||||||
step approvalutils.ApprovalStep,
|
step approvalutils.ApprovalStep,
|
||||||
|
|||||||
@@ -457,6 +457,29 @@ func (c *RepportController) GetHppPerKandang(ctx *fiber.Ctx) error {
|
|||||||
return ctx.Status(fiber.StatusOK).JSON(resp)
|
return ctx.Status(fiber.StatusOK).JSON(resp)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (c *RepportController) GetHppPerFarm(ctx *fiber.Ctx) error {
|
||||||
|
data, meta, err := c.RepportService.GetHppPerFarm(ctx)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
resp := struct {
|
||||||
|
Code int `json:"code"`
|
||||||
|
Status string `json:"status"`
|
||||||
|
Message string `json:"message"`
|
||||||
|
Meta dto.HppPerFarmMetaDTO `json:"meta"`
|
||||||
|
Data dto.HppPerFarmResponseData `json:"data"`
|
||||||
|
}{
|
||||||
|
Code: fiber.StatusOK,
|
||||||
|
Status: "success",
|
||||||
|
Message: "Get HPP per farm successfully",
|
||||||
|
Meta: *meta,
|
||||||
|
Data: *data,
|
||||||
|
}
|
||||||
|
|
||||||
|
return ctx.Status(fiber.StatusOK).JSON(resp)
|
||||||
|
}
|
||||||
|
|
||||||
func (c *RepportController) GetCustomerPayment(ctx *fiber.Ctx) error {
|
func (c *RepportController) GetCustomerPayment(ctx *fiber.Ctx) error {
|
||||||
var customerIDs []uint
|
var customerIDs []uint
|
||||||
if customerIDsStr := ctx.Query("customer_ids"); customerIDsStr != "" {
|
if customerIDsStr := ctx.Query("customer_ids"); customerIDsStr != "" {
|
||||||
|
|||||||
@@ -22,6 +22,12 @@ type ExpenseDepreciationRowDTO struct {
|
|||||||
DepreciationPercentEffective float64 `json:"depreciation_percent_effective"`
|
DepreciationPercentEffective float64 `json:"depreciation_percent_effective"`
|
||||||
DepreciationValue float64 `json:"depreciation_value"`
|
DepreciationValue float64 `json:"depreciation_value"`
|
||||||
PulletCostDayNTotal float64 `json:"pullet_cost_day_n_total"`
|
PulletCostDayNTotal float64 `json:"pullet_cost_day_n_total"`
|
||||||
|
MultiplicationPercentage float64 `json:"multiplication_percentage"`
|
||||||
|
DayN int `json:"day_n"`
|
||||||
|
ChickinDate string `json:"chickin_date"`
|
||||||
|
TotalValuePulletAfterDepreciation float64 `json:"total_value_pullet_after_depreciation"`
|
||||||
|
StandardEffectiveDate string `json:"standard_effective_date,omitempty"`
|
||||||
|
TotalPopulation float64 `json:"total_population"`
|
||||||
Components any `json:"components"`
|
Components any `json:"components"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,79 @@
|
|||||||
|
package dto
|
||||||
|
|
||||||
|
type HppPerFarmFiltersDTO struct {
|
||||||
|
AreaID string `json:"area_id"`
|
||||||
|
LocationID string `json:"location_id"`
|
||||||
|
StartDate string `json:"start_date"`
|
||||||
|
EndDate string `json:"end_date"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type HppPerFarmMetaDTO struct {
|
||||||
|
Page int `json:"page"`
|
||||||
|
Limit int `json:"limit"`
|
||||||
|
TotalPages int64 `json:"total_pages"`
|
||||||
|
TotalResults int64 `json:"total_results"`
|
||||||
|
Filters HppPerFarmFiltersDTO `json:"filters"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type HppPerFarmResponseData struct {
|
||||||
|
StartDate string `json:"start_date"`
|
||||||
|
EndDate string `json:"end_date"`
|
||||||
|
Rows []HppPerFarmRowDTO `json:"rows"`
|
||||||
|
Summary HppPerFarmSummaryDTO `json:"summary"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// HppPerFarmRowDTO is one farm (location) row, aggregating all LAYING project
|
||||||
|
// flocks within the same location over the selected date range.
|
||||||
|
type HppPerFarmRowDTO struct {
|
||||||
|
Location HppPerKandangLocationDTO `json:"location"`
|
||||||
|
// total_cost_rp = depreciation + pakan + ovk + bop (+ other production cost).
|
||||||
|
// DOC/pullet is NOT included here (it is expensed through depreciation);
|
||||||
|
// average_doc_price_rp is provided for information only.
|
||||||
|
TotalCostRp float64 `json:"total_cost_rp"`
|
||||||
|
FeedCostRp float64 `json:"feed_cost_rp"`
|
||||||
|
OvkCostRp float64 `json:"ovk_cost_rp"`
|
||||||
|
BopCostRp float64 `json:"bop_cost_rp"`
|
||||||
|
DepreciationRp float64 `json:"depreciation_rp"`
|
||||||
|
OtherCostRp float64 `json:"other_cost_rp"`
|
||||||
|
EggWeightRecordingKg float64 `json:"egg_weight_recording_kg"`
|
||||||
|
EggWeightDoKg float64 `json:"egg_weight_do_kg"`
|
||||||
|
HppPerKgProduction float64 `json:"hpp_per_kg_production"`
|
||||||
|
HppPerKgSales float64 `json:"hpp_per_kg_sales"`
|
||||||
|
AverageDocPriceRp int64 `json:"average_doc_price_rp"`
|
||||||
|
|
||||||
|
Flocks []HppPerFarmFlockDTO `json:"flocks"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// HppPerFarmFlockDTO is the per-project-flock breakdown inside a farm row.
|
||||||
|
type HppPerFarmFlockDTO struct {
|
||||||
|
ProjectFlockID int64 `json:"project_flock_id"`
|
||||||
|
FlockName string `json:"flock_name"`
|
||||||
|
TotalCostRp float64 `json:"total_cost_rp"`
|
||||||
|
FeedCostRp float64 `json:"feed_cost_rp"`
|
||||||
|
OvkCostRp float64 `json:"ovk_cost_rp"`
|
||||||
|
BopCostRp float64 `json:"bop_cost_rp"`
|
||||||
|
DepreciationRp float64 `json:"depreciation_rp"`
|
||||||
|
OtherCostRp float64 `json:"other_cost_rp"`
|
||||||
|
EggWeightRecordingKg float64 `json:"egg_weight_recording_kg"`
|
||||||
|
EggWeightDoKg float64 `json:"egg_weight_do_kg"`
|
||||||
|
HppPerKgProduction float64 `json:"hpp_per_kg_production"`
|
||||||
|
HppPerKgSales float64 `json:"hpp_per_kg_sales"`
|
||||||
|
AverageDocPriceRp int64 `json:"average_doc_price_rp"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type HppPerFarmSummaryDTO struct {
|
||||||
|
TotalCostRp float64 `json:"total_cost_rp"`
|
||||||
|
TotalEggWeightRecordingKg float64 `json:"total_egg_weight_recording_kg"`
|
||||||
|
TotalEggWeightDoKg float64 `json:"total_egg_weight_do_kg"`
|
||||||
|
AverageHppPerKgProduction float64 `json:"average_hpp_per_kg_production"`
|
||||||
|
AverageHppPerKgSales float64 `json:"average_hpp_per_kg_sales"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func NewHppPerFarmFiltersDTO(area, location, startDate, endDate string) HppPerFarmFiltersDTO {
|
||||||
|
return HppPerFarmFiltersDTO{
|
||||||
|
AreaID: area,
|
||||||
|
LocationID: location,
|
||||||
|
StartDate: startDate,
|
||||||
|
EndDate: endDate,
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -37,6 +37,7 @@ func (RepportModule) RegisterRoutes(router fiber.Router, db *gorm.DB, validate *
|
|||||||
purchaseSupplierRepository := repportRepo.NewPurchaseSupplierRepository(db)
|
purchaseSupplierRepository := repportRepo.NewPurchaseSupplierRepository(db)
|
||||||
debtSupplierRepository := repportRepo.NewDebtSupplierRepository(db)
|
debtSupplierRepository := repportRepo.NewDebtSupplierRepository(db)
|
||||||
hppPerKandangRepository := repportRepo.NewHppPerKandangRepository(db)
|
hppPerKandangRepository := repportRepo.NewHppPerKandangRepository(db)
|
||||||
|
hppPerFarmRepository := repportRepo.NewHppPerFarmRepository(db)
|
||||||
expenseDepreciationRepository := repportRepo.NewExpenseDepreciationRepository(db)
|
expenseDepreciationRepository := repportRepo.NewExpenseDepreciationRepository(db)
|
||||||
productionResultRepository := repportRepo.NewProductionResultRepository(db)
|
productionResultRepository := repportRepo.NewProductionResultRepository(db)
|
||||||
customerPaymentRepository := repportRepo.NewCustomerPaymentRepository(db)
|
customerPaymentRepository := repportRepo.NewCustomerPaymentRepository(db)
|
||||||
@@ -65,6 +66,7 @@ func (RepportModule) RegisterRoutes(router fiber.Router, db *gorm.DB, validate *
|
|||||||
purchaseSupplierRepository,
|
purchaseSupplierRepository,
|
||||||
debtSupplierRepository,
|
debtSupplierRepository,
|
||||||
hppPerKandangRepository,
|
hppPerKandangRepository,
|
||||||
|
hppPerFarmRepository,
|
||||||
productionResultRepository,
|
productionResultRepository,
|
||||||
customerPaymentRepository,
|
customerPaymentRepository,
|
||||||
balanceMonitoringRepository,
|
balanceMonitoringRepository,
|
||||||
|
|||||||
@@ -37,10 +37,11 @@ type FarmDepreciationManualInputRow struct {
|
|||||||
Note *string
|
Note *string
|
||||||
}
|
}
|
||||||
|
|
||||||
type houseDepreciationPercentRow struct {
|
type houseMultiplicationPercentageRow struct {
|
||||||
HouseType string
|
HouseType string
|
||||||
Day int
|
Day int
|
||||||
DepreciationPercent float64
|
MultiplicationPercentage float64
|
||||||
|
EffectiveDate *time.Time
|
||||||
}
|
}
|
||||||
|
|
||||||
type ExpenseDepreciationRepository interface {
|
type ExpenseDepreciationRepository interface {
|
||||||
@@ -48,8 +49,9 @@ type ExpenseDepreciationRepository interface {
|
|||||||
GetSnapshotsByPeriodAndFarmIDs(ctx context.Context, period time.Time, farmIDs []uint) ([]entity.FarmDepreciationSnapshot, error)
|
GetSnapshotsByPeriodAndFarmIDs(ctx context.Context, period time.Time, farmIDs []uint) ([]entity.FarmDepreciationSnapshot, error)
|
||||||
UpsertSnapshots(ctx context.Context, rows []entity.FarmDepreciationSnapshot) error
|
UpsertSnapshots(ctx context.Context, rows []entity.FarmDepreciationSnapshot) error
|
||||||
DeleteSnapshotsFromDate(ctx context.Context, fromDate time.Time, farmIDs []uint) error
|
DeleteSnapshotsFromDate(ctx context.Context, fromDate time.Time, farmIDs []uint) error
|
||||||
|
DeleteSnapshotsByFarmIDs(ctx context.Context, farmIDs []uint) error
|
||||||
GetLatestTransferInputsByFarms(ctx context.Context, period time.Time, farmIDs []uint) ([]FarmDepreciationLatestTransferRow, error)
|
GetLatestTransferInputsByFarms(ctx context.Context, period time.Time, farmIDs []uint) ([]FarmDepreciationLatestTransferRow, error)
|
||||||
GetDepreciationPercents(ctx context.Context, houseTypes []string, maxDay int) (map[string]map[int]float64, error)
|
GetMultiplicationPercentages(ctx context.Context, houseTypes []string, maxDay int) (map[string]map[int]float64, map[string]*time.Time, error)
|
||||||
GetLatestManualInputsByFarms(ctx context.Context, areaIDs, locationIDs, projectFlockIDs []int64) ([]FarmDepreciationManualInputRow, error)
|
GetLatestManualInputsByFarms(ctx context.Context, areaIDs, locationIDs, projectFlockIDs []int64) ([]FarmDepreciationManualInputRow, error)
|
||||||
UpsertManualInput(ctx context.Context, row *entity.FarmDepreciationManualInput) error
|
UpsertManualInput(ctx context.Context, row *entity.FarmDepreciationManualInput) error
|
||||||
DB() *gorm.DB
|
DB() *gorm.DB
|
||||||
@@ -159,6 +161,17 @@ func (r *expenseDepreciationRepository) DeleteSnapshotsFromDate(
|
|||||||
return query.Delete(nil).Error
|
return query.Delete(nil).Error
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (r *expenseDepreciationRepository) DeleteSnapshotsByFarmIDs(ctx context.Context, farmIDs []uint) error {
|
||||||
|
if len(farmIDs) == 0 {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
return r.db.WithContext(ctx).
|
||||||
|
Table("farm_depreciation_snapshots").
|
||||||
|
Where("project_flock_id IN ?", farmIDs).
|
||||||
|
Delete(nil).Error
|
||||||
|
}
|
||||||
|
|
||||||
func (r *expenseDepreciationRepository) GetLatestTransferInputsByFarms(
|
func (r *expenseDepreciationRepository) GetLatestTransferInputsByFarms(
|
||||||
ctx context.Context,
|
ctx context.Context,
|
||||||
period time.Time,
|
period time.Time,
|
||||||
@@ -228,35 +241,39 @@ ORDER BY ltt.target_project_flock_kandang_id, at.effective_date DESC, at.id DESC
|
|||||||
return rows, nil
|
return rows, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (r *expenseDepreciationRepository) GetDepreciationPercents(
|
func (r *expenseDepreciationRepository) GetMultiplicationPercentages(
|
||||||
ctx context.Context,
|
ctx context.Context,
|
||||||
houseTypes []string,
|
houseTypes []string,
|
||||||
maxDay int,
|
maxDay int,
|
||||||
) (map[string]map[int]float64, error) {
|
) (map[string]map[int]float64, map[string]*time.Time, error) {
|
||||||
result := make(map[string]map[int]float64)
|
result := make(map[string]map[int]float64)
|
||||||
|
effectiveDates := make(map[string]*time.Time)
|
||||||
if len(houseTypes) == 0 || maxDay <= 0 {
|
if len(houseTypes) == 0 || maxDay <= 0 {
|
||||||
return result, nil
|
return result, effectiveDates, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
rows := make([]houseDepreciationPercentRow, 0)
|
rows := make([]houseMultiplicationPercentageRow, 0)
|
||||||
if err := r.db.WithContext(ctx).
|
if err := r.db.WithContext(ctx).Raw(`
|
||||||
Table("house_depreciation_standards").
|
SELECT DISTINCT ON (house_type::text, day)
|
||||||
Select("house_type::text AS house_type, day, depreciation_percent").
|
house_type::text AS house_type, day, multiplication_percentage, effective_date
|
||||||
Where("house_type::text IN ?", houseTypes).
|
FROM house_depreciation_standards
|
||||||
Where("day <= ?", maxDay).
|
WHERE house_type::text IN ? AND day <= ?
|
||||||
Order("house_type ASC, day ASC").
|
ORDER BY house_type, day, effective_date DESC NULLS LAST
|
||||||
Scan(&rows).Error; err != nil {
|
`, houseTypes, maxDay).Scan(&rows).Error; err != nil {
|
||||||
return nil, err
|
return nil, nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, row := range rows {
|
for _, row := range rows {
|
||||||
if _, exists := result[row.HouseType]; !exists {
|
if _, exists := result[row.HouseType]; !exists {
|
||||||
result[row.HouseType] = make(map[int]float64)
|
result[row.HouseType] = make(map[int]float64)
|
||||||
}
|
}
|
||||||
result[row.HouseType][row.Day] = row.DepreciationPercent
|
result[row.HouseType][row.Day] = row.MultiplicationPercentage
|
||||||
|
if _, tracked := effectiveDates[row.HouseType]; !tracked {
|
||||||
|
effectiveDates[row.HouseType] = row.EffectiveDate
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return result, nil
|
return result, effectiveDates, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (r *expenseDepreciationRepository) GetLatestManualInputsByFarms(
|
func (r *expenseDepreciationRepository) GetLatestManualInputsByFarms(
|
||||||
|
|||||||
@@ -0,0 +1,233 @@
|
|||||||
|
package repositories
|
||||||
|
|
||||||
|
import (
|
||||||
|
"context"
|
||||||
|
"time"
|
||||||
|
|
||||||
|
commonRepo "gitlab.com/mbugroup/lti-api.git/internal/common/repository"
|
||||||
|
entity "gitlab.com/mbugroup/lti-api.git/internal/entities"
|
||||||
|
"gitlab.com/mbugroup/lti-api.git/internal/utils"
|
||||||
|
"gitlab.com/mbugroup/lti-api.git/internal/utils/fifo"
|
||||||
|
"gorm.io/gorm"
|
||||||
|
)
|
||||||
|
|
||||||
|
// HppPerFarmFlockMetaRow describes a LAYING project flock and the farm
|
||||||
|
// (location) it belongs to. Farm identity is project_flocks.location_id.
|
||||||
|
type HppPerFarmFlockMetaRow struct {
|
||||||
|
ProjectFlockID uint
|
||||||
|
FlockName string
|
||||||
|
LocationID uint
|
||||||
|
LocationName string
|
||||||
|
AreaID uint
|
||||||
|
}
|
||||||
|
|
||||||
|
// HppPerFarmDocRow holds the DOC/pullet acquisition cost trace per flock.
|
||||||
|
// Used only as an informational field (average_doc_price_rp); it is NOT part
|
||||||
|
// of total_cost because the pullet cost is expensed through depreciation.
|
||||||
|
type HppPerFarmDocRow struct {
|
||||||
|
ProjectFlockID uint
|
||||||
|
DocCost float64
|
||||||
|
DocQty float64
|
||||||
|
}
|
||||||
|
|
||||||
|
type HppPerFarmRepository interface {
|
||||||
|
GetCandidateFlocks(ctx context.Context, start time.Time, areaIDs, locationIDs []int64) ([]HppPerFarmFlockMetaRow, error)
|
||||||
|
SumRecordingEggWeightByFlock(ctx context.Context, start, endExclusive time.Time, projectFlockIDs []uint) (map[uint]float64, error)
|
||||||
|
SumMarketingDoTelurWeightByFlock(ctx context.Context, start, endExclusive time.Time, projectFlockIDs []uint) (map[uint]float64, error)
|
||||||
|
GetDocCostByFlock(ctx context.Context, projectFlockIDs []uint) (map[uint]HppPerFarmDocRow, error)
|
||||||
|
DB() *gorm.DB
|
||||||
|
}
|
||||||
|
|
||||||
|
type hppPerFarmRepository struct {
|
||||||
|
db *gorm.DB
|
||||||
|
}
|
||||||
|
|
||||||
|
func NewHppPerFarmRepository(db *gorm.DB) HppPerFarmRepository {
|
||||||
|
return &hppPerFarmRepository{db: db}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (r *hppPerFarmRepository) DB() *gorm.DB {
|
||||||
|
return r.db
|
||||||
|
}
|
||||||
|
|
||||||
|
// GetCandidateFlocks returns the LAYING project flocks (with their farm/location
|
||||||
|
// metadata) that are still active on or after the range start, scoped by area
|
||||||
|
// and location. Mirrors ExpenseDepreciationRepository.GetCandidateFarms but adds
|
||||||
|
// location info so flocks can be grouped per farm.
|
||||||
|
func (r *hppPerFarmRepository) GetCandidateFlocks(ctx context.Context, start time.Time, areaIDs, locationIDs []int64) ([]HppPerFarmFlockMetaRow, error) {
|
||||||
|
rows := make([]HppPerFarmFlockMetaRow, 0)
|
||||||
|
|
||||||
|
query := r.db.WithContext(ctx).
|
||||||
|
Table("project_flocks AS pf").
|
||||||
|
Select(`
|
||||||
|
DISTINCT pf.id AS project_flock_id,
|
||||||
|
pf.flock_name AS flock_name,
|
||||||
|
pf.location_id AS location_id,
|
||||||
|
loc.name AS location_name,
|
||||||
|
pf.area_id AS area_id`).
|
||||||
|
Joins("JOIN project_flock_kandangs AS pfk ON pfk.project_flock_id = pf.id").
|
||||||
|
Joins("JOIN locations AS loc ON loc.id = pf.location_id").
|
||||||
|
Where("pf.deleted_at IS NULL").
|
||||||
|
Where("pf.category = ?", utils.ProjectFlockCategoryLaying).
|
||||||
|
Where("(pfk.closed_at IS NULL OR DATE(pfk.closed_at) >= DATE(?))", start)
|
||||||
|
|
||||||
|
if len(areaIDs) > 0 {
|
||||||
|
query = query.Where("pf.area_id IN ?", areaIDs)
|
||||||
|
}
|
||||||
|
if len(locationIDs) > 0 {
|
||||||
|
query = query.Where("pf.location_id IN ?", locationIDs)
|
||||||
|
}
|
||||||
|
|
||||||
|
if err := query.Order("pf.location_id ASC, pf.id ASC").Scan(&rows).Error; err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
return rows, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// SumRecordingEggWeightByFlock sums recording_eggs.weight (kg) per project flock
|
||||||
|
// for non-rejected recordings whose record_datetime falls inside [start, endExclusive).
|
||||||
|
func (r *hppPerFarmRepository) SumRecordingEggWeightByFlock(ctx context.Context, start, endExclusive time.Time, projectFlockIDs []uint) (map[uint]float64, error) {
|
||||||
|
result := make(map[uint]float64)
|
||||||
|
if len(projectFlockIDs) == 0 {
|
||||||
|
return result, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
latestApproval := r.db.WithContext(ctx).
|
||||||
|
Table("approvals AS a").
|
||||||
|
Select("a.approvable_id, a.action").
|
||||||
|
Joins(`
|
||||||
|
JOIN (
|
||||||
|
SELECT approvable_id, MAX(action_at) AS latest_action_at
|
||||||
|
FROM approvals
|
||||||
|
WHERE approvable_type = ?
|
||||||
|
GROUP BY approvable_id
|
||||||
|
) AS la ON la.approvable_id = a.approvable_id AND la.latest_action_at = a.action_at`,
|
||||||
|
string(utils.ApprovalWorkflowRecording),
|
||||||
|
)
|
||||||
|
|
||||||
|
type eggRow struct {
|
||||||
|
ProjectFlockID uint
|
||||||
|
Weight float64
|
||||||
|
}
|
||||||
|
rows := make([]eggRow, 0)
|
||||||
|
|
||||||
|
query := r.db.WithContext(ctx).
|
||||||
|
Table("recordings AS r").
|
||||||
|
Select(`
|
||||||
|
pfk.project_flock_id AS project_flock_id,
|
||||||
|
COALESCE(SUM(re.weight), 0) AS weight`).
|
||||||
|
Joins("JOIN project_flock_kandangs AS pfk ON pfk.id = r.project_flock_kandangs_id").
|
||||||
|
Joins("LEFT JOIN (?) AS la ON la.approvable_id = r.id", latestApproval).
|
||||||
|
Joins("JOIN recording_eggs AS re ON re.recording_id = r.id").
|
||||||
|
Where("pfk.project_flock_id IN ?", projectFlockIDs).
|
||||||
|
Where("r.record_datetime >= ? AND r.record_datetime < ?", start, endExclusive).
|
||||||
|
Where("r.deleted_at IS NULL").
|
||||||
|
Where("(la.action IS NULL OR la.action != ?)", string(entity.ApprovalActionRejected)).
|
||||||
|
Group("pfk.project_flock_id")
|
||||||
|
|
||||||
|
if err := query.Scan(&rows).Error; err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, row := range rows {
|
||||||
|
result[row.ProjectFlockID] = row.Weight
|
||||||
|
}
|
||||||
|
return result, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// SumMarketingDoTelurWeightByFlock sums delivered TELUR weight (marketing_delivery_products.total_weight)
|
||||||
|
// per project flock, for delivery_date inside [start, endExclusive). A delivery product that is
|
||||||
|
// attributed to multiple flocks is prorated by each flock's allocated qty share, so that
|
||||||
|
// the farm total equals the sum of its flocks.
|
||||||
|
func (r *hppPerFarmRepository) SumMarketingDoTelurWeightByFlock(ctx context.Context, start, endExclusive time.Time, projectFlockIDs []uint) (map[uint]float64, error) {
|
||||||
|
result := make(map[uint]float64)
|
||||||
|
if len(projectFlockIDs) == 0 {
|
||||||
|
return result, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
telurFlags := []string{
|
||||||
|
string(utils.FlagTelur),
|
||||||
|
string(utils.FlagTelurUtuh),
|
||||||
|
string(utils.FlagTelurPecah),
|
||||||
|
string(utils.FlagTelurPutih),
|
||||||
|
string(utils.FlagTelurRetak),
|
||||||
|
}
|
||||||
|
|
||||||
|
// allocated qty per (marketing_delivery_product, project_flock)
|
||||||
|
attrByFlock := r.db.WithContext(ctx).
|
||||||
|
Table("(?) AS mda", commonRepo.MarketingDeliveryAttributionRowsQuery(r.db.WithContext(ctx))).
|
||||||
|
Select(`
|
||||||
|
mda.marketing_delivery_product_id AS mdp_id,
|
||||||
|
mda.project_flock_id AS project_flock_id,
|
||||||
|
SUM(mda.allocated_qty) AS flock_qty`).
|
||||||
|
Group("mda.marketing_delivery_product_id, mda.project_flock_id")
|
||||||
|
|
||||||
|
// prorate each delivery product's total_weight across its attributed flocks.
|
||||||
|
// Use EXISTS for the TELUR flag filter (not a JOIN) so a product carrying
|
||||||
|
// multiple egg flags does not fan out and double-count the weight share.
|
||||||
|
shareQuery := r.db.WithContext(ctx).
|
||||||
|
Table("(?) AS a", attrByFlock).
|
||||||
|
Select(`
|
||||||
|
a.project_flock_id AS project_flock_id,
|
||||||
|
mdp.total_weight * a.flock_qty / NULLIF(SUM(a.flock_qty) OVER (PARTITION BY a.mdp_id), 0) AS weight_share`).
|
||||||
|
Joins("JOIN marketing_delivery_products AS mdp ON mdp.id = a.mdp_id").
|
||||||
|
Joins("JOIN marketing_products AS mp ON mp.id = mdp.marketing_product_id").
|
||||||
|
Joins("JOIN product_warehouses AS pw ON pw.id = mp.product_warehouse_id").
|
||||||
|
Where("EXISTS (SELECT 1 FROM flags f WHERE f.flagable_id = pw.product_id AND f.flagable_type = ? AND f.name IN ?)", entity.FlagableTypeProduct, telurFlags).
|
||||||
|
Where("mdp.delivery_date >= ? AND mdp.delivery_date < ?", start, endExclusive)
|
||||||
|
|
||||||
|
type doRow struct {
|
||||||
|
ProjectFlockID uint
|
||||||
|
Weight float64
|
||||||
|
}
|
||||||
|
rows := make([]doRow, 0)
|
||||||
|
|
||||||
|
query := r.db.WithContext(ctx).
|
||||||
|
Table("(?) AS s", shareQuery).
|
||||||
|
Select(`
|
||||||
|
s.project_flock_id AS project_flock_id,
|
||||||
|
COALESCE(SUM(s.weight_share), 0) AS weight`).
|
||||||
|
Where("s.project_flock_id IN ?", projectFlockIDs).
|
||||||
|
Group("s.project_flock_id")
|
||||||
|
|
||||||
|
if err := query.Scan(&rows).Error; err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, row := range rows {
|
||||||
|
result[row.ProjectFlockID] = row.Weight
|
||||||
|
}
|
||||||
|
return result, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// GetDocCostByFlock returns the DOC acquisition cost (qty * purchase price) and qty
|
||||||
|
// traced to chick-in per project flock. Informational only.
|
||||||
|
func (r *hppPerFarmRepository) GetDocCostByFlock(ctx context.Context, projectFlockIDs []uint) (map[uint]HppPerFarmDocRow, error) {
|
||||||
|
result := make(map[uint]HppPerFarmDocRow)
|
||||||
|
if len(projectFlockIDs) == 0 {
|
||||||
|
return result, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
rows := make([]HppPerFarmDocRow, 0)
|
||||||
|
query := r.db.WithContext(ctx).
|
||||||
|
Table("project_chickins AS pc").
|
||||||
|
Select(`
|
||||||
|
pfk.project_flock_id AS project_flock_id,
|
||||||
|
COALESCE(SUM(sa.qty * COALESCE(pi.price, 0)), 0) AS doc_cost,
|
||||||
|
COALESCE(SUM(sa.qty), 0) AS doc_qty`).
|
||||||
|
Joins("JOIN project_flock_kandangs AS pfk ON pfk.id = pc.project_flock_kandang_id").
|
||||||
|
Joins("LEFT JOIN stock_allocations AS sa ON sa.usable_type = ? AND sa.usable_id = pc.id AND sa.stockable_type = ? AND sa.status = ? AND sa.allocation_purpose = ?", fifo.UsableKeyProjectChickin.String(), fifo.StockableKeyPurchaseItems.String(), entity.StockAllocationStatusActive, entity.StockAllocationPurposeTraceChickin).
|
||||||
|
Joins("LEFT JOIN purchase_items AS pi ON pi.id = sa.stockable_id").
|
||||||
|
Where("pfk.project_flock_id IN ?", projectFlockIDs).
|
||||||
|
Group("pfk.project_flock_id")
|
||||||
|
|
||||||
|
if err := query.Scan(&rows).Error; err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, row := range rows {
|
||||||
|
result[row.ProjectFlockID] = row
|
||||||
|
}
|
||||||
|
return result, nil
|
||||||
|
}
|
||||||
@@ -23,6 +23,7 @@ func RepportRoutes(v1 fiber.Router, u user.UserService, s repport.RepportService
|
|||||||
route.Get("/purchase-supplier", m.RequirePermissions(m.P_ReportPurchaseSupplierGetAll), ctrl.GetPurchaseSupplier)
|
route.Get("/purchase-supplier", m.RequirePermissions(m.P_ReportPurchaseSupplierGetAll), ctrl.GetPurchaseSupplier)
|
||||||
route.Get("/debt-supplier", m.RequirePermissions(m.P_ReportDebtSupplierGetAll), ctrl.GetDebtSupplier)
|
route.Get("/debt-supplier", m.RequirePermissions(m.P_ReportDebtSupplierGetAll), ctrl.GetDebtSupplier)
|
||||||
route.Get("/hpp-per-kandang", m.RequirePermissions(m.P_ReportHppPerKandangGetAll), ctrl.GetHppPerKandang)
|
route.Get("/hpp-per-kandang", m.RequirePermissions(m.P_ReportHppPerKandangGetAll), ctrl.GetHppPerKandang)
|
||||||
|
route.Get("/hpp-per-farm", m.RequirePermissions(m.P_ReportHppPerKandangGetAll), ctrl.GetHppPerFarm)
|
||||||
route.Get("/hpp-v2-breakdown", m.RequirePermissions(m.P_ReportHppPerKandangGetAll), ctrl.GetHppV2Breakdown)
|
route.Get("/hpp-v2-breakdown", m.RequirePermissions(m.P_ReportHppPerKandangGetAll), ctrl.GetHppV2Breakdown)
|
||||||
route.Get("/production-result/:idProjectFlockKandang", m.RequirePermissions(m.P_ReportProductionResultGetAll), ctrl.GetProductionResult)
|
route.Get("/production-result/:idProjectFlockKandang", m.RequirePermissions(m.P_ReportProductionResultGetAll), ctrl.GetProductionResult)
|
||||||
route.Get("/customer-payment", m.RequirePermissions(m.P_ReportCustomerPaymentGetAll), ctrl.GetCustomerPayment)
|
route.Get("/customer-payment", m.RequirePermissions(m.P_ReportCustomerPaymentGetAll), ctrl.GetCustomerPayment)
|
||||||
|
|||||||
@@ -0,0 +1,93 @@
|
|||||||
|
package service
|
||||||
|
|
||||||
|
import (
|
||||||
|
"math"
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
approvalService "gitlab.com/mbugroup/lti-api.git/internal/common/service"
|
||||||
|
)
|
||||||
|
|
||||||
|
// production-scope total should sum only parts tagged production_cost (a part
|
||||||
|
// tagged with both scopes still counts once).
|
||||||
|
func TestHppPerFarmProductionScopeTotalPartLevelScopes(t *testing.T) {
|
||||||
|
comp := &approvalService.HppV2Component{
|
||||||
|
Code: "PAKAN",
|
||||||
|
Parts: []approvalService.HppV2ComponentPart{
|
||||||
|
{Total: 100, Scopes: []string{"production_cost"}},
|
||||||
|
{Total: 50, Scopes: []string{"pullet_cost"}},
|
||||||
|
{Total: 25, Scopes: []string{"production_cost", "pullet_cost"}},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
if got := hppPerFarmProductionScopeTotal(comp); got != 125 {
|
||||||
|
t.Fatalf("expected 125, got %v", got)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// when parts carry no scopes, fall back to the component-level scope.
|
||||||
|
func TestHppPerFarmProductionScopeTotalComponentLevelFallback(t *testing.T) {
|
||||||
|
prod := &approvalService.HppV2Component{
|
||||||
|
Code: "DIRECT_PULLET_PURCHASE",
|
||||||
|
Scopes: []string{"production_cost"},
|
||||||
|
Total: 300,
|
||||||
|
Parts: []approvalService.HppV2ComponentPart{{Total: 300}},
|
||||||
|
}
|
||||||
|
if got := hppPerFarmProductionScopeTotal(prod); got != 300 {
|
||||||
|
t.Fatalf("expected 300 component fallback, got %v", got)
|
||||||
|
}
|
||||||
|
|
||||||
|
// DOC/pullet is pullet-scope only -> contributes 0 to production cost,
|
||||||
|
// which is exactly why it must not be added to total_cost (depreciation
|
||||||
|
// already expenses the pullet).
|
||||||
|
pulletOnly := &approvalService.HppV2Component{
|
||||||
|
Code: "DOC_CHICKIN",
|
||||||
|
Scopes: []string{"pullet_cost"},
|
||||||
|
Total: 999,
|
||||||
|
Parts: []approvalService.HppV2ComponentPart{{Total: 999}},
|
||||||
|
}
|
||||||
|
if got := hppPerFarmProductionScopeTotal(pulletOnly); got != 0 {
|
||||||
|
t.Fatalf("expected 0 for pullet-only component, got %v", got)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestHppPerFarmProductionScopeTotalsByCode(t *testing.T) {
|
||||||
|
b := &approvalService.HppV2Breakdown{
|
||||||
|
Components: []approvalService.HppV2Component{
|
||||||
|
{Code: "PAKAN", Parts: []approvalService.HppV2ComponentPart{{Total: 100, Scopes: []string{"production_cost"}}}},
|
||||||
|
{Code: "OVK", Parts: []approvalService.HppV2ComponentPart{{Total: 40, Scopes: []string{"production_cost"}}}},
|
||||||
|
{Code: "DOC_CHICKIN", Scopes: []string{"pullet_cost"}, Total: 500, Parts: []approvalService.HppV2ComponentPart{{Total: 500}}},
|
||||||
|
{Code: "DEPRECIATION", Scopes: []string{"production_cost"}, Total: 30, Parts: []approvalService.HppV2ComponentPart{{Total: 30, Scopes: []string{"production_cost"}}}},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
got := hppPerFarmProductionScopeTotalsByCode(b)
|
||||||
|
if got["PAKAN"] != 100 {
|
||||||
|
t.Fatalf("expected PAKAN 100, got %v", got["PAKAN"])
|
||||||
|
}
|
||||||
|
if got["OVK"] != 40 {
|
||||||
|
t.Fatalf("expected OVK 40, got %v", got["OVK"])
|
||||||
|
}
|
||||||
|
if got["DOC_CHICKIN"] != 0 {
|
||||||
|
t.Fatalf("expected DOC_CHICKIN production scope 0, got %v", got["DOC_CHICKIN"])
|
||||||
|
}
|
||||||
|
if got["DEPRECIATION"] != 30 {
|
||||||
|
t.Fatalf("expected DEPRECIATION 30, got %v", got["DEPRECIATION"])
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestHppPerFarmSafeDiv(t *testing.T) {
|
||||||
|
cases := []struct {
|
||||||
|
num, den, want float64
|
||||||
|
}{
|
||||||
|
{100, 4, 25},
|
||||||
|
{100, 0, 0},
|
||||||
|
{100, -5, 0},
|
||||||
|
{0, 0, 0},
|
||||||
|
}
|
||||||
|
for _, c := range cases {
|
||||||
|
if got := hppPerFarmSafeDiv(c.num, c.den); got != c.want {
|
||||||
|
t.Fatalf("safeDiv(%v,%v)=%v want %v", c.num, c.den, got, c.want)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if got := hppPerFarmSafeDiv(math.Inf(1), 1); got != 0 {
|
||||||
|
t.Fatalf("expected 0 for inf numerator, got %v", got)
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -49,6 +49,7 @@ type RepportService interface {
|
|||||||
GetPurchaseSupplier(ctx *fiber.Ctx, params *validation.PurchaseSupplierQuery) ([]dto.PurchaseSupplierDTO, int64, error)
|
GetPurchaseSupplier(ctx *fiber.Ctx, params *validation.PurchaseSupplierQuery) ([]dto.PurchaseSupplierDTO, int64, error)
|
||||||
GetDebtSupplier(ctx *fiber.Ctx, params *validation.DebtSupplierQuery) ([]dto.DebtSupplierDTO, int64, error)
|
GetDebtSupplier(ctx *fiber.Ctx, params *validation.DebtSupplierQuery) ([]dto.DebtSupplierDTO, int64, error)
|
||||||
GetHppPerKandang(ctx *fiber.Ctx) (*dto.HppPerKandangResponseData, *dto.HppPerKandangMetaDTO, error)
|
GetHppPerKandang(ctx *fiber.Ctx) (*dto.HppPerKandangResponseData, *dto.HppPerKandangMetaDTO, error)
|
||||||
|
GetHppPerFarm(ctx *fiber.Ctx) (*dto.HppPerFarmResponseData, *dto.HppPerFarmMetaDTO, error)
|
||||||
GetHppV2Breakdown(ctx *fiber.Ctx, params *validation.HppV2BreakdownQuery) (*approvalService.HppV2Breakdown, error)
|
GetHppV2Breakdown(ctx *fiber.Ctx, params *validation.HppV2BreakdownQuery) (*approvalService.HppV2Breakdown, error)
|
||||||
GetProductionResult(ctx *fiber.Ctx, params *validation.ProductionResultQuery) ([]dto.ProductionResultDTO, int64, error)
|
GetProductionResult(ctx *fiber.Ctx, params *validation.ProductionResultQuery) ([]dto.ProductionResultDTO, int64, error)
|
||||||
GetCustomerPayment(ctx *fiber.Ctx, params *validation.CustomerPaymentQuery) ([]dto.CustomerPaymentReportItem, int64, error)
|
GetCustomerPayment(ctx *fiber.Ctx, params *validation.CustomerPaymentQuery) ([]dto.CustomerPaymentReportItem, int64, error)
|
||||||
@@ -73,6 +74,7 @@ type repportService struct {
|
|||||||
PurchaseSupplierRepo repportRepo.PurchaseSupplierRepository
|
PurchaseSupplierRepo repportRepo.PurchaseSupplierRepository
|
||||||
DebtSupplierRepo repportRepo.DebtSupplierRepository
|
DebtSupplierRepo repportRepo.DebtSupplierRepository
|
||||||
HppPerKandangRepo repportRepo.HppPerKandangRepository
|
HppPerKandangRepo repportRepo.HppPerKandangRepository
|
||||||
|
HppPerFarmRepo repportRepo.HppPerFarmRepository
|
||||||
ProductionResultRepo repportRepo.ProductionResultRepository
|
ProductionResultRepo repportRepo.ProductionResultRepository
|
||||||
CustomerPaymentRepo repportRepo.CustomerPaymentRepository
|
CustomerPaymentRepo repportRepo.CustomerPaymentRepository
|
||||||
BalanceMonitoringRepo repportRepo.BalanceMonitoringRepository
|
BalanceMonitoringRepo repportRepo.BalanceMonitoringRepository
|
||||||
@@ -106,6 +108,7 @@ func NewRepportService(
|
|||||||
purchaseSupplierRepo repportRepo.PurchaseSupplierRepository,
|
purchaseSupplierRepo repportRepo.PurchaseSupplierRepository,
|
||||||
debtSupplierRepo repportRepo.DebtSupplierRepository,
|
debtSupplierRepo repportRepo.DebtSupplierRepository,
|
||||||
hppPerKandangRepo repportRepo.HppPerKandangRepository,
|
hppPerKandangRepo repportRepo.HppPerKandangRepository,
|
||||||
|
hppPerFarmRepo repportRepo.HppPerFarmRepository,
|
||||||
productionResultRepo repportRepo.ProductionResultRepository,
|
productionResultRepo repportRepo.ProductionResultRepository,
|
||||||
customerPaymentRepo repportRepo.CustomerPaymentRepository,
|
customerPaymentRepo repportRepo.CustomerPaymentRepository,
|
||||||
balanceMonitoringRepo repportRepo.BalanceMonitoringRepository,
|
balanceMonitoringRepo repportRepo.BalanceMonitoringRepository,
|
||||||
@@ -130,6 +133,7 @@ func NewRepportService(
|
|||||||
PurchaseSupplierRepo: purchaseSupplierRepo,
|
PurchaseSupplierRepo: purchaseSupplierRepo,
|
||||||
DebtSupplierRepo: debtSupplierRepo,
|
DebtSupplierRepo: debtSupplierRepo,
|
||||||
HppPerKandangRepo: hppPerKandangRepo,
|
HppPerKandangRepo: hppPerKandangRepo,
|
||||||
|
HppPerFarmRepo: hppPerFarmRepo,
|
||||||
ProductionResultRepo: productionResultRepo,
|
ProductionResultRepo: productionResultRepo,
|
||||||
CustomerPaymentRepo: customerPaymentRepo,
|
CustomerPaymentRepo: customerPaymentRepo,
|
||||||
BalanceMonitoringRepo: balanceMonitoringRepo,
|
BalanceMonitoringRepo: balanceMonitoringRepo,
|
||||||
@@ -237,6 +241,9 @@ func (s *repportService) GetExpenseDepreciation(ctx *fiber.Ctx) ([]dto.ExpenseDe
|
|||||||
|
|
||||||
snapshotByFarmID := make(map[uint]entity.FarmDepreciationSnapshot)
|
snapshotByFarmID := make(map[uint]entity.FarmDepreciationSnapshot)
|
||||||
if params.ForceRecompute {
|
if params.ForceRecompute {
|
||||||
|
if err := s.ExpenseDepreciationRepo.DeleteSnapshotsByFarmIDs(ctx.Context(), farmIDs); err != nil {
|
||||||
|
return nil, nil, err
|
||||||
|
}
|
||||||
computedSnapshots, computeErr := s.computeExpenseDepreciationSnapshots(ctx.Context(), periodDate, farmIDs, farmNameByID)
|
computedSnapshots, computeErr := s.computeExpenseDepreciationSnapshots(ctx.Context(), periodDate, farmIDs, farmNameByID)
|
||||||
if computeErr != nil {
|
if computeErr != nil {
|
||||||
return nil, nil, computeErr
|
return nil, nil, computeErr
|
||||||
@@ -295,10 +302,14 @@ func (s *repportService) GetExpenseDepreciation(ctx *fiber.Ctx) ([]dto.ExpenseDe
|
|||||||
DepreciationPercentEffective: 0,
|
DepreciationPercentEffective: 0,
|
||||||
DepreciationValue: 0,
|
DepreciationValue: 0,
|
||||||
PulletCostDayNTotal: 0,
|
PulletCostDayNTotal: 0,
|
||||||
|
TotalValuePulletAfterDepreciation: 0,
|
||||||
Components: map[string]any{},
|
Components: map[string]any{},
|
||||||
})
|
})
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
components := parseSnapshotComponents(snapshot.Components)
|
||||||
|
multiplicationPercentage, dayN, chickinDate, standardEffectiveDate := depreciationSnapshotInfo(components)
|
||||||
|
totalPopulation := depreciationTotalPopulation(components)
|
||||||
rows = append(rows, dto.ExpenseDepreciationRowDTO{
|
rows = append(rows, dto.ExpenseDepreciationRowDTO{
|
||||||
ProjectFlockID: int64(snapshot.ProjectFlockId),
|
ProjectFlockID: int64(snapshot.ProjectFlockId),
|
||||||
FarmName: candidate.FarmName,
|
FarmName: candidate.FarmName,
|
||||||
@@ -306,7 +317,13 @@ func (s *repportService) GetExpenseDepreciation(ctx *fiber.Ctx) ([]dto.ExpenseDe
|
|||||||
DepreciationPercentEffective: snapshot.DepreciationPercentEffective,
|
DepreciationPercentEffective: snapshot.DepreciationPercentEffective,
|
||||||
DepreciationValue: snapshot.DepreciationValue,
|
DepreciationValue: snapshot.DepreciationValue,
|
||||||
PulletCostDayNTotal: snapshot.PulletCostDayNTotal,
|
PulletCostDayNTotal: snapshot.PulletCostDayNTotal,
|
||||||
Components: parseSnapshotComponents(snapshot.Components),
|
MultiplicationPercentage: multiplicationPercentage,
|
||||||
|
DayN: dayN,
|
||||||
|
ChickinDate: chickinDate,
|
||||||
|
TotalValuePulletAfterDepreciation: snapshot.PulletCostDayNTotal - snapshot.DepreciationValue,
|
||||||
|
StandardEffectiveDate: standardEffectiveDate,
|
||||||
|
TotalPopulation: totalPopulation,
|
||||||
|
Components: components,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -481,18 +498,24 @@ type depreciationKandangComponent struct {
|
|||||||
HouseType string `json:"house_type"`
|
HouseType string `json:"house_type"`
|
||||||
DayN int `json:"day_n"`
|
DayN int `json:"day_n"`
|
||||||
DepreciationPercent float64 `json:"depreciation_percent"`
|
DepreciationPercent float64 `json:"depreciation_percent"`
|
||||||
|
MultiplicationPercentage float64 `json:"multiplication_percentage"`
|
||||||
TransferQty float64 `json:"transfer_qty"`
|
TransferQty float64 `json:"transfer_qty"`
|
||||||
PulletCostDayN float64 `json:"pullet_cost_day_n"`
|
PulletCostDayN float64 `json:"pullet_cost_day_n"`
|
||||||
DepreciationValue float64 `json:"depreciation_value"`
|
DepreciationValue float64 `json:"depreciation_value"`
|
||||||
|
TotalValuePulletAfterDepreciation float64 `json:"total_value_pullet_after_depreciation"`
|
||||||
DepreciationSource string `json:"depreciation_source,omitempty"`
|
DepreciationSource string `json:"depreciation_source,omitempty"`
|
||||||
ManualInputID *uint `json:"manual_input_id,omitempty"`
|
ManualInputID *uint `json:"manual_input_id,omitempty"`
|
||||||
CutoverDate string `json:"cutover_date,omitempty"`
|
CutoverDate string `json:"cutover_date,omitempty"`
|
||||||
OriginDate string `json:"origin_date,omitempty"`
|
OriginDate string `json:"origin_date,omitempty"`
|
||||||
|
ChickinDate string `json:"chickin_date,omitempty"`
|
||||||
StartScheduleDay *int `json:"start_schedule_day,omitempty"`
|
StartScheduleDay *int `json:"start_schedule_day,omitempty"`
|
||||||
|
StandardEffectiveDate string `json:"standard_effective_date,omitempty"`
|
||||||
|
Population float64 `json:"population"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type depreciationFarmComponents struct {
|
type depreciationFarmComponents struct {
|
||||||
KandangCount int `json:"kandang_count"`
|
KandangCount int `json:"kandang_count"`
|
||||||
|
TotalPopulation float64 `json:"total_population"`
|
||||||
Kandang []depreciationKandangComponent `json:"kandang"`
|
Kandang []depreciationKandangComponent `json:"kandang"`
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -527,6 +550,7 @@ func (s *repportService) computeExpenseDepreciationSnapshots(
|
|||||||
|
|
||||||
totalDepreciationValue := 0.0
|
totalDepreciationValue := 0.0
|
||||||
totalPulletCostDayN := 0.0
|
totalPulletCostDayN := 0.0
|
||||||
|
totalPopulation := 0.0
|
||||||
for _, kandangID := range kandangIDs {
|
for _, kandangID := range kandangIDs {
|
||||||
breakdown, err := s.HppV2Svc.CalculateHppBreakdown(kandangID, &periodDate)
|
breakdown, err := s.HppV2Svc.CalculateHppBreakdown(kandangID, &periodDate)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@@ -555,10 +579,15 @@ func (s *repportService) computeExpenseDepreciationSnapshots(
|
|||||||
HouseType: houseType,
|
HouseType: houseType,
|
||||||
DayN: hppV2DetailInt(part.Details, "schedule_day"),
|
DayN: hppV2DetailInt(part.Details, "schedule_day"),
|
||||||
DepreciationPercent: hppV2DetailFloat(part.Details, "depreciation_percent"),
|
DepreciationPercent: hppV2DetailFloat(part.Details, "depreciation_percent"),
|
||||||
|
MultiplicationPercentage: hppV2DetailFloat(part.Details, "multiplication_percentage"),
|
||||||
PulletCostDayN: hppV2DetailFloat(part.Details, "pullet_cost_day_n"),
|
PulletCostDayN: hppV2DetailFloat(part.Details, "pullet_cost_day_n"),
|
||||||
DepreciationValue: part.Total,
|
DepreciationValue: part.Total,
|
||||||
|
TotalValuePulletAfterDepreciation: hppV2DetailFloat(part.Details, "total_value_pullet_after_depreciation"),
|
||||||
DepreciationSource: part.Code,
|
DepreciationSource: part.Code,
|
||||||
OriginDate: hppV2DetailString(part.Details, "origin_date"),
|
OriginDate: hppV2DetailString(part.Details, "origin_date"),
|
||||||
|
ChickinDate: hppV2DetailString(part.Details, "origin_date"),
|
||||||
|
StandardEffectiveDate: hppV2DetailString(part.Details, "standard_effective_date"),
|
||||||
|
Population: hppV2DetailFloat(part.Details, "kandang_population"),
|
||||||
}
|
}
|
||||||
|
|
||||||
if component.HouseType == "" {
|
if component.HouseType == "" {
|
||||||
@@ -589,11 +618,13 @@ func (s *repportService) computeExpenseDepreciationSnapshots(
|
|||||||
|
|
||||||
totalPulletCostDayN += component.PulletCostDayN
|
totalPulletCostDayN += component.PulletCostDayN
|
||||||
totalDepreciationValue += component.DepreciationValue
|
totalDepreciationValue += component.DepreciationValue
|
||||||
|
totalPopulation += component.Population
|
||||||
components.Kandang = append(components.Kandang, component)
|
components.Kandang = append(components.Kandang, component)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
components.KandangCount = len(components.Kandang)
|
components.KandangCount = len(components.Kandang)
|
||||||
|
components.TotalPopulation = totalPopulation
|
||||||
effectivePercent := approvalService.CalculateEffectiveDepreciationPercent(totalDepreciationValue, totalPulletCostDayN)
|
effectivePercent := approvalService.CalculateEffectiveDepreciationPercent(totalDepreciationValue, totalPulletCostDayN)
|
||||||
|
|
||||||
componentsJSON, marshalErr := json.Marshal(components)
|
componentsJSON, marshalErr := json.Marshal(components)
|
||||||
@@ -700,8 +731,11 @@ func hppV2DetailString(details map[string]any, key string) string {
|
|||||||
if details == nil || key == "" {
|
if details == nil || key == "" {
|
||||||
return ""
|
return ""
|
||||||
}
|
}
|
||||||
raw, exists := details[key]
|
return anyString(details[key])
|
||||||
if !exists || raw == nil {
|
}
|
||||||
|
|
||||||
|
func anyString(raw any) string {
|
||||||
|
if raw == nil {
|
||||||
return ""
|
return ""
|
||||||
}
|
}
|
||||||
switch value := raw.(type) {
|
switch value := raw.(type) {
|
||||||
@@ -725,6 +759,77 @@ func parseSnapshotComponents(raw []byte) any {
|
|||||||
return out
|
return out
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func depreciationSnapshotInfo(components any) (float64, int, string, string) {
|
||||||
|
root, ok := components.(map[string]any)
|
||||||
|
if !ok {
|
||||||
|
return 0, 0, "", ""
|
||||||
|
}
|
||||||
|
kandang, ok := root["kandang"].([]any)
|
||||||
|
if !ok {
|
||||||
|
return 0, 0, "", ""
|
||||||
|
}
|
||||||
|
for _, raw := range kandang {
|
||||||
|
component, ok := raw.(map[string]any)
|
||||||
|
if !ok {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
dayN := int(math.Round(anyFloat(component["day_n"])))
|
||||||
|
multiplicationPercentage := anyFloat(component["multiplication_percentage"])
|
||||||
|
chickinDate := anyString(component["chickin_date"])
|
||||||
|
if chickinDate == "" {
|
||||||
|
chickinDate = anyString(component["origin_date"])
|
||||||
|
}
|
||||||
|
if dayN > 0 || multiplicationPercentage > 0 || chickinDate != "" {
|
||||||
|
standardEffectiveDate := anyString(component["standard_effective_date"])
|
||||||
|
return multiplicationPercentage, dayN, chickinDate, standardEffectiveDate
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return 0, 0, "", ""
|
||||||
|
}
|
||||||
|
|
||||||
|
func depreciationTotalPopulation(components any) float64 {
|
||||||
|
root, ok := components.(map[string]any)
|
||||||
|
if !ok {
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
return anyFloat(root["total_population"])
|
||||||
|
}
|
||||||
|
|
||||||
|
func anyFloat(raw any) float64 {
|
||||||
|
switch value := raw.(type) {
|
||||||
|
case float64:
|
||||||
|
return value
|
||||||
|
case float32:
|
||||||
|
return float64(value)
|
||||||
|
case int:
|
||||||
|
return float64(value)
|
||||||
|
case int8:
|
||||||
|
return float64(value)
|
||||||
|
case int16:
|
||||||
|
return float64(value)
|
||||||
|
case int32:
|
||||||
|
return float64(value)
|
||||||
|
case int64:
|
||||||
|
return float64(value)
|
||||||
|
case uint:
|
||||||
|
return float64(value)
|
||||||
|
case uint8:
|
||||||
|
return float64(value)
|
||||||
|
case uint16:
|
||||||
|
return float64(value)
|
||||||
|
case uint32:
|
||||||
|
return float64(value)
|
||||||
|
case uint64:
|
||||||
|
return float64(value)
|
||||||
|
case string:
|
||||||
|
parsed, err := strconv.ParseFloat(strings.TrimSpace(value), 64)
|
||||||
|
if err == nil {
|
||||||
|
return parsed
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
func valueOrEmptyString(v *string) string {
|
func valueOrEmptyString(v *string) string {
|
||||||
if v == nil {
|
if v == nil {
|
||||||
return ""
|
return ""
|
||||||
@@ -1971,7 +2076,8 @@ func buildDebtSupplierRow(purchase entity.Purchase, now time.Time, loc *time.Loc
|
|||||||
travelNumber := "-"
|
travelNumber := "-"
|
||||||
receivedDate := ""
|
receivedDate := ""
|
||||||
var area *areaDTO.AreaRelationDTO
|
var area *areaDTO.AreaRelationDTO
|
||||||
var warehouse *warehouseDTO.WarehouseRelationDTO
|
warehouses := []warehouseDTO.WarehouseRelationDTO{}
|
||||||
|
seenWarehouseIDs := map[uint]bool{}
|
||||||
|
|
||||||
if len(purchase.Items) > 0 {
|
if len(purchase.Items) > 0 {
|
||||||
firstItem := purchase.Items[0]
|
firstItem := purchase.Items[0]
|
||||||
@@ -1979,26 +2085,24 @@ func buildDebtSupplierRow(purchase entity.Purchase, now time.Time, loc *time.Loc
|
|||||||
travelNumber = *firstItem.TravelNumber
|
travelNumber = *firstItem.TravelNumber
|
||||||
}
|
}
|
||||||
|
|
||||||
if firstItem.Warehouse != nil && firstItem.Warehouse.Id != 0 {
|
|
||||||
mappedWarehouse := warehouseDTO.ToWarehouseRelationDTO(*firstItem.Warehouse)
|
|
||||||
warehouse = &mappedWarehouse
|
|
||||||
if firstItem.Warehouse.Area.Id != 0 {
|
|
||||||
mappedArea := areaDTO.ToAreaRelationDTO(firstItem.Warehouse.Area)
|
|
||||||
area = &mappedArea
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
earliestReceived := time.Time{}
|
earliestReceived := time.Time{}
|
||||||
for _, item := range purchase.Items {
|
for _, item := range purchase.Items {
|
||||||
totalPrice += item.TotalPrice
|
totalPrice += item.TotalPrice
|
||||||
if item.ReceivedDate == nil || item.ReceivedDate.IsZero() {
|
if item.ReceivedDate != nil && !item.ReceivedDate.IsZero() {
|
||||||
continue
|
|
||||||
}
|
|
||||||
received := item.ReceivedDate.In(loc)
|
received := item.ReceivedDate.In(loc)
|
||||||
if earliestReceived.IsZero() || received.Before(earliestReceived) {
|
if earliestReceived.IsZero() || received.Before(earliestReceived) {
|
||||||
earliestReceived = received
|
earliestReceived = received
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if item.Warehouse != nil && item.Warehouse.Id != 0 && !seenWarehouseIDs[item.Warehouse.Id] {
|
||||||
|
seenWarehouseIDs[item.Warehouse.Id] = true
|
||||||
|
warehouses = append(warehouses, warehouseDTO.ToWarehouseRelationDTO(*item.Warehouse))
|
||||||
|
if area == nil && item.Warehouse.Area.Id != 0 {
|
||||||
|
mappedArea := areaDTO.ToAreaRelationDTO(item.Warehouse.Area)
|
||||||
|
area = &mappedArea
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
if !earliestReceived.IsZero() {
|
if !earliestReceived.IsZero() {
|
||||||
receivedDate = earliestReceived.Format("2006-01-02")
|
receivedDate = earliestReceived.Format("2006-01-02")
|
||||||
}
|
}
|
||||||
@@ -2022,6 +2126,12 @@ func buildDebtSupplierRow(purchase entity.Purchase, now time.Time, loc *time.Loc
|
|||||||
poDate = purchase.PoDate.In(loc).Format("2006-01-02")
|
poDate = purchase.PoDate.In(loc).Format("2006-01-02")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var firstWarehouse *warehouseDTO.WarehouseRelationDTO
|
||||||
|
if len(warehouses) > 0 {
|
||||||
|
w := warehouses[0]
|
||||||
|
firstWarehouse = &w
|
||||||
|
}
|
||||||
|
|
||||||
return dto.DebtSupplierRowDTO{
|
return dto.DebtSupplierRowDTO{
|
||||||
PrNumber: prNumber,
|
PrNumber: prNumber,
|
||||||
PoNumber: poNumber,
|
PoNumber: poNumber,
|
||||||
@@ -2029,7 +2139,7 @@ func buildDebtSupplierRow(purchase entity.Purchase, now time.Time, loc *time.Loc
|
|||||||
ReceivedDate: receivedDate,
|
ReceivedDate: receivedDate,
|
||||||
Aging: aging,
|
Aging: aging,
|
||||||
Area: area,
|
Area: area,
|
||||||
Warehouse: warehouse,
|
Warehouse: firstWarehouse,
|
||||||
DueDate: dueDate,
|
DueDate: dueDate,
|
||||||
DueStatus: dueStatus,
|
DueStatus: dueStatus,
|
||||||
TotalPrice: totalPrice,
|
TotalPrice: totalPrice,
|
||||||
@@ -2839,6 +2949,490 @@ func (s *repportService) parseHppPerKandangQuery(ctx *fiber.Ctx) (*validation.Hp
|
|||||||
return params, filters, nil
|
return params, filters, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const (
|
||||||
|
hppPerFarmProductionScope = "production_cost"
|
||||||
|
hppPerFarmComponentDepreciation = "DEPRECIATION"
|
||||||
|
hppPerFarmComponentPakan = "PAKAN"
|
||||||
|
hppPerFarmComponentOvk = "OVK"
|
||||||
|
hppPerFarmComponentBopRegular = "BOP_REGULAR"
|
||||||
|
hppPerFarmComponentBopEkspedisi = "BOP_EKSPEDISI"
|
||||||
|
hppPerFarmMaxRangeDays = 366
|
||||||
|
)
|
||||||
|
|
||||||
|
// GetHppPerFarm builds the HPP-per-farm report: it groups all LAYING project
|
||||||
|
// flocks by location/farm over [start_date, end_date] and reports, per farm,
|
||||||
|
// the total cost (pakan + ovk + bop + depreciation) and two cost-per-kg figures
|
||||||
|
// — one against egg weight produced (recording_eggs) and one against egg weight
|
||||||
|
// sold/delivered (marketing delivery orders). DOC/pullet cost is informational
|
||||||
|
// only (it is expensed through depreciation, so it is NOT added to total cost).
|
||||||
|
func (s *repportService) GetHppPerFarm(ctx *fiber.Ctx) (*dto.HppPerFarmResponseData, *dto.HppPerFarmMetaDTO, error) {
|
||||||
|
params, filters, err := s.parseHppPerFarmQuery(ctx)
|
||||||
|
if err != nil {
|
||||||
|
return nil, nil, err
|
||||||
|
}
|
||||||
|
if err := s.Validate.Struct(params); err != nil {
|
||||||
|
return nil, nil, fiber.NewError(fiber.StatusBadRequest, err.Error())
|
||||||
|
}
|
||||||
|
if s.HppPerFarmRepo == nil {
|
||||||
|
return nil, nil, fiber.NewError(fiber.StatusInternalServerError, "hpp per farm repository is not configured")
|
||||||
|
}
|
||||||
|
|
||||||
|
location, err := time.LoadLocation("Asia/Jakarta")
|
||||||
|
if err != nil {
|
||||||
|
return nil, nil, fiber.NewError(fiber.StatusInternalServerError, "failed to load timezone configuration")
|
||||||
|
}
|
||||||
|
startDate, err := time.ParseInLocation("2006-01-02", params.StartDate, location)
|
||||||
|
if err != nil {
|
||||||
|
return nil, nil, fiber.NewError(fiber.StatusBadRequest, "start_date must follow format YYYY-MM-DD")
|
||||||
|
}
|
||||||
|
endDate, err := time.ParseInLocation("2006-01-02", params.EndDate, location)
|
||||||
|
if err != nil {
|
||||||
|
return nil, nil, fiber.NewError(fiber.StatusBadRequest, "end_date must follow format YYYY-MM-DD")
|
||||||
|
}
|
||||||
|
if endDate.Before(startDate) {
|
||||||
|
return nil, nil, fiber.NewError(fiber.StatusBadRequest, "end_date must be greater than or equal to start_date")
|
||||||
|
}
|
||||||
|
rangeDays := int(endDate.Sub(startDate).Hours()/24) + 1
|
||||||
|
if rangeDays > hppPerFarmMaxRangeDays {
|
||||||
|
return nil, nil, fiber.NewError(fiber.StatusBadRequest, "date range must not exceed 366 days")
|
||||||
|
}
|
||||||
|
|
||||||
|
startOfRange := time.Date(startDate.Year(), startDate.Month(), startDate.Day(), 0, 0, 0, 0, location)
|
||||||
|
endBreakdownDate := time.Date(endDate.Year(), endDate.Month(), endDate.Day(), 0, 0, 0, 0, location)
|
||||||
|
endExclusive := endBreakdownDate.Add(24 * time.Hour)
|
||||||
|
startBreakdownDate := startOfRange.AddDate(0, 0, -1)
|
||||||
|
|
||||||
|
limit := params.Limit
|
||||||
|
if limit <= 0 {
|
||||||
|
limit = 10
|
||||||
|
}
|
||||||
|
|
||||||
|
flockRows, err := s.HppPerFarmRepo.GetCandidateFlocks(ctx.Context(), startOfRange, params.AreaIDs, params.LocationIDs)
|
||||||
|
if err != nil {
|
||||||
|
return nil, nil, err
|
||||||
|
}
|
||||||
|
if len(flockRows) == 0 {
|
||||||
|
meta := &dto.HppPerFarmMetaDTO{
|
||||||
|
Page: params.Page,
|
||||||
|
Limit: limit,
|
||||||
|
TotalPages: 1,
|
||||||
|
TotalResults: 0,
|
||||||
|
Filters: filters,
|
||||||
|
}
|
||||||
|
data := &dto.HppPerFarmResponseData{
|
||||||
|
StartDate: params.StartDate,
|
||||||
|
EndDate: params.EndDate,
|
||||||
|
Rows: []dto.HppPerFarmRowDTO{},
|
||||||
|
Summary: dto.HppPerFarmSummaryDTO{},
|
||||||
|
}
|
||||||
|
return data, meta, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
flockIDs := make([]uint, 0, len(flockRows))
|
||||||
|
for _, row := range flockRows {
|
||||||
|
flockIDs = append(flockIDs, row.ProjectFlockID)
|
||||||
|
}
|
||||||
|
|
||||||
|
depByFlock, err := s.sumHppPerFarmDepreciationOverRange(ctx.Context(), startOfRange, endBreakdownDate, flockIDs)
|
||||||
|
if err != nil {
|
||||||
|
return nil, nil, err
|
||||||
|
}
|
||||||
|
recWeightByFlock, err := s.HppPerFarmRepo.SumRecordingEggWeightByFlock(ctx.Context(), startOfRange, endExclusive, flockIDs)
|
||||||
|
if err != nil {
|
||||||
|
return nil, nil, err
|
||||||
|
}
|
||||||
|
doWeightByFlock, err := s.HppPerFarmRepo.SumMarketingDoTelurWeightByFlock(ctx.Context(), startOfRange, endExclusive, flockIDs)
|
||||||
|
if err != nil {
|
||||||
|
return nil, nil, err
|
||||||
|
}
|
||||||
|
docByFlock, err := s.HppPerFarmRepo.GetDocCostByFlock(ctx.Context(), flockIDs)
|
||||||
|
if err != nil {
|
||||||
|
return nil, nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
type hppPerFarmAggregate struct {
|
||||||
|
locationID uint
|
||||||
|
locationName string
|
||||||
|
totalCost float64
|
||||||
|
feed float64
|
||||||
|
ovk float64
|
||||||
|
bop float64
|
||||||
|
depreciation float64
|
||||||
|
other float64
|
||||||
|
recWeight float64
|
||||||
|
doWeight float64
|
||||||
|
docCost float64
|
||||||
|
docQty float64
|
||||||
|
flocks []dto.HppPerFarmFlockDTO
|
||||||
|
}
|
||||||
|
|
||||||
|
farmOrder := make([]uint, 0)
|
||||||
|
farms := make(map[uint]*hppPerFarmAggregate)
|
||||||
|
|
||||||
|
for _, flock := range flockRows {
|
||||||
|
flockID := flock.ProjectFlockID
|
||||||
|
|
||||||
|
codeTotals, err := s.hppPerFarmFlockCostRange(ctx.Context(), flockID, startBreakdownDate, endBreakdownDate)
|
||||||
|
if err != nil {
|
||||||
|
return nil, nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
feed := codeTotals[hppPerFarmComponentPakan]
|
||||||
|
ovk := codeTotals[hppPerFarmComponentOvk]
|
||||||
|
bop := codeTotals[hppPerFarmComponentBopRegular] + codeTotals[hppPerFarmComponentBopEkspedisi]
|
||||||
|
nonDepreciation := 0.0
|
||||||
|
for _, value := range codeTotals {
|
||||||
|
nonDepreciation += value
|
||||||
|
}
|
||||||
|
other := nonDepreciation - feed - ovk - bop
|
||||||
|
depreciation := depByFlock[flockID]
|
||||||
|
totalCost := nonDepreciation + depreciation
|
||||||
|
|
||||||
|
recWeight := recWeightByFlock[flockID]
|
||||||
|
doWeight := doWeightByFlock[flockID]
|
||||||
|
|
||||||
|
averageDocPrice := int64(0)
|
||||||
|
if doc, ok := docByFlock[flockID]; ok && doc.DocQty > 0 {
|
||||||
|
averageDocPrice = int64(math.Round(doc.DocCost / doc.DocQty))
|
||||||
|
}
|
||||||
|
|
||||||
|
flockDTO := dto.HppPerFarmFlockDTO{
|
||||||
|
ProjectFlockID: int64(flockID),
|
||||||
|
FlockName: flock.FlockName,
|
||||||
|
TotalCostRp: totalCost,
|
||||||
|
FeedCostRp: feed,
|
||||||
|
OvkCostRp: ovk,
|
||||||
|
BopCostRp: bop,
|
||||||
|
DepreciationRp: depreciation,
|
||||||
|
OtherCostRp: other,
|
||||||
|
EggWeightRecordingKg: recWeight,
|
||||||
|
EggWeightDoKg: doWeight,
|
||||||
|
HppPerKgProduction: hppPerFarmSafeDiv(totalCost, recWeight),
|
||||||
|
HppPerKgSales: hppPerFarmSafeDiv(totalCost, doWeight),
|
||||||
|
AverageDocPriceRp: averageDocPrice,
|
||||||
|
}
|
||||||
|
|
||||||
|
farm, ok := farms[flock.LocationID]
|
||||||
|
if !ok {
|
||||||
|
farm = &hppPerFarmAggregate{
|
||||||
|
locationID: flock.LocationID,
|
||||||
|
locationName: flock.LocationName,
|
||||||
|
flocks: make([]dto.HppPerFarmFlockDTO, 0, 1),
|
||||||
|
}
|
||||||
|
farms[flock.LocationID] = farm
|
||||||
|
farmOrder = append(farmOrder, flock.LocationID)
|
||||||
|
}
|
||||||
|
farm.flocks = append(farm.flocks, flockDTO)
|
||||||
|
farm.totalCost += totalCost
|
||||||
|
farm.feed += feed
|
||||||
|
farm.ovk += ovk
|
||||||
|
farm.bop += bop
|
||||||
|
farm.depreciation += depreciation
|
||||||
|
farm.other += other
|
||||||
|
farm.recWeight += recWeight
|
||||||
|
farm.doWeight += doWeight
|
||||||
|
if doc, ok := docByFlock[flockID]; ok {
|
||||||
|
farm.docCost += doc.DocCost
|
||||||
|
farm.docQty += doc.DocQty
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
rows := make([]dto.HppPerFarmRowDTO, 0, len(farmOrder))
|
||||||
|
summary := dto.HppPerFarmSummaryDTO{}
|
||||||
|
for _, locID := range farmOrder {
|
||||||
|
farm := farms[locID]
|
||||||
|
averageDocPrice := int64(0)
|
||||||
|
if farm.docQty > 0 {
|
||||||
|
averageDocPrice = int64(math.Round(farm.docCost / farm.docQty))
|
||||||
|
}
|
||||||
|
rows = append(rows, dto.HppPerFarmRowDTO{
|
||||||
|
Location: dto.HppPerKandangLocationDTO{ID: int64(farm.locationID), Name: farm.locationName},
|
||||||
|
TotalCostRp: farm.totalCost,
|
||||||
|
FeedCostRp: farm.feed,
|
||||||
|
OvkCostRp: farm.ovk,
|
||||||
|
BopCostRp: farm.bop,
|
||||||
|
DepreciationRp: farm.depreciation,
|
||||||
|
OtherCostRp: farm.other,
|
||||||
|
EggWeightRecordingKg: farm.recWeight,
|
||||||
|
EggWeightDoKg: farm.doWeight,
|
||||||
|
HppPerKgProduction: hppPerFarmSafeDiv(farm.totalCost, farm.recWeight),
|
||||||
|
HppPerKgSales: hppPerFarmSafeDiv(farm.totalCost, farm.doWeight),
|
||||||
|
AverageDocPriceRp: averageDocPrice,
|
||||||
|
Flocks: farm.flocks,
|
||||||
|
})
|
||||||
|
summary.TotalCostRp += farm.totalCost
|
||||||
|
summary.TotalEggWeightRecordingKg += farm.recWeight
|
||||||
|
summary.TotalEggWeightDoKg += farm.doWeight
|
||||||
|
}
|
||||||
|
summary.AverageHppPerKgProduction = hppPerFarmSafeDiv(summary.TotalCostRp, summary.TotalEggWeightRecordingKg)
|
||||||
|
summary.AverageHppPerKgSales = hppPerFarmSafeDiv(summary.TotalCostRp, summary.TotalEggWeightDoKg)
|
||||||
|
|
||||||
|
totalResults := int64(len(rows))
|
||||||
|
totalPages := int64(1)
|
||||||
|
if totalResults > 0 {
|
||||||
|
totalPages = int64(math.Ceil(float64(totalResults) / float64(limit)))
|
||||||
|
}
|
||||||
|
|
||||||
|
offset := (params.Page - 1) * limit
|
||||||
|
if offset < 0 {
|
||||||
|
offset = 0
|
||||||
|
}
|
||||||
|
if offset > len(rows) {
|
||||||
|
offset = len(rows)
|
||||||
|
}
|
||||||
|
end := offset + limit
|
||||||
|
if end > len(rows) {
|
||||||
|
end = len(rows)
|
||||||
|
}
|
||||||
|
|
||||||
|
meta := &dto.HppPerFarmMetaDTO{
|
||||||
|
Page: params.Page,
|
||||||
|
Limit: limit,
|
||||||
|
TotalPages: totalPages,
|
||||||
|
TotalResults: totalResults,
|
||||||
|
Filters: filters,
|
||||||
|
}
|
||||||
|
data := &dto.HppPerFarmResponseData{
|
||||||
|
StartDate: params.StartDate,
|
||||||
|
EndDate: params.EndDate,
|
||||||
|
Rows: rows[offset:end],
|
||||||
|
Summary: summary,
|
||||||
|
}
|
||||||
|
return data, meta, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// hppPerFarmFlockCostRange returns the range-scoped production cost per component
|
||||||
|
// code for a project flock, EXCLUDING depreciation (which is summed separately
|
||||||
|
// from daily snapshots). Each non-depreciation production component is cumulative
|
||||||
|
// up to a date in the HPP v2 engine, so the range value is the difference between
|
||||||
|
// the cumulative breakdown at end and at the day before the range start.
|
||||||
|
func (s *repportService) hppPerFarmFlockCostRange(ctx context.Context, projectFlockID uint, startBreakdownDate, endBreakdownDate time.Time) (map[string]float64, error) {
|
||||||
|
if s.HppCostRepo == nil {
|
||||||
|
return nil, errors.New("hpp cost repository is not configured")
|
||||||
|
}
|
||||||
|
if s.HppV2Svc == nil {
|
||||||
|
return nil, errors.New("hpp v2 service is not configured")
|
||||||
|
}
|
||||||
|
|
||||||
|
codeTotals := make(map[string]float64)
|
||||||
|
pfkIDs, err := s.HppCostRepo.GetProjectFlockKandangIDs(ctx, projectFlockID)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, pfkID := range pfkIDs {
|
||||||
|
endBreakdown, err := s.HppV2Svc.CalculateHppBreakdown(pfkID, &endBreakdownDate)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
startBreakdown, err := s.HppV2Svc.CalculateHppBreakdown(pfkID, &startBreakdownDate)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
endMap := hppPerFarmProductionScopeTotalsByCode(endBreakdown)
|
||||||
|
startMap := hppPerFarmProductionScopeTotalsByCode(startBreakdown)
|
||||||
|
|
||||||
|
seen := make(map[string]bool, len(endMap)+len(startMap))
|
||||||
|
for code := range endMap {
|
||||||
|
seen[code] = true
|
||||||
|
}
|
||||||
|
for code := range startMap {
|
||||||
|
seen[code] = true
|
||||||
|
}
|
||||||
|
for code := range seen {
|
||||||
|
if code == hppPerFarmComponentDepreciation {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
codeTotals[code] += endMap[code] - startMap[code]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return codeTotals, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// sumHppPerFarmDepreciationOverRange sums the daily depreciation_value from
|
||||||
|
// farm_depreciation_snapshots across [startDate, endDate] per project flock,
|
||||||
|
// computing (and persisting) any missing daily snapshot on demand — same lazy
|
||||||
|
// compute path the single-day depreciation report uses.
|
||||||
|
func (s *repportService) sumHppPerFarmDepreciationOverRange(ctx context.Context, startDate, endDate time.Time, projectFlockIDs []uint) (map[uint]float64, error) {
|
||||||
|
acc := make(map[uint]float64, len(projectFlockIDs))
|
||||||
|
if len(projectFlockIDs) == 0 {
|
||||||
|
return acc, nil
|
||||||
|
}
|
||||||
|
if s.ExpenseDepreciationRepo == nil {
|
||||||
|
return nil, fiber.NewError(fiber.StatusInternalServerError, "expense depreciation repository is not configured")
|
||||||
|
}
|
||||||
|
|
||||||
|
for day := startDate; !day.After(endDate); day = day.AddDate(0, 0, 1) {
|
||||||
|
snapshots, err := s.ExpenseDepreciationRepo.GetSnapshotsByPeriodAndFarmIDs(ctx, day, projectFlockIDs)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
byID := make(map[uint]entity.FarmDepreciationSnapshot, len(snapshots))
|
||||||
|
for _, snapshot := range snapshots {
|
||||||
|
byID[snapshot.ProjectFlockId] = snapshot
|
||||||
|
}
|
||||||
|
|
||||||
|
missing := make([]uint, 0)
|
||||||
|
for _, id := range projectFlockIDs {
|
||||||
|
if _, ok := byID[id]; !ok {
|
||||||
|
missing = append(missing, id)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if len(missing) > 0 {
|
||||||
|
computed, err := s.computeExpenseDepreciationSnapshots(ctx, day, missing, nil)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
if len(computed) > 0 {
|
||||||
|
if err := s.ExpenseDepreciationRepo.UpsertSnapshots(ctx, computed); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
for _, snapshot := range computed {
|
||||||
|
byID[snapshot.ProjectFlockId] = snapshot
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
for id, snapshot := range byID {
|
||||||
|
acc[id] += snapshot.DepreciationValue
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return acc, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func hppPerFarmProductionScopeTotalsByCode(breakdown *approvalService.HppV2Breakdown) map[string]float64 {
|
||||||
|
out := make(map[string]float64)
|
||||||
|
if breakdown == nil {
|
||||||
|
return out
|
||||||
|
}
|
||||||
|
for i := range breakdown.Components {
|
||||||
|
comp := &breakdown.Components[i]
|
||||||
|
out[comp.Code] += hppPerFarmProductionScopeTotal(comp)
|
||||||
|
}
|
||||||
|
return out
|
||||||
|
}
|
||||||
|
|
||||||
|
// hppPerFarmProductionScopeTotal mirrors the engine's componentScopeTotal for the
|
||||||
|
// production_cost scope (that helper is unexported in the common service package).
|
||||||
|
func hppPerFarmProductionScopeTotal(component *approvalService.HppV2Component) float64 {
|
||||||
|
if component == nil {
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
total := 0.0
|
||||||
|
hasPartScopes := false
|
||||||
|
for i := range component.Parts {
|
||||||
|
part := &component.Parts[i]
|
||||||
|
if len(part.Scopes) == 0 {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
hasPartScopes = true
|
||||||
|
for _, scope := range part.Scopes {
|
||||||
|
if scope == hppPerFarmProductionScope {
|
||||||
|
total += part.Total
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if hasPartScopes {
|
||||||
|
return total
|
||||||
|
}
|
||||||
|
for _, scope := range component.Scopes {
|
||||||
|
if scope == hppPerFarmProductionScope {
|
||||||
|
return component.Total
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
func hppPerFarmSafeDiv(numerator, denominator float64) float64 {
|
||||||
|
if denominator <= 0 {
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
value := numerator / denominator
|
||||||
|
if math.IsNaN(value) || math.IsInf(value, 0) {
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
return value
|
||||||
|
}
|
||||||
|
|
||||||
|
func (s *repportService) parseHppPerFarmQuery(ctx *fiber.Ctx) (*validation.HppPerFarmQuery, dto.HppPerFarmFiltersDTO, error) {
|
||||||
|
page := ctx.QueryInt("page", 1)
|
||||||
|
if page < 1 {
|
||||||
|
page = 1
|
||||||
|
}
|
||||||
|
limit := ctx.QueryInt("limit", 10)
|
||||||
|
if limit < 1 {
|
||||||
|
limit = 10
|
||||||
|
}
|
||||||
|
|
||||||
|
rawArea := ctx.Query("area_id", "")
|
||||||
|
rawLocation := ctx.Query("location_id", "")
|
||||||
|
startDate := ctx.Query("start_date", "")
|
||||||
|
endDate := ctx.Query("end_date", "")
|
||||||
|
|
||||||
|
if strings.TrimSpace(startDate) == "" {
|
||||||
|
return nil, dto.HppPerFarmFiltersDTO{}, fiber.NewError(fiber.StatusBadRequest, "start_date is required")
|
||||||
|
}
|
||||||
|
if strings.TrimSpace(endDate) == "" {
|
||||||
|
return nil, dto.HppPerFarmFiltersDTO{}, fiber.NewError(fiber.StatusBadRequest, "end_date is required")
|
||||||
|
}
|
||||||
|
if strings.TrimSpace(rawLocation) == "" {
|
||||||
|
return nil, dto.HppPerFarmFiltersDTO{}, fiber.NewError(fiber.StatusBadRequest, "location_id is required")
|
||||||
|
}
|
||||||
|
|
||||||
|
areaIDs, err := parseCommaSeparatedInt64s(rawArea)
|
||||||
|
if err != nil {
|
||||||
|
return nil, dto.HppPerFarmFiltersDTO{}, fiber.NewError(fiber.StatusBadRequest, err.Error())
|
||||||
|
}
|
||||||
|
locationIDs, err := parseCommaSeparatedInt64s(rawLocation)
|
||||||
|
if err != nil {
|
||||||
|
return nil, dto.HppPerFarmFiltersDTO{}, fiber.NewError(fiber.StatusBadRequest, err.Error())
|
||||||
|
}
|
||||||
|
|
||||||
|
locationScope, err := m.ResolveLocationScope(ctx, s.ExpenseRealizationRepo.DB())
|
||||||
|
if err != nil {
|
||||||
|
return nil, dto.HppPerFarmFiltersDTO{}, err
|
||||||
|
}
|
||||||
|
areaScope, err := m.ResolveAreaScope(ctx, s.ExpenseRealizationRepo.DB())
|
||||||
|
if err != nil {
|
||||||
|
return nil, dto.HppPerFarmFiltersDTO{}, err
|
||||||
|
}
|
||||||
|
if locationScope.Restrict {
|
||||||
|
allowed := toInt64Slice(locationScope.IDs)
|
||||||
|
if len(allowed) == 0 {
|
||||||
|
locationIDs = []int64{-1}
|
||||||
|
} else if len(locationIDs) > 0 {
|
||||||
|
locationIDs = intersectInt64(locationIDs, allowed)
|
||||||
|
} else {
|
||||||
|
locationIDs = allowed
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if areaScope.Restrict {
|
||||||
|
allowed := toInt64Slice(areaScope.IDs)
|
||||||
|
if len(allowed) == 0 {
|
||||||
|
areaIDs = []int64{-1}
|
||||||
|
} else if len(areaIDs) > 0 {
|
||||||
|
areaIDs = intersectInt64(areaIDs, allowed)
|
||||||
|
} else {
|
||||||
|
areaIDs = allowed
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
params := &validation.HppPerFarmQuery{
|
||||||
|
Page: page,
|
||||||
|
Limit: limit,
|
||||||
|
StartDate: startDate,
|
||||||
|
EndDate: endDate,
|
||||||
|
AreaIDs: areaIDs,
|
||||||
|
LocationIDs: locationIDs,
|
||||||
|
}
|
||||||
|
filters := dto.NewHppPerFarmFiltersDTO(rawArea, rawLocation, startDate, endDate)
|
||||||
|
return params, filters, nil
|
||||||
|
}
|
||||||
|
|
||||||
func (s *repportService) parseExpenseDepreciationQuery(ctx *fiber.Ctx) (*validation.ExpenseDepreciationQuery, dto.ExpenseDepreciationFiltersDTO, error) {
|
func (s *repportService) parseExpenseDepreciationQuery(ctx *fiber.Ctx) (*validation.ExpenseDepreciationQuery, dto.ExpenseDepreciationFiltersDTO, error) {
|
||||||
page := ctx.QueryInt("page", 1)
|
page := ctx.QueryInt("page", 1)
|
||||||
if page < 1 {
|
if page < 1 {
|
||||||
|
|||||||
@@ -78,6 +78,15 @@ type HppPerKandangQuery struct {
|
|||||||
WeightMax *float64 `query:"-"`
|
WeightMax *float64 `query:"-"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type HppPerFarmQuery struct {
|
||||||
|
Page int `query:"page" validate:"omitempty,min=1,gt=0"`
|
||||||
|
Limit int `query:"limit" validate:"omitempty,min=1,gt=0"`
|
||||||
|
StartDate string `query:"start_date" validate:"required,datetime=2006-01-02"`
|
||||||
|
EndDate string `query:"end_date" validate:"required,datetime=2006-01-02"`
|
||||||
|
AreaIDs []int64 `query:"-"`
|
||||||
|
LocationIDs []int64 `query:"-"`
|
||||||
|
}
|
||||||
|
|
||||||
type HppV2BreakdownQuery struct {
|
type HppV2BreakdownQuery struct {
|
||||||
ProjectFlockKandangID uint `query:"project_flock_kandang_id" validate:"required,gt=0"`
|
ProjectFlockKandangID uint `query:"project_flock_kandang_id" validate:"required,gt=0"`
|
||||||
Period string `query:"period" validate:"required,datetime=2006-01-02"`
|
Period string `query:"period" validate:"required,datetime=2006-01-02"`
|
||||||
|
|||||||
@@ -244,8 +244,12 @@ func AttachProductionStandards(ctx context.Context, db *gorm.DB, warnOnly bool,
|
|||||||
growthDetailByStd[standardID] = growthMap
|
growthDetailByStd[standardID] = growthMap
|
||||||
}
|
}
|
||||||
|
|
||||||
// Batch-load laying transfer targets → source PFK chick_in_dates
|
// Batch-load laying transfer targets → EARLIEST source PFK chick_in_date per target.
|
||||||
// untuk menentukan actual chicken week (bukan hardcode LayingWeekStart offset)
|
// Multi-source: 1 target kandang bisa menerima dari multiple transfer terpisah. Untuk
|
||||||
|
// production standard week, kita pakai chick_in_date PALING AWAL (umur paling tua) sebagai
|
||||||
|
// anchor — agar perbandingan standar produksi tidak under-estimate umur ayam.
|
||||||
|
// Source diambil dari header `laying_transfers.source_project_flock_kandang_id` (single source
|
||||||
|
// of truth per migration 20260307130342), bukan dari `laying_transfer_sources`.
|
||||||
type transferChickIn struct {
|
type transferChickIn struct {
|
||||||
TargetPFKID uint
|
TargetPFKID uint
|
||||||
ChickInDate time.Time
|
ChickInDate time.Time
|
||||||
@@ -255,14 +259,16 @@ func AttachProductionStandards(ctx context.Context, db *gorm.DB, warnOnly bool,
|
|||||||
if len(layingPFKIDs) > 0 {
|
if len(layingPFKIDs) > 0 {
|
||||||
var results []transferChickIn
|
var results []transferChickIn
|
||||||
db.Raw(`
|
db.Raw(`
|
||||||
SELECT ltt.target_project_flock_kandang_id AS target_pfk_id, pc.chick_in_date
|
SELECT ltt.target_project_flock_kandang_id AS target_pfk_id,
|
||||||
|
MIN(pc.chick_in_date) AS chick_in_date
|
||||||
FROM laying_transfer_targets ltt
|
FROM laying_transfer_targets ltt
|
||||||
JOIN laying_transfer_sources lts ON lts.laying_transfer_id = ltt.laying_transfer_id
|
JOIN laying_transfers lt ON lt.id = ltt.laying_transfer_id AND lt.deleted_at IS NULL
|
||||||
JOIN project_chickins pc ON pc.project_flock_kandang_id = lts.source_project_flock_kandang_id
|
JOIN project_chickins pc ON pc.project_flock_kandang_id = lt.source_project_flock_kandang_id
|
||||||
WHERE ltt.target_project_flock_kandang_id IN ?
|
WHERE ltt.target_project_flock_kandang_id IN ?
|
||||||
AND ltt.deleted_at IS NULL
|
AND ltt.deleted_at IS NULL
|
||||||
AND lts.deleted_at IS NULL
|
AND lt.source_project_flock_kandang_id IS NOT NULL
|
||||||
AND pc.deleted_at IS NULL
|
AND pc.deleted_at IS NULL
|
||||||
|
GROUP BY ltt.target_project_flock_kandang_id
|
||||||
`, layingPFKIDs).Scan(&results)
|
`, layingPFKIDs).Scan(&results)
|
||||||
for _, r := range results {
|
for _, r := range results {
|
||||||
sourceChickInByTarget[r.TargetPFKID] = r.ChickInDate
|
sourceChickInByTarget[r.TargetPFKID] = r.ChickInDate
|
||||||
|
|||||||
Reference in New Issue
Block a user