skyouc
1 天以前 32a41ca494eed0cc37fcb3aff1e9f83e1a3792fc
rsf-server/src/main/java/com/vincent/rsf/server/api/controller/erp/SyncOrderController.java
@@ -7,7 +7,6 @@
import com.vincent.rsf.server.common.annotation.OperationLog;
import com.vincent.rsf.server.common.utils.ExcelUtil;
import com.vincent.rsf.server.manager.entity.excel.AsnOrderTemplate;
import com.vincent.rsf.server.manager.enums.OrderType;
import com.vincent.rsf.server.system.controller.BaseController;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
@@ -118,7 +117,8 @@
        if (Objects.isNull(transferParams)) {
            throw new CoolException("参数不能为空!!");
        }
        return receiveMsgService.syncTransfer(transferParams);
        return receiveMsgService.syncTransfer(transferParams, getLoginUserId());
    }
@@ -135,7 +135,7 @@
        if (Objects.isNull(reviseParams)) {
            return R.error("参数不能为空!!");
        }
        return receiveMsgService.syncLocRevise(reviseParams);
        return receiveMsgService.syncLocRevise(reviseParams, getLoginUserId());
    }
    /**