门店评分

This commit is contained in:
Rosy-zhudan
2019-09-03 14:48:37 +08:00
parent b12d7dad77
commit ad1bcd36ff
5 changed files with 320 additions and 0 deletions

View File

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