/* * eGov suite of products aim to improve the internal efficiency,transparency, * accountability and the service delivery of the government organizations. * * Copyright (C) <2015> eGovernments Foundation * * The updated version of eGov suite of products as by eGovernments Foundation * is available at http://www.egovernments.org * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see http://www.gnu.org/licenses/ or * http://www.gnu.org/licenses/gpl.html . * * In addition to the terms of the GPL license to be adhered to in using this * program, the following additional terms are to be complied with: * * 1) All versions of this program, verbatim or modified must carry this * Legal Notice. * * 2) Any misrepresentation of the origin of the material is prohibited. It * is required that all modified versions of this material be marked in * reasonable ways as different from the original version. * * 3) This license does not grant any rights to any user of the program * with regards to rights under trademark law for use of the trade names * or trademarks of eGovernments Foundation. * * In case of any queries, you can reach eGovernments Foundation at contact@egovernments.org. */ package org.egov.works.web.adaptor; import java.lang.reflect.Type; import org.egov.works.contractorbill.entity.ContractorBillRegister; import org.egov.works.lineestimate.service.LineEstimateService; import org.egov.works.utils.WorksUtils; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; import com.google.gson.JsonElement; import com.google.gson.JsonObject; import com.google.gson.JsonSerializationContext; import com.google.gson.JsonSerializer; @Component public class SearchContractorBillJsonAdaptor implements JsonSerializer<ContractorBillRegister> { @Autowired private LineEstimateService lineEstimateService; @Autowired private WorksUtils worksUtils; @Override public JsonElement serialize(final ContractorBillRegister contractorBillRegister, final Type type, final JsonSerializationContext jsc) { final JsonObject jsonObject = new JsonObject(); if (contractorBillRegister != null) { if (contractorBillRegister.getBillnumber() != null) jsonObject.addProperty("billNumber", contractorBillRegister.getBillnumber()); else jsonObject.addProperty("billNumber", ""); if (contractorBillRegister.getBilldate() != null) jsonObject.addProperty("billDate", contractorBillRegister.getBilldate().toString()); else jsonObject.addProperty("billDate", ""); if (contractorBillRegister.getBilltype() != null) jsonObject.addProperty("billType", contractorBillRegister.getBilltype()); else jsonObject.addProperty("billType", ""); if(contractorBillRegister.getWorkOrder().getWorkOrderEstimates().get(0).getEstimate().getLineEstimateDetails().getLineEstimate() != null) jsonObject.addProperty("adminSanctionNumber", contractorBillRegister.getWorkOrder().getWorkOrderEstimates().get(0).getEstimate().getLineEstimateDetails().getLineEstimate().getAdminSanctionNumber()); else jsonObject.addProperty("adminSanctionNumber", ""); if(contractorBillRegister.getWorkOrder().getWorkOrderEstimates().get(0).getEstimate().getLineEstimateDetails().getProjectCode() != null) jsonObject.addProperty("workIdentificationNumber", contractorBillRegister.getWorkOrder().getWorkOrderEstimates().get(0).getEstimate().getLineEstimateDetails().getProjectCode().getCode()); else jsonObject.addProperty("workIdentificationNumber", ""); if (contractorBillRegister.getWorkOrder() != null) jsonObject.addProperty("workOrderNumber", contractorBillRegister.getWorkOrder().getWorkOrderNumber()); else jsonObject.addProperty("workOrderNumber", ""); if (contractorBillRegister.getWorkOrder().getContractor() != null) jsonObject.addProperty("contractorName", contractorBillRegister.getWorkOrder().getContractor().getName()); else jsonObject.addProperty("contractorName", ""); if (contractorBillRegister.getWorkOrder().getContractor() != null) jsonObject.addProperty("contractorCode", contractorBillRegister.getWorkOrder().getContractor().getCode()); else jsonObject.addProperty("contractorCode", ""); if (contractorBillRegister.getBillamount() != null) jsonObject.addProperty("billValue", contractorBillRegister.getBillamount()); else jsonObject.addProperty("billValue", ""); if (contractorBillRegister.getBillstatus() != null) jsonObject.addProperty("billStatus", contractorBillRegister.getBillstatus()); else jsonObject.addProperty("billStatus", ""); if (contractorBillRegister.getState() != null && contractorBillRegister.getState().getOwnerPosition() != null) jsonObject.addProperty("owner", worksUtils.getApproverName(contractorBillRegister.getState().getOwnerPosition().getId())); else jsonObject.addProperty("owner", ""); jsonObject.addProperty("lineEstimateId", contractorBillRegister.getWorkOrder().getWorkOrderEstimates().get(0).getEstimate().getLineEstimateDetails().getLineEstimate().getId()); jsonObject.addProperty("id", contractorBillRegister.getId()); jsonObject.addProperty("workOrderId", contractorBillRegister.getWorkOrder().getId()); } return jsonObject; } }