Commit 5c065d9b by Joneq

提交海关字段

parent aeab8f3a
......@@ -146,7 +146,13 @@ func handleCurrentTable(tableName,currentDate string) {
if value.String() != "" {
//获取key和val并拼接字符串
currentKey += key.String()+","
//20210812 海关替换goods_id 为 hscode
if tableName == "Purchase_Order" && key.String()=="goods_id" {
currentKey += "hscode,"
}else{
currentKey += key.String() + ","
}
valueString += "?,"
currentString = append(currentString,value.String())
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment