-
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.
Merge pull request #14 from hmrc/ADR-796
ADR-796: Changes for duty suspended deliveries outside of the UK
- Loading branch information
Showing
9 changed files
with
501 additions
and
0 deletions.
There are no files selected for viewing
72 changes: 72 additions & 0 deletions
72
app/controllers/DeclareDutySuspendedDeliveriesOutsideUkController.scala
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,72 @@ | ||
/* | ||
* Copyright 2023 HM Revenue & Customs | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package controllers | ||
|
||
import connectors.CacheConnector | ||
import controllers.actions._ | ||
import forms.DeclareDutySuspendedDeliveriesOutsideUkFormProvider | ||
import javax.inject.Inject | ||
import models.Mode | ||
import navigation.Navigator | ||
import pages.DeclareDutySuspendedDeliveriesOutsideUkPage | ||
import play.api.i18n.{I18nSupport, MessagesApi} | ||
import play.api.mvc.{Action, AnyContent, MessagesControllerComponents} | ||
import uk.gov.hmrc.play.bootstrap.frontend.controller.FrontendBaseController | ||
import views.html.DeclareDutySuspendedDeliveriesOutsideUkView | ||
|
||
import scala.concurrent.{ExecutionContext, Future} | ||
|
||
class DeclareDutySuspendedDeliveriesOutsideUkController @Inject() ( | ||
override val messagesApi: MessagesApi, | ||
cacheConnector: CacheConnector, | ||
navigator: Navigator, | ||
identify: IdentifierAction, | ||
getData: DataRetrievalAction, | ||
requireData: DataRequiredAction, | ||
formProvider: DeclareDutySuspendedDeliveriesOutsideUkFormProvider, | ||
val controllerComponents: MessagesControllerComponents, | ||
view: DeclareDutySuspendedDeliveriesOutsideUkView | ||
)(implicit ec: ExecutionContext) | ||
extends FrontendBaseController | ||
with I18nSupport { | ||
|
||
val form = formProvider() | ||
|
||
def onPageLoad(mode: Mode): Action[AnyContent] = (identify andThen getData andThen requireData) { implicit request => | ||
val preparedForm = request.userAnswers.get(DeclareDutySuspendedDeliveriesOutsideUkPage) match { | ||
case None => form | ||
case Some(value) => form.fill(value) | ||
} | ||
|
||
Ok(view(preparedForm, mode)) | ||
} | ||
|
||
def onSubmit(mode: Mode): Action[AnyContent] = (identify andThen getData andThen requireData).async { | ||
implicit request => | ||
form | ||
.bindFromRequest() | ||
.fold( | ||
formWithErrors => Future.successful(BadRequest(view(formWithErrors, mode))), | ||
value => | ||
for { | ||
updatedAnswers <- | ||
Future.fromTry(request.userAnswers.set(DeclareDutySuspendedDeliveriesOutsideUkPage, value)) | ||
_ <- cacheConnector.set(updatedAnswers) | ||
} yield Redirect(navigator.nextPage(DeclareDutySuspendedDeliveriesOutsideUkPage, mode, updatedAnswers)) | ||
) | ||
} | ||
} |
37 changes: 37 additions & 0 deletions
37
app/forms/DeclareDutySuspendedDeliveriesOutsideUkFormProvider.scala
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,37 @@ | ||
/* | ||
* Copyright 2023 HM Revenue & Customs | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package forms | ||
|
||
import forms.mappings.Mappings | ||
import javax.inject.Inject | ||
import play.api.data.Form | ||
|
||
class DeclareDutySuspendedDeliveriesOutsideUkFormProvider @Inject() extends Mappings { | ||
|
||
def apply(): Form[BigDecimal] = | ||
Form( | ||
"declare-duty-suspended-deliveries-outside-uk-input" -> bigDecimal( | ||
"declareDutySuspendedDeliveriesOutsideUk.error.required", | ||
"declareDutySuspendedDeliveriesOutsideUk.error.nonNumeric", | ||
"declareDutySuspendedDeliveriesOutsideUk.error.twoDecimalPlaces" | ||
) | ||
.verifying(minimumValue(BigDecimal(0.01), "declareDutySuspendedDeliveriesOutsideUk.error.minimumRequired")) | ||
.verifying( | ||
maximumValue(BigDecimal(999999999.99), "declareDutySuspendedDeliveriesOutsideUk.error.maximumRequired") | ||
) | ||
) | ||
} |
26 changes: 26 additions & 0 deletions
26
app/pages/DeclareDutySuspendedDeliveriesOutsideUkPage.scala
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,26 @@ | ||
/* | ||
* Copyright 2023 HM Revenue & Customs | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package pages | ||
|
||
import play.api.libs.json.JsPath | ||
|
||
case object DeclareDutySuspendedDeliveriesOutsideUkPage extends QuestionPage[BigDecimal] { | ||
|
||
override def path: JsPath = JsPath \ toString | ||
|
||
override def toString: String = "declareDutySuspendedDeliveriesOutsideUk" | ||
} |
43 changes: 43 additions & 0 deletions
43
app/viewmodels/checkAnswers/DeclareDutySuspendedDeliveriesOutsideUkSummary.scala
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,43 @@ | ||
/* | ||
* Copyright 2023 HM Revenue & Customs | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package viewmodels.checkAnswers | ||
|
||
import controllers.routes | ||
import models.{CheckMode, UserAnswers} | ||
import pages.DeclareDutySuspendedDeliveriesOutsideUkPage | ||
import play.api.i18n.Messages | ||
import uk.gov.hmrc.govukfrontend.views.viewmodels.summarylist.SummaryListRow | ||
import viewmodels.govuk.summarylist._ | ||
import viewmodels.implicits._ | ||
|
||
object DeclareDutySuspendedDeliveriesOutsideUkSummary { | ||
|
||
def row(answers: UserAnswers)(implicit messages: Messages): Option[SummaryListRow] = | ||
answers.get(DeclareDutySuspendedDeliveriesOutsideUkPage).map { answer => | ||
SummaryListRowViewModel( | ||
key = "declareDutySuspendedDeliveriesOutsideUk.checkYourAnswersLabel", | ||
value = ValueViewModel(answer.toString), | ||
actions = Seq( | ||
ActionItemViewModel( | ||
"site.change", | ||
routes.DeclareDutySuspendedDeliveriesOutsideUkController.onPageLoad(CheckMode).url | ||
) | ||
.withVisuallyHiddenText(messages("declareDutySuspendedDeliveriesOutsideUk.change.hidden")) | ||
) | ||
) | ||
} | ||
} |
68 changes: 68 additions & 0 deletions
68
app/views/DeclareDutySuspendedDeliveriesOutsideUkView.scala.html
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,68 @@ | ||
@* | ||
* Copyright 2023 HM Revenue & Customs | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*@ | ||
|
||
@import viewmodels.InputWidth._ | ||
@import components.{Link, SectionHeading, PageHeading} | ||
@import uk.gov.hmrc.govukfrontend.views.viewmodels.content.Empty | ||
|
||
@this( | ||
layout: templates.Layout, | ||
formHelper: FormWithCSRF, | ||
govukErrorSummary: GovukErrorSummary, | ||
govukInput: GovukInput, | ||
govukButton: GovukButton, | ||
sectionHeading: SectionHeading, | ||
pageHeading: PageHeading | ||
) | ||
|
||
@(form: Form[_], mode: Mode)(implicit request: Request[_], messages: Messages) | ||
|
||
@layout(pageTitle = title(form, messages("declareDutySuspendedDeliveriesOutsideUk.title"))) { | ||
|
||
@formHelper(action = routes.DeclareDutySuspendedDeliveriesOutsideUkController.onSubmit(mode), Symbol("autoComplete") -> "off") { | ||
|
||
@if(form.errors.nonEmpty) { | ||
@govukErrorSummary(ErrorSummaryViewModel(form)) | ||
} | ||
|
||
@sectionHeading( | ||
id = "declare-duty-suspended-deliveries-outside-uk-section", | ||
text = messages("section.alcoholDutyReturn"), | ||
) | ||
|
||
@pageHeading(messages("declareDutySuspendedDeliveriesOutsideUk.heading")) | ||
|
||
<p class="govuk-body"> | ||
@messages("declareDutySuspendedDeliveriesOutsideUk.p1") | ||
</p> | ||
|
||
@govukInput( | ||
InputViewModel( | ||
field = form("declare-duty-suspended-deliveries-outside-uk-input"), | ||
label = LabelViewModel(messages("declareDutySuspendedDeliveriesOutsideUk.heading")).asVisuallyHidden(), | ||
) | ||
.asNumeric() | ||
.withWidth(Fixed10) | ||
.withSuffix(PrefixOrSuffix(content = messages("declareDutySuspendedDeliveriesOutsideUk.inputSuffix"))) | ||
.withHint(Hint(content = messages("declareDutySuspendedDeliveriesOutsideUk.hint"))) | ||
|
||
) | ||
|
||
@govukButton( | ||
ButtonViewModel("saveAndContinueButton", messages("site.saveAndContinue")) | ||
) | ||
} | ||
} |
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
Oops, something went wrong.