サービス情報削除実装編#
1.1. 処理概要#
サービス情報の検索で取得した情報をもとに、画面上で入力ができる形でサービス情報を表示します。
削除ボタンが押された際に、サービス情報の削除を行います。
本処理を行うには、API認証よりAPIを呼び出すためのアクセストークンが必要となります。
1.1.1. 呼出API#
以下、サービス情報削除で呼び出すAPIとなります。
No | API | 処理内容 | 使用用途 |
---|---|---|---|
1 | POST /API/v2/api/servicepricemaster | サービス料金情報を編集する | サービス変更画面で削除ボタン押下時にサービス情報を削除 |
2 | GET /API/v2/api/servicepricemaster | サービス料金情報を検索する | サービス変更画面で前画面より引き継がれた情報をもとにサービス情報を検索 |
1.1.2. 処理フロー#
サービス情報削除を行うまでの処理は以下のフローとなります。
1.1.3. 実装例#
以下API呼出の実装例となります。
サービス情報変更画面表示時の「サービス料金情報を検索する」API呼び出しについては、「サービス情報検索実装編」及び提供ソースをご確認ください。
※本マニュアルに記載している実装例は、分かりやすさを優先し簡易的に記載しております。提供しているソースと異なりますので詳細については提供ソースをご確認ください。
ServiceMasterChangeController.java
/** * サービス削除処理 * @param model モデル * @param form サービス変更フォーム * @param result バリデーション結果 * @return サービス変更 */ @RequestMapping(value = "/ServiceMasterChange/delete", method = RequestMethod.POST) public String delete( Model model, @Valid ServiceMasterChangeForm form, BindingResult result) { form.setMessage(""); form.setErrorInformation(""); model.addAttribute("serviceMasterChangeForm", form); serviceMasterChangeFormSession.setServiceMasterChangeForm(form); if (result.hasErrors()) { return ControllerConstants.SERVICE_MASTER_CHANGE_JSP; } //サービスマスタ編集 Web_IFServicePriceInformationUpdate_I web_IFServicePriceInformationUpdate_I = new Web_IFServicePriceInformationUpdate_I(); Web_IFServicePriceInformationUpdate_O web_IFServicePriceInformationUpdate_O = new Web_IFServicePriceInformationUpdate_O(); //サービスマスタ編集リスト Web_ServiceMasterEditionList web_ServiceMasterEditionList = new Web_ServiceMasterEditionList(); //料金プランリスト Web_PricePlanList web_PricePlanList = new Web_PricePlanList(); //サービスマスタ編集 web_IFServicePriceInformationUpdate_I.entry_id = CommonConstants.登録者ID; web_IFServicePriceInformationUpdate_I.basic_product_id = SampleUtil.emptyToNull(form.getBasicProductId()); //サービスマスタ編集リスト web_ServiceMasterEditionList.version_info = SampleUtil.emptyToNull(form.getServiceVersionInfo()); web_ServiceMasterEditionList.administration_number = "1"; web_ServiceMasterEditionList.deletion_targeted_flag = "1"; web_ServiceMasterEditionList.apply_start_date = form.getApplyStartDate() + "01"; web_ServiceMasterEditionList.reception_start_date = SampleUtil.emptyToNull(form.getReceptionStartDate()); web_ServiceMasterEditionList.service_code = SampleUtil.emptyToNull(form.getServiceCode()); web_ServiceMasterEditionList.service_division = SampleUtil.emptyToNull(form.getServiceDivision()); web_ServiceMasterEditionList.product_type = SampleUtil.emptyToNull(form.getProductType()); //料金プランリスト web_PricePlanList.entry_id = CommonConstants.登録者ID; web_PricePlanList.version_info = SampleUtil.emptyToNull(form.getPriceVersionInfo()); web_PricePlanList.fee_code = SampleUtil.emptyToNull(form.getFeeCode()); web_PricePlanList.price_plan_code = SampleUtil.emptyToNull(form.getPricePlanCode()); web_PricePlanList.administration_number = SampleUtil.emptyToNull(form.getAdministrationNumber()); web_PricePlanList.apply_start_date = form.getApplyStartDate() + "01"; web_PricePlanList.apply_start_date_division = SampleUtil.emptyToNull(form.getApplyStartDateDivision()); web_PricePlanList.apply_start_date_add_number_of_days = SampleUtil.emptyToNull(form.getApplyStartDateAddNumberOfDays()); web_PricePlanList.apply_end_date_division = SampleUtil.emptyToNull(form.getApplyEndDateDivision()); web_PricePlanList.apply_end_date_add_number_of_days = SampleUtil.emptyToNull(form.getApplyEndDateAddNumberOfDays()); web_PricePlanList.charging_start_date_division = SampleUtil.emptyToNull(form.getChargingStartDateDivision()); web_PricePlanList.charging_start_date_add_number_of_days = SampleUtil.emptyToNull(form.getChargingStartDateAddNumberOfDays()); web_PricePlanList.charging_end_date_division = SampleUtil.emptyToNull(form.getChargingEndDateDivision()); web_PricePlanList.charging_end_date_add_number_of_days = SampleUtil.emptyToNull(form.getChargingEndDateAddNumberOfDays()); web_PricePlanList.price_plan_division = SampleUtil.emptyToNull(form.getPricePlanDivision()); web_PricePlanList.price_plan_change_apply_start_date_division = SampleUtil.emptyToNull(form.getPricePlanChangeApplyStartDateDivision()); web_PricePlanList.price_plan_change_apply_start_date_add_number_of_days = SampleUtil.emptyToNull(form.getPricePlanChangeApplyStartDateAddNumberOfDays()); web_PricePlanList.deletion_targeted_flag = "1"; |-- 削除対象フラグを設定することにより削除処理が行われる //リストに値をセット web_IFServicePriceInformationUpdate_I.service_master_edition_list.add(web_ServiceMasterEditionList); web_IFServicePriceInformationUpdate_I.service_master_edition_list.get(0).price_plan_list.add(web_PricePlanList); try { //サービス料金情報を編集する web_IFServicePriceInformationUpdate_O = serviceMasterService.servicePriceInformationUpdate(web_IFServicePriceInformationUpdate_I); if (ControllerConstants.API_RESULT_NG.equals(web_IFServicePriceInformationUpdate_O.result_information.result)) { form.setErrorInformation(web_IFServicePriceInformationUpdate_O.result_information.detailed_result); return ControllerConstants.SERVICE_MASTER_CHANGE_JSP; } } catch (ApiException e) { if(ApiErrorType.排他エラー.equals(e.getErrorCode())) { // メッセージ表示 form.setErrorInformation(getMsg(MessageConstants.MSGE00001, getMsg(MessageConstants.SCN000006))); return ControllerConstants.SERVICE_MASTER_CHANGE_JSP; } else { model.addAttribute("errorCode", e.getErrorCode().getValue()); return ControllerConstants.SYSTEM_ERROR_JSP; } } catch (Exception e) { return ControllerConstants.SYSTEM_ERROR_JSP; } // メッセージ表示 form.setMessage(getMsg(MessageConstants.MSGI00004, getMsg(MessageConstants.LBL000006), web_IFServicePriceInformationUpdate_O.basic_product_id)); return ControllerConstants.SERVICE_MASTER_CHANGE_JSP; }
ServiceMasterService.java
/** * サービス料金情報_編集 API * * @param web_IFServicePriceInformationUpdate_I IFサービス料金情報_編集_入力 * @return IFサービス料金情報_編集_出力 */ public Web_IFServicePriceInformationUpdate_O servicePriceInformationUpdate(Web_IFServicePriceInformationUpdate_I web_IFServicePriceInformationUpdate_I) { // 通信設定 String strURI = ClientUtil.makeURI(UriInfo.ServicePriceMasterUpdate, null, null); HttpPost postMethod = ClientUtil.makeHttpPost(strURI, web_IFServicePriceInformationUpdate_I); return CommonHttpClient.httpPost(postMethod, Web_IFServicePriceInformationUpdate_O.class); }
共通HTTPリクエストクラス[CommonHttpClient.java]の実装例についてはこちらをご参照ください。