Skip to content

Commit

Permalink
updated lastupdated value
Browse files Browse the repository at this point in the history
  • Loading branch information
cameroncaci committed Dec 11, 2023
1 parent ba51b79 commit 2ddb5d1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</parent>
<groupId>com.milmove.trdmlambda</groupId>
<artifactId>trdm-lambda</artifactId>
<version>1.0.2.0</version>
<version>1.0.2.1</version>
<name>trdm java spring interface</name>
<description>Project for deploying a Java TRDM interfacer for TGET data.</description>
<properties>
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/milmove/trdmlambda/milmove/util/Trdm.java
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ public void UpdateTGETData(XMLGregorianCalendar ourLastUpdate, String trdmTable,
// Parse the response attachment to get the codes
logger.info("parsing response back from TRDM getTable");
List<TransportationAccountingCode> codes = tacParser.parse(getTableResponse.getAttachment(),
getTableResponse.getDateTime());
oneWeekLater);
logger.info("inserting TACs into DB");
databaseService.insertTransportationAccountingCodes(codes);
logger.info("finished inserting TACs into DB");
Expand All @@ -159,7 +159,7 @@ public void UpdateTGETData(XMLGregorianCalendar ourLastUpdate, String trdmTable,
// Parse the response attachment to get the loas
logger.info("parsing response back from TRDM getTable");
List<LineOfAccounting> loas = loaParser.parse(getTableResponse.getAttachment(),
getTableResponse.getDateTime());
oneWeekLater);
logger.info("inserting LOAs into DB");
databaseService.insertLinesOfAccounting(loas);
logger.info("finished inserting LOAs into DB");
Expand Down

0 comments on commit 2ddb5d1

Please sign in to comment.