Merge remote-tracking branch 'origin/master'

This commit is contained in:
2026-02-13 07:27:57 +03:00
parent d571fe2fd5
commit 7f56bb40c5
38 changed files with 1709 additions and 457 deletions

View File

@@ -58,7 +58,7 @@ func OrderListRoute(mssql *sql.DB) http.Handler {
count := 0
// ==================================================
// 🧠 SCAN — SQL SELECT ile BİRE BİR (14 kolon)
// 🧠 SCAN — SQL SELECT ile BİRE BİR (17 kolon)
// ==================================================
for rows.Next() {
@@ -80,11 +80,14 @@ func OrderListRoute(mssql *sql.DB) http.Handler {
&o.TotalAmount, // 10
&o.TotalAmountUSD, // 11
&o.PackedAmount, // 12
&o.PackedUSD, // 13
&o.PackedRatePct, // 14
&o.IsCreditableConfirmed, // 12
&o.Description, // 13
&o.IsCreditableConfirmed, // 15
&o.Description, // 16
&o.ExchangeRateUSD, // 14
&o.ExchangeRateUSD, // 17
)
if err != nil {