From 10772b6dc06778edee278baee0e18ff427f6bdcb Mon Sep 17 00:00:00 2001
From: quchuanping <quchuanping@qq.com>
Date: Mon, 14 Nov 2022 14:21:20 +0800
Subject: [PATCH] =?UTF-8?q?=E4=BC=9A=E8=AE=A2=E8=B4=A7?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 upstream/upstream.go | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/upstream/upstream.go b/upstream/upstream.go
index 2517db9..263f475 100644
--- a/upstream/upstream.go
+++ b/upstream/upstream.go
@@ -16,6 +16,7 @@ const (
 	Ikc   = 13 //爱库存
 	Dwd   = 14 //好食期
 	Itao  = 15 //淘特
+	Hdh   = 16 //会订货
 )
 
 var (
@@ -80,6 +81,10 @@ func GetUpstreamList() (res interface{}, err error) {
 			"key":  Itao,
 			"name": GetUpstreamName(Itao),
 		},
+		g.Map{
+			"key":  Hdh,
+			"name": GetUpstreamName(Hdh),
+		},
 	}
 	return
 }
@@ -108,6 +113,8 @@ func GetUpstreamName(source int) string {
 		return "华东一仓"
 	case Itao:
 		return "淘宝"
+	case Hdh:
+		return "会订货"
 	default:
 		return "未知来源"
 	}
-- 
2.18.1