|
@@ -8747,21 +8747,23 @@ func Gzyb3505(struct3505 models.Struct3505, secret_key string) (string, string)
|
8747
|
8747
|
inputData["MDTRT_SETL_TYPE"] = struct3505.MdtrtSetlType // 人员编号 (来自1101接口返回)
|
8748
|
8748
|
|
8749
|
8749
|
inputData["bchno"] = struct3505.Bchno // 人员编号 (来自1101接口返回)
|
8750
|
|
- //inputData["drug_trac_codg"] = struct3505.DrugTracCodg // 人员编号 (来自1101接口返回)
|
|
8750
|
+ inputData["drug_trac_codg"] = struct3505.DrugTracCodg // 人员编号 (来自1101接口返回)
|
8751
|
8751
|
inputData["drug_prod_barc"] = struct3505.DrugProdBarc // 人员编号 (来自1101接口返回)
|
8752
|
8752
|
inputData["shelf_posi"] = struct3505.ShelfPosi // 人员编号 (来自1101接口返回)
|
8753
|
8753
|
inputData["sel_retn_cnt"] = struct3505.SelRetnCnt // 人员编号 (来自1101接口返回)
|
8754
|
8754
|
inputData["sel_retn_time"] = struct3505.SelRetnTime // 人员编号 (来自1101接口返回)
|
8755
|
8755
|
inputData["sel_retn_opter_name"] = struct3505.SelRetnOpterName // 人员编号 (来自1101接口返回)
|
8756
|
8756
|
inputData["memo"] = struct3505.Memo // 人员编号 (来自1101接口返回)
|
8757
|
|
-
|
|
8757
|
+ //drug_trac_cod .g
|
8758
|
8758
|
feedetail := make([]map[string]interface{}, 0)
|
8759
|
8759
|
|
8760
|
8760
|
codes := strings.Split(struct3505.DrugTracCodg, ",")
|
8761
|
8761
|
for _, item := range codes {
|
8762
|
|
- druginputData := make(map[string]interface{})
|
8763
|
|
- druginputData["drug_trac_codg"] = item
|
8764
|
|
- feedetail = append(feedetail, druginputData)
|
|
8762
|
+ if len(item) > 0{
|
|
8763
|
+ druginputData := make(map[string]interface{})
|
|
8764
|
+ druginputData["drug_trac_codg"] = item
|
|
8765
|
+ feedetail = append(feedetail, druginputData)
|
|
8766
|
+ }
|
8765
|
8767
|
}
|
8766
|
8768
|
inputData["drugtracinfo"] = feedetail
|
8767
|
8769
|
input["selinfo"] = inputData
|