aditya.siregar 6063713ad2 Inquiry Fee
2024-08-21 22:48:14 +07:00

13 lines
178 B
Go

package config
type Order struct {
Fee float64 `mapstructure:"fee"`
}
func (w *Order) GetOrderFee(source string) float64 {
if source == "POS" {
return 0
}
return w.Fee
}