@@ -152,6 +152,9 @@ func (s *CustomerService) customerCode(province, industry string) (string, error
}
func (s *CustomerService) customerProvinceCode(province string) string {
+ if province == "重庆市" {
+ return "CQ"
+ }
province = strings.Trim(province, "市")
province = strings.Trim(province, "省")
province = strings.Trim(province, "特别行政区")