- IsSyncStatusSec fixed to IsSyncStatusSeq

- 修改(或创建)单平台门店商品时,如果没有平台分类ID,报警
This commit is contained in:
gazebo
2019-09-17 11:30:07 +08:00
parent 7bc963c31f
commit b54f86f00c
2 changed files with 15 additions and 7 deletions

View File

@@ -114,7 +114,7 @@ func IsSyncStatusPrice(syncStatus int8) bool {
return (syncStatus & SyncFlagPriceMask) != 0
}
func IsSyncStatusSec(syncStatus int8) bool {
func IsSyncStatusSeq(syncStatus int8) bool {
return (syncStatus & SyncFlagSeqMask) != 0
}