Accept Merge Request #3: (don -> mark)

Merge Request: 门店评分
Created By: @zhudan
Accepted By: @xujianhua
URL: https://rosydev.coding.net/p/jx-callback/d/jx-callback/git/merge/3
This commit is contained in:
xujianhua
2019-09-17 11:12:33 +08:00
parent 7bc963c31f
commit 9c7ae16186
12 changed files with 1094 additions and 30 deletions

View File

@@ -263,3 +263,11 @@ func GetSingleStoreVendorIDs() (vendorIDs []int) {
}
return vendorIDs
}
func IsMultiStore(vendorID int) bool {
if _, ok := GetPurchasePlatformFromVendorID(vendorID).(IMultipleStoresHandler); ok {
return true
}
return false
}