mirror of
https://gitlab.com/mbugroup/lti-api.git
synced 2026-05-24 07:15:43 +00:00
feat[BE]: Add GetClosingKeuanganByKandang endpoint and related service methods
This commit is contained in:
@@ -1,5 +1,29 @@
|
||||
package dto
|
||||
|
||||
// === CLOSING KEUANGAN CODES ===
|
||||
|
||||
// Closing HPP Codes
|
||||
type ClosingHPPCode string
|
||||
|
||||
const (
|
||||
HPPCodePakan ClosingHPPCode = "PAKAN"
|
||||
HPPCodeOVK ClosingHPPCode = "OVK"
|
||||
HPPCodeDOC ClosingHPPCode = "DOC"
|
||||
HPPCodeDepresiasi ClosingHPPCode = "DEPRESIASI"
|
||||
HPPCodeOverhead ClosingHPPCode = "OVERHEAD"
|
||||
HPPCodeEkspedisi ClosingHPPCode = "EKSPEDISI"
|
||||
)
|
||||
|
||||
// Closing Profit Loss Codes
|
||||
type ClosingProfitLossCode string
|
||||
|
||||
const (
|
||||
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
|
||||
|
||||
Reference in New Issue
Block a user