| | |
| | | |
| | | |
| | | import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.vincent.rsf.framework.common.R; |
| | | import com.vincent.rsf.server.api.controller.erp.params.*; |
| | | import com.vincent.rsf.server.common.domain.BaseParam; |
| | | import com.vincent.rsf.server.common.domain.PageParam; |
| | | import com.vincent.rsf.server.manager.entity.Loc; |
| | | import com.vincent.rsf.server.manager.entity.Transfer; |
| | | |
| | | import java.util.List; |
| | | |
| | |
| | | * @version 1.0 |
| | | */ |
| | | R syncLocRevise(SyncLocReviseParams reviseParams); |
| | | |
| | | /** |
| | | * @author Ryan |
| | | * @date 2025/8/20 |
| | | * @description: 单据修改--收货通知单/出库单/盘点单 |
| | | * @version 1.0 |
| | | */ |
| | | R syncOrderUpdate(SyncOrderParams orders); |
| | | |
| | | /** |
| | | * @author Ryan |
| | | * @date 2025/8/21 |
| | | * @description: 单据删除 |
| | | * @version 1.0 |
| | | */ |
| | | R syncOrderDelete(List<SyncOrderParams> orders); |
| | | |
| | | /** |
| | | * @author Ryan |
| | | * @date 2025/8/21 |
| | | * @description: 调拔单明细查询 |
| | | * @version 1.0 |
| | | */ |
| | | R queryTransfer(QueryOrderParam transferParams); |
| | | |
| | | /** |
| | | * @author Ryan |
| | | * @date 2025/8/22 |
| | | * @description: 上报盘点差异单 |
| | | * @version 1.0 |
| | | */ |
| | | R syncCheckDiffs(SyncCheckDiffParams syncParams); |
| | | } |