Skip to content

Commit

Permalink
more ssw updates for small type PPMs
Browse files Browse the repository at this point in the history
  • Loading branch information
traskowskycaci committed Mar 6, 2025
1 parent 08cf1f1 commit 050072d
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -674,41 +674,49 @@ func (suite *ShipmentSummaryWorksheetServiceSuite) TestFormatValuesShipmentSumma
tollExpense := models.MovingExpenseReceiptTypeTolls
oilExpense := models.MovingExpenseReceiptTypeOil
amount := unit.Cents(10000)
statusApproved := models.PPMDocumentStatusApproved
movingExpenses := models.MovingExpenses{
{
MovingExpenseType: &tollExpense,
Amount: &amount,
PaidWithGTCC: &paidWithGTCCFalse,
Status: &statusApproved,
},
{
MovingExpenseType: &oilExpense,
Amount: &amount,
PaidWithGTCC: &paidWithGTCCFalse,
Status: &statusApproved,
},
{
MovingExpenseType: &oilExpense,
Amount: &amount,
PaidWithGTCC: &paidWithGTCCTrue,
Status: &statusApproved,
},
{
MovingExpenseType: &oilExpense,
Amount: &amount,
PaidWithGTCC: &paidWithGTCCFalse,
Status: &statusApproved,
},
{
MovingExpenseType: &tollExpense,
Amount: &amount,
PaidWithGTCC: &paidWithGTCCTrue,
Status: &statusApproved,
},
{
MovingExpenseType: &tollExpense,
Amount: &amount,
PaidWithGTCC: &paidWithGTCCTrue,
Status: &statusApproved,
},
{
MovingExpenseType: &tollExpense,
Amount: &amount,
PaidWithGTCC: &paidWithGTCCFalse,
Status: &statusApproved,
},
}

Expand Down

0 comments on commit 050072d

Please sign in to comment.