mirror of
https://gitlab.com/mbugroup/lti-api.git
synced 2026-05-24 15:25:43 +00:00
Fix[BE]: fixing and refactoring closing keuangan to use hpp service and repo for some getter data
This commit is contained in:
@@ -1,8 +1,12 @@
|
||||
package dto
|
||||
|
||||
// === CLOSING KEUANGAN CODES ===
|
||||
import (
|
||||
"strings"
|
||||
|
||||
entity "gitlab.com/mbugroup/lti-api.git/internal/entities"
|
||||
"gitlab.com/mbugroup/lti-api.git/internal/utils"
|
||||
)
|
||||
|
||||
// Closing HPP Codes
|
||||
type ClosingHPPCode string
|
||||
|
||||
const (
|
||||
@@ -14,36 +18,30 @@ const (
|
||||
HPPCodeEkspedisi ClosingHPPCode = "EKSPEDISI"
|
||||
)
|
||||
|
||||
// Closing Profit Loss Codes
|
||||
type ClosingProfitLossCode string
|
||||
|
||||
const (
|
||||
PLCodeSales ClosingProfitLossCode = "SALES"
|
||||
PLCodeSapronak ClosingProfitLossCode = "SAPRONAK"
|
||||
PLCodeOverhead ClosingProfitLossCode = "OVERHEAD"
|
||||
PLCodeSales ClosingProfitLossCode = "SALES"
|
||||
PLCodeSapronak ClosingProfitLossCode = "SAPRONAK"
|
||||
PLCodeOverhead ClosingProfitLossCode = "OVERHEAD"
|
||||
PLCodeEkspedisi ClosingProfitLossCode = "EKSPEDISI"
|
||||
)
|
||||
|
||||
// === NEW CLOSING KEUANGAN DTO ===
|
||||
|
||||
// FinancialMetrics represents financial metrics with per unit and total amounts
|
||||
type FinancialMetrics struct {
|
||||
RpPerBird float64 `json:"rp_per_bird"`
|
||||
RpPerKg float64 `json:"rp_per_kg"`
|
||||
Amount float64 `json:"amount"`
|
||||
}
|
||||
|
||||
// HPPItem represents an item in HPP section
|
||||
type HPPItem struct {
|
||||
ID uint `json:"id"`
|
||||
Category string `json:"category"` // "purchase" or "overhead"
|
||||
Code string `json:"code"` // "PAKAN", "OVK", "DOC", "EKSPEDISI"
|
||||
Category string `json:"category"`
|
||||
Code string `json:"code"`
|
||||
Label string `json:"label"`
|
||||
Budgeting FinancialMetrics `json:"budgeting"`
|
||||
Realization FinancialMetrics `json:"realization"`
|
||||
}
|
||||
|
||||
// HPPSummary represents summary for HPP section
|
||||
type HPPSummary struct {
|
||||
Label string `json:"label"`
|
||||
Budgeting FinancialMetrics `json:"budgeting"`
|
||||
@@ -52,52 +50,41 @@ type HPPSummary struct {
|
||||
EggRealization *FinancialMetrics `json:"egg_realization,omitempty"`
|
||||
}
|
||||
|
||||
// HPPSection represents HPP data section
|
||||
type HPPSection struct {
|
||||
Items []HPPItem `json:"items"`
|
||||
Items []HPPItem `json:"items"`
|
||||
Summary HPPSummary `json:"summary"`
|
||||
}
|
||||
|
||||
// ProfitLossItem represents an item in Profit & Loss section
|
||||
type ProfitLossItem struct {
|
||||
Code string `json:"code"` // "SALES", "PURCHASE_DOC", "OVERHEAD", "EKSPEDISI"
|
||||
Code string `json:"code"`
|
||||
Label string `json:"label"`
|
||||
Type string `json:"type"` // "income", "purchase", "overhead"
|
||||
Type string `json:"type"`
|
||||
RpPerBird float64 `json:"rp_per_bird"`
|
||||
RpPerKg float64 `json:"rp_per_kg"`
|
||||
Amount float64 `json:"amount"`
|
||||
}
|
||||
|
||||
// ProfitLossSummary represents summary for Profit & Loss section
|
||||
type ProfitLossSummary struct {
|
||||
GrossProfit FinancialMetrics `json:"gross_profit"`
|
||||
SubTotal FinancialMetrics `json:"sub_total"`
|
||||
NetProfit FinancialMetrics `json:"net_profit"`
|
||||
}
|
||||
|
||||
// ProfitLossSection represents Profit & Loss data section
|
||||
type ProfitLossSection struct {
|
||||
Items []ProfitLossItem `json:"items"`
|
||||
Summary ProfitLossSummary `json:"summary"`
|
||||
Items []ProfitLossItem `json:"items"`
|
||||
Summary ProfitLossSummary `json:"summary"`
|
||||
}
|
||||
|
||||
// ClosingKeuanganData represents the main data structure
|
||||
type ClosingKeuanganData struct {
|
||||
HPP HPPSection `json:"hpp"`
|
||||
HPP HPPSection `json:"hpp"`
|
||||
ProfitLoss ProfitLossSection `json:"profit_loss"`
|
||||
}
|
||||
|
||||
// ClosingKeuanganResponse represents the full API response
|
||||
type ClosingKeuanganResponse struct {
|
||||
Code int `json:"code"`
|
||||
Status string `json:"status"`
|
||||
Message string `json:"message"`
|
||||
Data ClosingKeuanganData `json:"data"`
|
||||
type MetricsCalculator struct {
|
||||
TotalPopulation float64
|
||||
ActualPopulation float64
|
||||
TotalWeightProduced float64
|
||||
}
|
||||
|
||||
// === MAPPER FUNCTIONS ===
|
||||
|
||||
// ToFinancialMetrics creates FinancialMetrics from values
|
||||
func ToFinancialMetrics(rpPerBird, rpPerKg, amount float64) FinancialMetrics {
|
||||
return FinancialMetrics{
|
||||
RpPerBird: rpPerBird,
|
||||
@@ -106,7 +93,6 @@ func ToFinancialMetrics(rpPerBird, rpPerKg, amount float64) FinancialMetrics {
|
||||
}
|
||||
}
|
||||
|
||||
// ToHPPItem creates HPP item
|
||||
func ToHPPItem(id uint, category, code, label string, budgeting, realization FinancialMetrics) HPPItem {
|
||||
return HPPItem{
|
||||
ID: id,
|
||||
@@ -118,7 +104,6 @@ func ToHPPItem(id uint, category, code, label string, budgeting, realization Fin
|
||||
}
|
||||
}
|
||||
|
||||
// ToHPPSummary creates HPP summary
|
||||
func ToHPPSummary(label string, budgeting, realization FinancialMetrics, eggBudgeting, eggRealization *FinancialMetrics) HPPSummary {
|
||||
return HPPSummary{
|
||||
Label: label,
|
||||
@@ -129,7 +114,6 @@ func ToHPPSummary(label string, budgeting, realization FinancialMetrics, eggBudg
|
||||
}
|
||||
}
|
||||
|
||||
// ToHPPSection creates HPP section
|
||||
func ToHPPSection(items []HPPItem, summary HPPSummary) HPPSection {
|
||||
return HPPSection{
|
||||
Items: items,
|
||||
@@ -137,7 +121,6 @@ func ToHPPSection(items []HPPItem, summary HPPSummary) HPPSection {
|
||||
}
|
||||
}
|
||||
|
||||
// ToProfitLossItem creates Profit & Loss item
|
||||
func ToProfitLossItem(code, label, itemType string, rpPerBird, rpPerKg, amount float64) ProfitLossItem {
|
||||
return ProfitLossItem{
|
||||
Code: code,
|
||||
@@ -149,7 +132,6 @@ func ToProfitLossItem(code, label, itemType string, rpPerBird, rpPerKg, amount f
|
||||
}
|
||||
}
|
||||
|
||||
// ToProfitLossSummary creates Profit & Loss summary
|
||||
func ToProfitLossSummary(grossProfit, subTotal, netProfit FinancialMetrics) ProfitLossSummary {
|
||||
return ProfitLossSummary{
|
||||
GrossProfit: grossProfit,
|
||||
@@ -158,7 +140,6 @@ func ToProfitLossSummary(grossProfit, subTotal, netProfit FinancialMetrics) Prof
|
||||
}
|
||||
}
|
||||
|
||||
// ToProfitLossSection creates Profit & Loss section
|
||||
func ToProfitLossSection(items []ProfitLossItem, summary ProfitLossSummary) ProfitLossSection {
|
||||
return ProfitLossSection{
|
||||
Items: items,
|
||||
@@ -166,7 +147,6 @@ func ToProfitLossSection(items []ProfitLossItem, summary ProfitLossSummary) Prof
|
||||
}
|
||||
}
|
||||
|
||||
// ToClosingKeuanganData creates complete closing keuangan data
|
||||
func ToClosingKeuanganData(hpp HPPSection, profitLoss ProfitLossSection) ClosingKeuanganData {
|
||||
return ClosingKeuanganData{
|
||||
HPP: hpp,
|
||||
@@ -174,12 +154,72 @@ func ToClosingKeuanganData(hpp HPPSection, profitLoss ProfitLossSection) Closing
|
||||
}
|
||||
}
|
||||
|
||||
// ToSuccessClosingKeuanganResponse creates success response
|
||||
func ToSuccessClosingKeuanganResponse(data ClosingKeuanganData) ClosingKeuanganResponse {
|
||||
return ClosingKeuanganResponse{
|
||||
Code: 200,
|
||||
Status: "success",
|
||||
Message: "Get closing keuangan successfully",
|
||||
Data: data,
|
||||
func (mc *MetricsCalculator) CalculateMetrics(amount float64) (rpPerBird, rpPerKg float64) {
|
||||
if mc.ActualPopulation > 0 {
|
||||
rpPerBird = amount / mc.ActualPopulation
|
||||
}
|
||||
if mc.TotalWeightProduced > 0 {
|
||||
rpPerKg = amount / mc.TotalWeightProduced
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
func (mc *MetricsCalculator) CalculateProfitLossMetrics(amount float64) (rpPerBird, rpPerKg float64) {
|
||||
if mc.TotalPopulation > 0 {
|
||||
rpPerBird = amount / mc.TotalPopulation
|
||||
}
|
||||
if mc.TotalWeightProduced > 0 {
|
||||
rpPerKg = amount / mc.TotalWeightProduced
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
type ProductFilter struct {
|
||||
ProjectFlockCategory string
|
||||
}
|
||||
|
||||
func (pf *ProductFilter) IsEggProduct(product entity.Product) bool {
|
||||
for _, flag := range product.Flags {
|
||||
flagName := strings.ToUpper(flag.Name)
|
||||
if flagName == string(utils.FlagTelur) ||
|
||||
flagName == string(utils.FlagTelurUtuh) ||
|
||||
flagName == string(utils.FlagTelurPecah) ||
|
||||
flagName == string(utils.FlagTelurPutih) ||
|
||||
flagName == string(utils.FlagTelurRetak) {
|
||||
return true
|
||||
}
|
||||
}
|
||||
return false
|
||||
}
|
||||
|
||||
func (pf *ProductFilter) IsChickenProduct(product entity.Product) bool {
|
||||
for _, flag := range product.Flags {
|
||||
flagName := strings.ToUpper(flag.Name)
|
||||
if flagName == string(utils.FlagAyamAfkir) ||
|
||||
flagName == string(utils.FlagAyamCulling) ||
|
||||
flagName == string(utils.FlagAyamMati) {
|
||||
return true
|
||||
}
|
||||
}
|
||||
return false
|
||||
}
|
||||
|
||||
func (pf *ProductFilter) ShouldIncludeProduct(product entity.Product) bool {
|
||||
if pf.ProjectFlockCategory == string(utils.ProjectFlockCategoryLaying) {
|
||||
return pf.IsEggProduct(product)
|
||||
}
|
||||
return pf.IsChickenProduct(product) || (!pf.IsEggProduct(product) && !pf.IsChickenProduct(product))
|
||||
}
|
||||
|
||||
func (pf *ProductFilter) FilterDeliveryProducts(deliveries []entity.MarketingDeliveryProduct) []entity.MarketingDeliveryProduct {
|
||||
filtered := make([]entity.MarketingDeliveryProduct, 0)
|
||||
for _, delivery := range deliveries {
|
||||
if delivery.MarketingProduct.ProductWarehouse.Product.Id == 0 {
|
||||
continue
|
||||
}
|
||||
if pf.ShouldIncludeProduct(delivery.MarketingProduct.ProductWarehouse.Product) {
|
||||
filtered = append(filtered, delivery)
|
||||
}
|
||||
}
|
||||
return filtered
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user