- check level in AddCategory.
- fix bug, jd outSystemId is string
This commit is contained in:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user