|
|
@ -80,9 +80,23 @@ public class StockRulesService {
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* 删除建垛规则
|
|
|
|
* 删除建垛规则
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* @param id
|
|
|
|
* @param id 规则ID
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
public void delete(String id) {
|
|
|
|
public void delete(String id) {
|
|
|
|
stockRulesDao.deleteById(id);
|
|
|
|
stockRulesDao.deleteById(id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* 根据客户ID查询当前启用的垛号生成规则
|
|
|
|
|
|
|
|
*
|
|
|
|
|
|
|
|
* @param customerId 客户ID
|
|
|
|
|
|
|
|
* @return
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
public StockRulesEntity getEnableStockRule(String customerId) {
|
|
|
|
|
|
|
|
StockRulesEntity stockRulesEntity = stockRulesDao.selectOne(new QueryWrapper<StockRulesEntity>()
|
|
|
|
|
|
|
|
.eq(StockRulesEntity.COL_CUSTOMERID, customerId)
|
|
|
|
|
|
|
|
.eq(StockRulesEntity.COL_STATUS, 1));
|
|
|
|
|
|
|
|
return stockRulesEntity;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|