From 050072dcde4b4af46fe22f38ae63980d69d97564 Mon Sep 17 00:00:00 2001 From: Maria Traskowsky Date: Thu, 6 Mar 2025 22:07:00 +0000 Subject: [PATCH] more ssw updates for small type PPMs --- .../shipment_summary_worksheet_test.go | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pkg/services/shipment_summary_worksheet/shipment_summary_worksheet_test.go b/pkg/services/shipment_summary_worksheet/shipment_summary_worksheet_test.go index b8208c450b2..963ec66bbb5 100644 --- a/pkg/services/shipment_summary_worksheet/shipment_summary_worksheet_test.go +++ b/pkg/services/shipment_summary_worksheet/shipment_summary_worksheet_test.go @@ -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, }, }