|
@@ -696,7 +696,7 @@ func BuyerList(partyA, supplier, heterotophy, intermediary, agency string, posit
|
|
|
for _, s := range strings.Split(agency, ",") {
|
|
|
agencyArr = append(agencyArr, fmt.Sprintf("'%s'", s))
|
|
|
}
|
|
|
- sqlStr := fmt.Sprintf(`SELECT buyer, buyer_id FROM transaction_info where agency_id in (%s) order by userid`, strings.Join(agencyArr, ","))
|
|
|
+ sqlStr := fmt.Sprintf(`SELECT buyer, buyer_id FROM transaction_info where agency_id in (%s) `, strings.Join(agencyArr, ","))
|
|
|
FindHandle(sqlStr, dataMap)
|
|
|
}
|
|
|
return dataMap
|