diff --git a/app/services/exports/export_distributions_csv_service.rb b/app/services/exports/export_distributions_csv_service.rb index 64557e3369..70099d6c37 100644 --- a/app/services/exports/export_distributions_csv_service.rb +++ b/app/services/exports/export_distributions_csv_service.rb @@ -90,7 +90,7 @@ def base_table "Shipping Cost" => ->(distribution) { distribution_shipping_cost(distribution.shipping_cost) }, - "State" => ->(distribution) { + "Status" => ->(distribution) { distribution.state }, "Agency Representative" => ->(distribution) { diff --git a/app/views/distributions/index.html.erb b/app/views/distributions/index.html.erb index d0b7a55b96..42da475824 100644 --- a/app/views/distributions/index.html.erb +++ b/app/views/distributions/index.html.erb @@ -117,7 +117,7 @@ Delivery Method Shipping Cost Comments - State + Status Actions diff --git a/app/views/distributions/show.html.erb b/app/views/distributions/show.html.erb index b37af4a02e..7cf1405c96 100644 --- a/app/views/distributions/show.html.erb +++ b/app/views/distributions/show.html.erb @@ -40,7 +40,7 @@ Delivery method: Shipping cost: Comments: - State: + Status: diff --git a/spec/services/exports/export_distributions_csv_service_spec.rb b/spec/services/exports/export_distributions_csv_service_spec.rb index 89c041d825..35588b4312 100644 --- a/spec/services/exports/export_distributions_csv_service_spec.rb +++ b/spec/services/exports/export_distributions_csv_service_spec.rb @@ -68,7 +68,7 @@ "Total Value", "Delivery Method", "Shipping Cost", - "State", + "Status", "Agency Representative", "Comments" ]