Compare commits
4 Commits
2d681f27f5
...
mehdi-dev
| Author | SHA1 | Date | |
|---|---|---|---|
| 95effc77b8 | |||
| d902d9d933 | |||
| 5264159e1b | |||
| 056d986fcd |
@ -149,6 +149,10 @@
|
|||||||
|
|
||||||
<boolean name="isDangerousProduct" title="Is dangerous" />
|
<boolean name="isDangerousProduct" title="Is dangerous" />
|
||||||
|
|
||||||
|
<boolean name="needDt1Validation" title="DT1 validation required" massUpdate="true"/>
|
||||||
|
<boolean name="needDt2Validation" title="DT2 validation required" massUpdate="true"/>
|
||||||
|
<boolean name="needQaQc1Validation" title="QAQC1 validation required" massUpdate="true"/>
|
||||||
|
<boolean name="needQaQc2Validation" title="QAQC2 validation required" massUpdate="true"/>
|
||||||
|
|
||||||
<many-to-one name="coaSpec" ref="com.axelor.meta.db.MetaFile" />
|
<many-to-one name="coaSpec" ref="com.axelor.meta.db.MetaFile" />
|
||||||
|
|
||||||
@ -209,6 +213,10 @@
|
|||||||
<field name="shp" />
|
<field name="shp" />
|
||||||
<field name="stklim" />
|
<field name="stklim" />
|
||||||
<field name="ug" />
|
<field name="ug" />
|
||||||
|
<field name="needDt1Validation" />
|
||||||
|
<field name="needDt2Validation" />
|
||||||
|
<field name="needQaQc1Validation" />
|
||||||
|
<field name="needQaQc2Validation" />
|
||||||
<message if="true" on="UPDATE">Product updated</message>
|
<message if="true" on="UPDATE">Product updated</message>
|
||||||
</track>
|
</track>
|
||||||
</entity>
|
</entity>
|
||||||
|
|||||||
@ -0,0 +1,81 @@
|
|||||||
|
/*
|
||||||
|
* Axelor Business Solutions
|
||||||
|
*
|
||||||
|
* Copyright (C) 2019 Axelor (<http://axelor.com>).
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU Affero General Public License, version 3,
|
||||||
|
* as published by the Free Software Foundation.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU Affero General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU Affero General Public License
|
||||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
package com.axelor.apps.message.job;
|
||||||
|
|
||||||
|
import com.axelor.apps.message.db.Message;
|
||||||
|
import com.axelor.apps.message.db.repo.MessageRepository;
|
||||||
|
import com.axelor.apps.message.service.MessageService;
|
||||||
|
import com.axelor.exception.service.TraceBackService;
|
||||||
|
import com.google.inject.Inject;
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.time.LocalDateTime;
|
||||||
|
import java.time.LocalDate;
|
||||||
|
import java.util.List;
|
||||||
|
import javax.mail.MessagingException;
|
||||||
|
import com.axelor.exception.AxelorException;
|
||||||
|
import org.quartz.Job;
|
||||||
|
import org.quartz.JobExecutionContext;
|
||||||
|
import org.slf4j.Logger;
|
||||||
|
import org.slf4j.LoggerFactory;
|
||||||
|
|
||||||
|
/** An example {@link Job} class that prints a some messages to the stderr. */
|
||||||
|
public class SendEmailJob implements Job {
|
||||||
|
|
||||||
|
private final Logger log = LoggerFactory.getLogger(SendEmailJob.class);
|
||||||
|
|
||||||
|
@Inject private MessageService messageService;
|
||||||
|
|
||||||
|
@Inject private MessageRepository messageRepository;
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void execute(JobExecutionContext context) {
|
||||||
|
|
||||||
|
LocalDate today = LocalDate.now();
|
||||||
|
LocalDateTime startOfDay = today.atStartOfDay();
|
||||||
|
|
||||||
|
List<Message> draftMessages = messageRepository
|
||||||
|
.all()
|
||||||
|
.filter("self.statusSelect = 1 AND self.createdOn >= :startOfDay")
|
||||||
|
.bind("startOfDay", startOfDay)
|
||||||
|
.fetch();
|
||||||
|
|
||||||
|
log.debug("Total of draft messages : {}", draftMessages.size());
|
||||||
|
for (Message message : draftMessages) {
|
||||||
|
try {
|
||||||
|
Message m = messageService.sendMessage(message);
|
||||||
|
} catch (AxelorException e) {
|
||||||
|
TraceBackService.trace(e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
List<Message> inProgressMessages = messageRepository
|
||||||
|
.all()
|
||||||
|
.filter("self.statusSelect = 2 AND self.createdOn >= :startOfDay")
|
||||||
|
.bind("startOfDay", startOfDay)
|
||||||
|
.fetch();
|
||||||
|
|
||||||
|
log.debug("Total of in progress messages : {}", inProgressMessages.size());
|
||||||
|
for (Message message : inProgressMessages) {
|
||||||
|
try {
|
||||||
|
Message m = messageService.sendMessage(message);
|
||||||
|
} catch (AxelorException e) {
|
||||||
|
TraceBackService.trace(e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -418,22 +418,59 @@ public class StockMoveServiceImpl implements StockMoveService {
|
|||||||
String newStockSeq = null;
|
String newStockSeq = null;
|
||||||
stockMoveLineService.checkTrackingNumber(stockMove);
|
stockMoveLineService.checkTrackingNumber(stockMove);
|
||||||
stockMoveLineService.checkConformitySelection(stockMove);
|
stockMoveLineService.checkConformitySelection(stockMove);
|
||||||
System.out.println("Checking oooo...................");
|
|
||||||
|
|
||||||
// checking .....
|
System.out.println("----------------------------------------------------");
|
||||||
if (stockMove.getFromStockLocation().getTypeSelect() != StockLocationRepository.TYPE_VIRTUAL)
|
System.out.println("stockMove.getTypeSelect() : " + stockMove.getTypeSelect());
|
||||||
{
|
System.out.println("----------------------------------------------------");
|
||||||
List<Long> listOfIds = Arrays.asList(10L, 11L, 13L, 14L, 15L, 16L, 13L, 12L, 54L, 55L, 58L,50L);
|
|
||||||
System.out.println("Checking...................");
|
|
||||||
System.out.println(listOfIds.contains(stockMove.getToStockLocation().getId()));
|
|
||||||
System.out.println("Checking...................");
|
|
||||||
|
|
||||||
if(listOfIds.contains(stockMove.getToStockLocation().getId())){
|
|
||||||
checkIfQuarantine(stockMove);
|
if (stockMove.getTypeSelect() == StockMoveRepository.TYPE_INTERNAL){
|
||||||
|
System.out.println("INTERNAL MOVE");
|
||||||
|
StockConfig stockConfig = stockMove.getCompany().getStockConfig();
|
||||||
|
StockLocation parentwasteStockLocation = stockConfig.getWasteStockLocationParent();
|
||||||
|
|
||||||
|
if(Boolean.TRUE.equals(stockMove.getToStockLocation().getNeedCheckInVerification())){
|
||||||
|
System.out.println("Check-in required for this stock location...");
|
||||||
|
checkIfConforme(stockMove);
|
||||||
|
checkIfNonConformityTag(stockMove);
|
||||||
|
|
||||||
|
} else if (parentwasteStockLocation.equals(stockMove.getToStockLocation().getParentStockLocation())){
|
||||||
|
System.out.println("**************************** Child of Waste Parent ******************************");
|
||||||
|
CheckIfNotNotconforme(stockMove);
|
||||||
checkIfNonConformityTag(stockMove);
|
checkIfNonConformityTag(stockMove);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
else if (stockMove.getTypeSelect() == StockMoveRepository.TYPE_OUTGOING
|
||||||
|
&& stockMove.getPartner().getId() != 853
|
||||||
|
&& stockMove.getIsReversion() == false){
|
||||||
|
|
||||||
|
System.out.println("Livraison Client.");
|
||||||
|
checkIfConforme(stockMove);
|
||||||
|
checkIfNonConformityTag(stockMove);
|
||||||
|
}
|
||||||
|
|
||||||
|
else if (stockMove.getTypeSelect() == StockMoveRepository.TYPE_OUTGOING
|
||||||
|
&& stockMove.getPartner().getId() == 853
|
||||||
|
&& stockMove.getIsReversion() == false){
|
||||||
|
|
||||||
|
System.out.println("Sortie.");
|
||||||
|
StockConfig stockConfig = stockMove.getCompany().getStockConfig();
|
||||||
|
StockLocation nonCoreStockLocationParent = stockConfig.getNonCoreStockLocation();
|
||||||
|
StockLocation parentwasteStockLocation = stockConfig.getWasteStockLocationParent();
|
||||||
|
|
||||||
|
if (parentwasteStockLocation.equals(stockMove.getToStockLocation().getParentStockLocation())){
|
||||||
|
System.out.println("**************************** Child of Waste Parent ******************************");
|
||||||
|
CheckIfNotNotconforme(stockMove);
|
||||||
|
checkIfNonConformityTag(stockMove);
|
||||||
|
} else if (!nonCoreStockLocationParent.equals(stockMove.getToStockLocation().getParentStockLocation())) {
|
||||||
|
checkIfConforme(stockMove);
|
||||||
|
checkIfNonConformityTag(stockMove);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
checkExpirationDates(stockMove);
|
checkExpirationDates(stockMove);
|
||||||
|
|
||||||
if (stockMove.getTypeSelect() == StockMoveRepository.TYPE_INCOMING) {
|
if (stockMove.getTypeSelect() == StockMoveRepository.TYPE_INCOMING) {
|
||||||
@ -1592,47 +1629,75 @@ public class StockMoveServiceImpl implements StockMoveService {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public void checkIfQuarantine(StockMove stockMove)
|
public void checkIfConforme(StockMove stockMove)
|
||||||
throws AxelorException {
|
throws AxelorException {
|
||||||
|
|
||||||
Query sql =
|
Query sql =
|
||||||
JPA.em()
|
JPA.em()
|
||||||
.createNativeQuery(
|
.createNativeQuery(
|
||||||
"SELECT LINE.ID"+
|
"SELECT LINE.ID"+
|
||||||
" FROM STOCK_STOCK_MOVE_LINE LINE LEFT JOIN STOCK_STOCK_LOCATION_LINE LOCATION_LINE ON LINE.TRACKING_NUMBER = LOCATION_LINE.TRACKING_NUMBER and LINE.INTERNAL_TRACKING_NUMBER = LOCATION_LINE.INTERNAL_TRACKING_NUMBER and LINE.product = LOCATION_LINE.product"+
|
" FROM STOCK_STOCK_MOVE_LINE LINE LEFT JOIN STOCK_STOCK_LOCATION_LINE LOCATION_LINE ON LINE.TRACKING_NUMBER = LOCATION_LINE.TRACKING_NUMBER and LINE.product = LOCATION_LINE.product"+
|
||||||
" where LOCATION_LINE.DETAILS_STOCK_LOCATION = ?1 AND LOCATION_LINE.CONFORMITY_SELECT != 2 AND LOCATION_LINE.CONFORMITY_SELECT != 5 AND LINE.STOCK_MOVE = ?2");
|
" where LOCATION_LINE.DETAILS_STOCK_LOCATION = ?1 AND LOCATION_LINE.CONFORMITY_SELECT != 2 AND LINE.STOCK_MOVE = ?2");
|
||||||
sql.setParameter(1, stockMove.getFromStockLocation().getId());
|
sql.setParameter(1, stockMove.getFromStockLocation().getId());
|
||||||
sql.setParameter(2, stockMove.getId());
|
sql.setParameter(2, stockMove.getId());
|
||||||
|
|
||||||
System.out.println("*****************checkIfQuarantine******************");
|
System.out.println("*****************checkIfConforme******************");
|
||||||
System.out.println(sql.getResultList().size() > 0);
|
System.out.println(sql.getResultList().size() > 0);
|
||||||
System.out.println("******************checkIfQuarantine*****************");
|
System.out.println("******************checkIfConforme*****************");
|
||||||
if (sql.getResultList().size() > 0) {
|
if (sql.getResultList().size() > 0) {
|
||||||
throw new AxelorException(
|
throw new AxelorException(
|
||||||
stockMove,
|
stockMove,
|
||||||
TraceBackRepository.CATEGORY_CONFIGURATION_ERROR,
|
TraceBackRepository.CATEGORY_CONFIGURATION_ERROR,
|
||||||
"Vous avez une ligne en etat qurantaine");
|
"Certaines lignes ne sont pas conformes (état différent de 'Conforme').");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public void CheckIfNotNotconforme(StockMove stockMove)
|
||||||
|
throws AxelorException {
|
||||||
|
|
||||||
|
Query sql =
|
||||||
|
JPA.em()
|
||||||
|
.createNativeQuery(
|
||||||
|
"SELECT LINE.ID"+
|
||||||
|
" FROM STOCK_STOCK_MOVE_LINE LINE LEFT JOIN STOCK_STOCK_LOCATION_LINE LOCATION_LINE ON LINE.TRACKING_NUMBER = LOCATION_LINE.TRACKING_NUMBER and LINE.product = LOCATION_LINE.product"+
|
||||||
|
" where LOCATION_LINE.DETAILS_STOCK_LOCATION = ?1 AND LOCATION_LINE.CONFORMITY_SELECT != 3 AND LINE.STOCK_MOVE = ?2");
|
||||||
|
sql.setParameter(1, stockMove.getFromStockLocation().getId());
|
||||||
|
sql.setParameter(2, stockMove.getId());
|
||||||
|
|
||||||
|
System.out.println("*****************CheckIfNotNotconforme******************");
|
||||||
|
System.out.println(sql.getResultList().size() > 0);
|
||||||
|
System.out.println("******************CheckIfNotNotconforme*****************");
|
||||||
|
if (sql.getResultList().size() > 0) {
|
||||||
|
throw new AxelorException(
|
||||||
|
stockMove,
|
||||||
|
TraceBackRepository.CATEGORY_CONFIGURATION_ERROR,
|
||||||
|
"Toutes les lignes doivent être en état 'Non conforme'.");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void checkIfNonConformityTag(StockMove stockMove)
|
public void checkIfNonConformityTag(StockMove stockMove)
|
||||||
throws AxelorException {
|
throws AxelorException {
|
||||||
|
|
||||||
Query sql =
|
Query sql = JPA.em()
|
||||||
JPA.em()
|
|
||||||
.createNativeQuery(
|
.createNativeQuery(
|
||||||
"SELECT LINE.ID" +
|
"SELECT LINE.ID" +
|
||||||
" FROM STOCK_STOCK_MOVE_LINE LINE LEFT JOIN STOCK_STOCK_LOCATION_LINE LOCATION_LINE ON LINE.TRACKING_NUMBER = LOCATION_LINE.TRACKING_NUMBER and LINE.INTERNAL_TRACKING_NUMBER = LOCATION_LINE.INTERNAL_TRACKING_NUMBER and LINE.product = LOCATION_LINE.product" +
|
" FROM STOCK_STOCK_MOVE_LINE LINE" +
|
||||||
" where LOCATION_LINE.DETAILS_STOCK_LOCATION = :location AND LOCATION_LINE.is_conform_tag is not true AND LINE.STOCK_MOVE = :move");
|
" LEFT JOIN STOCK_STOCK_LOCATION_LINE LOCATION_LINE" +
|
||||||
|
" ON LINE.TRACKING_NUMBER = LOCATION_LINE.TRACKING_NUMBER" +
|
||||||
|
" AND LINE.PRODUCT = LOCATION_LINE.PRODUCT" +
|
||||||
|
" WHERE LOCATION_LINE.DETAILS_STOCK_LOCATION = :location" +
|
||||||
|
" AND (LOCATION_LINE.IS_CONFORM_TAG IS NULL OR LOCATION_LINE.IS_CONFORM_TAG = FALSE)" +
|
||||||
|
" AND LINE.STOCK_MOVE = :move");
|
||||||
|
|
||||||
sql.setParameter("location", stockMove.getFromStockLocation().getId());
|
sql.setParameter("location", stockMove.getFromStockLocation().getId());
|
||||||
sql.setParameter("move", stockMove.getId());
|
sql.setParameter("move", stockMove.getId());
|
||||||
|
|
||||||
System.out.println("*****************checkIfNonConformityTag*****************");
|
System.out.println("*****************checkIfNonConformityTag*****************");
|
||||||
System.out.println(sql.getResultList().size() > 0);
|
boolean hasNonTags = !sql.getResultList().isEmpty();
|
||||||
|
System.out.println("Has non conform tag: " + hasNonTags);
|
||||||
System.out.println("*****************checkIfNonConformityTag****************");
|
System.out.println("*****************checkIfNonConformityTag****************");
|
||||||
|
|
||||||
if (sql.getResultList().size() > 0) {
|
if (hasNonTags) {
|
||||||
throw new AxelorException(
|
throw new AxelorException(
|
||||||
stockMove,
|
stockMove,
|
||||||
TraceBackRepository.CATEGORY_CONFIGURATION_ERROR,
|
TraceBackRepository.CATEGORY_CONFIGURATION_ERROR,
|
||||||
|
|||||||
@ -18,6 +18,9 @@
|
|||||||
<many-to-one name="supplierVirtualStockLocation" ref="com.axelor.apps.stock.db.StockLocation" title="Supplier virtual stock location"/>
|
<many-to-one name="supplierVirtualStockLocation" ref="com.axelor.apps.stock.db.StockLocation" title="Supplier virtual stock location"/>
|
||||||
<many-to-one name="inventoryVirtualStockLocation" ref="com.axelor.apps.stock.db.StockLocation" title="Inventory virtual stock location"/>
|
<many-to-one name="inventoryVirtualStockLocation" ref="com.axelor.apps.stock.db.StockLocation" title="Inventory virtual stock location"/>
|
||||||
|
|
||||||
|
<many-to-one name="nonCoreStockLocation" ref="com.axelor.apps.stock.db.StockLocation" title="Non-core stock location"/>
|
||||||
|
<many-to-one name="wasteStockLocationParent" ref="com.axelor.apps.stock.db.StockLocation" title="Parent waste stock location"/>
|
||||||
|
|
||||||
<many-to-one name="customsMassUnit" ref="com.axelor.apps.base.db.Unit" title="Unit of mass"/>
|
<many-to-one name="customsMassUnit" ref="com.axelor.apps.base.db.Unit" title="Unit of mass"/>
|
||||||
|
|
||||||
<boolean name="realizeStockMovesUponParcelPalletCollection" title="Realize stock moves upon parcel/pallet collection" />
|
<boolean name="realizeStockMovesUponParcelPalletCollection" title="Realize stock moves upon parcel/pallet collection" />
|
||||||
@ -102,6 +105,9 @@
|
|||||||
|
|
||||||
<field name="displayTrackNbrOnCertificateOfConformityPrinting" on="UPDATE"/>
|
<field name="displayTrackNbrOnCertificateOfConformityPrinting" on="UPDATE"/>
|
||||||
<field name="displayExtRefOnCertificateOfConformityPrinting" on="UPDATE"/>
|
<field name="displayExtRefOnCertificateOfConformityPrinting" on="UPDATE"/>
|
||||||
|
|
||||||
|
<field name="nonCoreStockLocation" on="UPDATE"/>
|
||||||
|
<field name="wasteStockLocationParent" on="UPDATE"/>
|
||||||
</track>
|
</track>
|
||||||
</entity>
|
</entity>
|
||||||
|
|
||||||
|
|||||||
@ -21,6 +21,8 @@
|
|||||||
<many-to-many name="stockLocationList" ref="com.axelor.apps.stock.db.StockLocation" title="Stock locations"/>
|
<many-to-many name="stockLocationList" ref="com.axelor.apps.stock.db.StockLocation" title="Stock locations"/>
|
||||||
<many-to-one name="picture" ref="com.axelor.meta.db.MetaFile" title="Photo" index="false"/>
|
<many-to-one name="picture" ref="com.axelor.meta.db.MetaFile" title="Photo" index="false"/>
|
||||||
|
|
||||||
|
<boolean name="needCheckInVerification" title="Check-in verification required" default="false" massUpdate="true"/>
|
||||||
|
|
||||||
<finder-method name="findByCompany" using="company"/>
|
<finder-method name="findByCompany" using="company"/>
|
||||||
<finder-method name="findByPartner" using="partner"/>
|
<finder-method name="findByPartner" using="partner"/>
|
||||||
|
|
||||||
@ -42,5 +44,10 @@
|
|||||||
|
|
||||||
]]></extra-code>
|
]]></extra-code>
|
||||||
|
|
||||||
|
|
||||||
|
<track on="UPDATE">
|
||||||
|
<field name="needCheckInVerification" />
|
||||||
|
</track>
|
||||||
|
|
||||||
</entity>
|
</entity>
|
||||||
</domain-models>
|
</domain-models>
|
||||||
|
|||||||
Reference in New Issue
Block a user