Files
bssapp/svc/models/orderlist.go

39 lines
1.2 KiB
Go
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
package models
// ========================================================
// 📌 OrderList — Sipariş Listeleme Modeli (FINAL & UI SAFE)
// ========================================================
type OrderList struct {
// 🆔 Sipariş Bilgileri
OrderHeaderID string `json:"OrderHeaderID"`
OrderNumber string `json:"OrderNumber"`
OrderDate string `json:"OrderDate"`
// 🧾 Cari Bilgileri
CurrAccCode string `json:"CurrAccCode"`
CurrAccDescription string `json:"CurrAccDescription"`
// 👤 Müşteri Tanımları
MusteriTemsilcisi string `json:"MusteriTemsilcisi"`
Piyasa string `json:"Piyasa"`
// Sipariş Durumu
CreditableConfirmedDate string `json:"CreditableConfirmedDate"`
IsCreditableConfirmed bool `json:"IsCreditableConfirmed"`
// 💱 Para Birimi
DocCurrencyCode string `json:"DocCurrencyCode"`
// 💰 Tutarlar
TotalAmount float64 `json:"TotalAmount"`
TotalAmountUSD float64 `json:"TotalAmountUSD"`
PackedAmount float64 `json:"PackedAmount"`
PackedUSD float64 `json:"PackedUSD"`
PackedRatePct float64 `json:"PackedRatePct"`
// 📝 Açıklama
Description string `json:"Description"`
ExchangeRateUSD float64 `json:"ExchangeRateUSD"`
}