| | |
| | | List<StockOutRecordExportData> listStockOutRecordExportData(@Param("params") StockOutRecordDto stockOutRecordDto); |
| | | |
| | | IPage<SalesOutboundVo> listPageAccountSales(Page page, @Param("req") SalesOutboundDto salesOutboundDto); |
| | | |
| | | /** |
| | | * 按来源明细id批量查询出库记录。 |
| | | * |
| | | * <p>stock_out_record 不在 {@code IgnoreTableConfig.IGNORE_TABLES} 白名单里,普通查询会被 |
| | | * DataScopeSqlInterceptor 追加 create_user/dept_id 条件。委外订单要靠这批记录做「完成前的出库审批校验」 |
| | | * 和「作废时的占用释放」,换个账号查不到就会静默漏校验、占用释放不掉,所以这里显式跳过数据权限。</p> |
| | | */ |
| | | List<StockOutRecord> selectByRecordIds(@Param("recordIds") List<Long> recordIds, |
| | | @Param("recordType") String recordType); |
| | | } |