forked from openmrs/openmrs-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
TRUNK-5992: Order Service should always set autoExpireDate if duratio…
…n is set. (openmrs#3754) * TRUNK-5992 - Order Service should always set autoExpireDate if duration is set
- Loading branch information
Showing
5 changed files
with
54 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
/** | ||
* This Source Code Form is subject to the terms of the Mozilla Public License, | ||
* v. 2.0. If a copy of the MPL was not distributed with this file, You can | ||
* obtain one at http://mozilla.org/MPL/2.0/. OpenMRS is also distributed under | ||
* the terms of the Healthcare Disclaimer located at http://openmrs.org/license. | ||
* | ||
* Copyright (C) OpenMRS Inc. OpenMRS is a registered trademark and the OpenMRS | ||
* graphic logo is a trademark of OpenMRS Inc. | ||
*/ | ||
package org.openmrs; | ||
|
||
import java.util.Date; | ||
|
||
import static org.apache.commons.lang3.time.DateUtils.addSeconds; | ||
|
||
/** | ||
* @since 2.3.4 | ||
*/ | ||
public abstract class BaseDosingInstructions implements DosingInstructions { | ||
|
||
/** | ||
* @see DosingInstructions#getAutoExpireDate(DrugOrder) | ||
*/ | ||
@Override | ||
public Date getAutoExpireDate(DrugOrder drugOrder) { | ||
if (drugOrder.getDuration() == null || drugOrder.getDurationUnits() == null) { | ||
return null; | ||
} | ||
String durationCode = Duration.getCode(drugOrder.getDurationUnits()); | ||
if (durationCode == null) { | ||
return null; | ||
} | ||
Duration duration = new Duration(drugOrder.getDuration(), durationCode); | ||
return aMomentBefore(duration.addToDate(drugOrder.getEffectiveStartDate(), drugOrder.getFrequency())); | ||
} | ||
|
||
private Date aMomentBefore(Date date) { | ||
return addSeconds(date, -1); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters