|
|
@@ -238,4 +238,15 @@ public class SaleQuotationServiceImpl implements SaleQuotationService {
|
|
|
return pagingReleaseCountDao.getUnreadCount(SystemSession.getUser().getEnterprise().getUu(),
|
|
|
SystemSession.getUser().getUserUU(), "purc", "SALE$QUOTATION");
|
|
|
}
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public void check(Long[] ids) {
|
|
|
+ for (Long id : ids) {
|
|
|
+ SaleQuotation quotation = saleQuotationDao.findOne(id);
|
|
|
+ if (quotation != null) {
|
|
|
+ quotation.setStatus((short) Status.UNAUDIT.value());
|
|
|
+ saleQuotationDao.save(quotation);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|