- check level in AddCategory.

- fix bug, jd outSystemId is string
This commit is contained in:
gazebo
2018-10-25 15:11:37 +08:00
parent 4d989c2115
commit e4b46c9706
2 changed files with 20 additions and 2 deletions

View File

@@ -215,7 +215,7 @@ func (p *PurchaseHandler) RefreshAllStoresID(ctx *jxcontext.Context, parentTask
task1 := tasksch.NewParallelTask(taskName, nil, ctx.GetUserName(), func(task *tasksch.ParallelTask, batchItemList []interface{}, params ...interface{}) (retVal interface{}, err error) {
store := batchItemList[0].(*tJdStoreInfo)
storeParams := map[string]interface{}{
"outSystemId": store.ID,
"outSystemId": utils.Int2Str(int(store.ID)),
}
if step == 1 {
storeParams["outSystemId"] = utils.GetUUID()