| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518 |
- package cn.com.lzt.contractsaleincome.controller;
- import cn.com.lzt.contractsale.entity.ContractSaleEntity;
- import cn.com.lzt.contractsaleincome.entity.ContractSaleIncomeEntity;
- import cn.com.lzt.contractsaleincome.service.ContractSaleIncomeServiceI;
- import cn.com.lzt.contractsaleinvoice.entity.ContractSaleInvoiceEntity;
- import cn.com.lzt.tools.DecimalUtils;
- import com.xcgl.utils.XcglDateUtils;
- import org.apache.commons.lang3.StringUtils;
- import org.apache.log4j.Logger;
- import org.jeecgframework.core.beanvalidator.BeanValidators;
- import org.jeecgframework.core.common.controller.BaseController;
- import org.jeecgframework.core.common.exception.BusinessException;
- import org.jeecgframework.core.common.hibernate.qbc.CriteriaQuery;
- import org.jeecgframework.core.common.model.json.AjaxJson;
- import org.jeecgframework.core.common.model.json.DataGrid;
- import org.jeecgframework.core.constant.Globals;
- import org.jeecgframework.core.util.*;
- import org.jeecgframework.poi.excel.ExcelImportUtil;
- import org.jeecgframework.poi.excel.entity.ExportParams;
- import org.jeecgframework.poi.excel.entity.ImportParams;
- import org.jeecgframework.poi.excel.entity.vo.NormalExcelConstants;
- import org.jeecgframework.tag.core.easyui.TagUtil;
- import org.jeecgframework.web.system.pojo.base.TSUser;
- import org.jeecgframework.web.system.service.SystemService;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.http.HttpHeaders;
- import org.springframework.http.HttpStatus;
- import org.springframework.http.MediaType;
- import org.springframework.http.ResponseEntity;
- import org.springframework.stereotype.Controller;
- import org.springframework.ui.ModelMap;
- import org.springframework.web.bind.annotation.*;
- import org.springframework.web.multipart.MultipartFile;
- import org.springframework.web.multipart.MultipartHttpServletRequest;
- import org.springframework.web.servlet.ModelAndView;
- import org.springframework.web.util.UriComponentsBuilder;
- import javax.servlet.http.HttpServletRequest;
- import javax.servlet.http.HttpServletResponse;
- import javax.validation.ConstraintViolation;
- import javax.validation.Validator;
- import java.io.IOException;
- import java.net.URI;
- import java.text.DecimalFormat;
- import java.text.ParseException;
- import java.util.*;
- /**
- * @Title: Controller
- * @Description: 销售合同收款
- * @author onlineGenerator
- * @date 2019-06-24 14:14:52
- * @version V1.0
- *
- */
- @Controller
- @RequestMapping("/contractSaleIncomeController")
- public class ContractSaleIncomeController extends BaseController {
- /**
- * Logger for this class
- */
- private static final Logger logger = Logger.getLogger(ContractSaleIncomeController.class);
- @Autowired
- private ContractSaleIncomeServiceI contractSaleIncomeService;
- @Autowired
- private SystemService systemService;
- @Autowired
- private Validator validator;
-
- /**
- * 销售合同收款列表 页面跳转
- *
- * @return
- */
- @RequestMapping(params = "list")
- public ModelAndView list(HttpServletRequest request) {
- request.setAttribute("invoiceid", request.getParameter("invoiceid"));
- return new ModelAndView("cn/com/lzt/contractsaleincome/contractSaleIncomeList");
- }
- @RequestMapping(params = "listByContractid")
- public ModelAndView listByContractid(String contractid,HttpServletRequest request) {
- if(StringUtils.isEmpty(contractid))
- contractid = "1";
- request.setAttribute("contractid", contractid);
- return new ModelAndView("cn/com/lzt/contractsaleincome/contractSaleIncomeListReadonly");
- }
- /**
- * easyui AJAX请求数据
- *
- * @param request
- * @param response
- * @param dataGrid
- * @param user
- */
- @RequestMapping(params = "datagrid")
- public void datagrid(ContractSaleIncomeEntity contractSaleIncome,HttpServletRequest request, HttpServletResponse response, DataGrid dataGrid) {
- CriteriaQuery cq = new CriteriaQuery(ContractSaleIncomeEntity.class, dataGrid);
- //查询条件组装器
- org.jeecgframework.core.extend.hqlsearch.HqlGenerateUtil.installHql(cq, contractSaleIncome, request.getParameterMap());
- try{
- //自定义追加查询条件
- }catch (Exception e) {
- throw new BusinessException(e.getMessage());
- }
- cq.add();
- this.contractSaleIncomeService.getDataGridReturn(cq, true);
- if (StringUtils.isNotEmpty(contractSaleIncome.getSourcebillid())) {
- List<ContractSaleIncomeEntity> resualtlist = dataGrid.getResults();
- Double sum = 0.0;
- if (resualtlist.size() != 0) {
- for (ContractSaleIncomeEntity aa : resualtlist) {
- sum = sum + Double.valueOf(aa.getIncomeamount());
- }
- }
- // 格式化为小数点2位数
- DecimalFormat df = new DecimalFormat("#.00");
- String total_salary = df.format(sum);
- dataGrid.setFooter("incomeamount:累计收款:,periodBegin:"+total_salary);
- }
- TagUtil.datagrid(response, dataGrid);
- }
-
- /**
- * 删除销售合同收款
- *
- * @return
- */
- @RequestMapping(params = "doDel")
- @ResponseBody
- public AjaxJson doDel(ContractSaleIncomeEntity contractSaleIncome, HttpServletRequest request) {
- String message = null;
- AjaxJson j = new AjaxJson();
- String lastincomedate = null;
- if(StringUtils.isNotEmpty(contractSaleIncome.getId()))
- contractSaleIncome = systemService.getEntity(ContractSaleIncomeEntity.class, contractSaleIncome.getId());
- else {
- List<ContractSaleIncomeEntity> entitys = systemService.findHql(
- "From ContractSaleIncomeEntity where invoiceid =? order by incomedate desc", contractSaleIncome.getInvoiceid());
- if(entitys.size() > 0) {
- contractSaleIncome = entitys.get(0);
- if(entitys.size() > 1) {
- lastincomedate = DateUtils.datetimeFormat.format(entitys.get(1).getIncomedate());
- }
- }else {
- j.setSuccess(false);
- j.setMsg("此合同发票无收款的信息,取消收款失败");
- return j;
- }
- }
- message = "成功取消销售合同收款";
- try{
- contractSaleIncomeService.delete(contractSaleIncome);
- updateContractSaleTotalIncome(contractSaleIncome.getSourcebillid(), 0-contractSaleIncome.getIncomeamount(),
- lastincomedate,contractSaleIncome.getInvoiceid(), Globals.CONTRACT_STATUS_INVOICE);
- systemService.addLog(message, Globals.Log_Type_DEL, Globals.Log_Leavel_INFO);
- }catch(Exception e){
- e.printStackTrace();
- message = "取消销售合同收款失败";
- throw new BusinessException(e.getMessage());
- }
- j.setMsg(message);
- return j;
- }
-
- /**
- * 批量删除销售合同收款
- *
- * @return
- */
- @RequestMapping(params = "doBatchDel")
- @ResponseBody
- public AjaxJson doBatchDel(String ids,HttpServletRequest request){
- String message = null;
- AjaxJson j = new AjaxJson();
- message = "销售合同收款删除成功";
- try{
- for(String id:ids.split(",")){
- ContractSaleIncomeEntity contractSaleIncome = systemService.getEntity(ContractSaleIncomeEntity.class,
- id
- );
- contractSaleIncomeService.delete(contractSaleIncome);
- systemService.addLog(message, Globals.Log_Type_DEL, Globals.Log_Leavel_INFO);
- }
- }catch(Exception e){
- e.printStackTrace();
- message = "销售合同收款删除失败";
- throw new BusinessException(e.getMessage());
- }
- j.setMsg(message);
- return j;
- }
- /**
- * 添加销售合同收款
- *
- * @param ids
- * @return
- */
- @RequestMapping(params = "doAdd")
- @ResponseBody
- public AjaxJson doAdd(ContractSaleIncomeEntity contractSaleIncome, HttpServletRequest request) {
- String message = null;
- AjaxJson j = new AjaxJson();
- message = "销售合同收款添加成功";
- try{
- setFinancialData(contractSaleIncome);
- ContractSaleInvoiceEntity invoice = systemService.get(ContractSaleInvoiceEntity.class, contractSaleIncome.getInvoiceid());
- String msg = checkData(contractSaleIncome,invoice);
- if(msg != null) {
- j.setSuccess(false);
- j.setMsg(msg);
- return j;
- }
- contractSaleIncomeService.save(contractSaleIncome);
- //回写合同收款合计
- updateContractSaleTotalIncome(contractSaleIncome.getSourcebillid(), contractSaleIncome.getIncomeamount(),
- DateUtils.datetimeFormat.format(contractSaleIncome.getIncomedate()),
- contractSaleIncome.getInvoiceid(),
- contractSaleIncome.getIncomeamount()==invoice.getInvoiceamount()-invoice.getIncomeamount()?Globals.CONTRACT_STATUS_INCOME:Globals.CONTRACT_STATUS_INVOICE);
- systemService.addLog(message, Globals.Log_Type_INSERT, Globals.Log_Leavel_INFO);
- }catch(Exception e){
- e.printStackTrace();
- message = "销售合同收款添加失败";
- throw new BusinessException(e.getMessage());
- }
- j.setMsg(message);
- return j;
- }
-
- /**
- * 更新销售合同收款
- *
- * @param ids
- * @return
- */
- @RequestMapping(params = "doUpdate")
- @ResponseBody
- public AjaxJson doUpdate(ContractSaleIncomeEntity contractSaleIncome, HttpServletRequest request) {
- String message = null;
- AjaxJson j = new AjaxJson();
- message = "销售合同收款更新成功";
- ContractSaleIncomeEntity t = contractSaleIncomeService.get(ContractSaleIncomeEntity.class, contractSaleIncome.getId());
- try {
- setFinancialData(contractSaleIncome);
- MyBeanUtils.copyBeanNotNull2Bean(contractSaleIncome, t);
- contractSaleIncomeService.saveOrUpdate(t);
- systemService.addLog(message, Globals.Log_Type_UPDATE, Globals.Log_Leavel_INFO);
- } catch (Exception e) {
- e.printStackTrace();
- message = "销售合同收款更新失败";
- throw new BusinessException(e.getMessage());
- }
- j.setMsg(message);
- return j;
- }
-
- /**
- * 销售合同收款新增页面跳转
- *
- * @return
- */
- @RequestMapping(params = "goAdd")
- public ModelAndView goAdd(ContractSaleIncomeEntity contractSaleIncome, HttpServletRequest req) {
- //设置默认值,来源单据信息、默认收款金额、操作员等
- String invoiceid = req.getParameter("invoiceid");
- TSUser user = ResourceUtil.getSessionUser();
- ContractSaleInvoiceEntity invoice = systemService.get(ContractSaleInvoiceEntity.class, invoiceid);
- ContractSaleEntity contract = systemService.get(ContractSaleEntity.class, invoice.getContractid());
- contractSaleIncome.setOperatorid(user.getId());
- contractSaleIncome.setOperatorname(user.getRealName());
- contractSaleIncome.setSourcetype("contractsale");
- contractSaleIncome.setSourcebillcode(contract.getCode());
- contractSaleIncome.setSourcebillid(invoice.getContractid());
- contractSaleIncome.setInvoiceid(invoiceid);
- contractSaleIncome.setTotalamount(contract.getTotalamount());
- contractSaleIncome.setTotalincome(contract.getTotalincome());
- contractSaleIncome.setIncomeamount(invoice.getInvoiceamount()-invoice.getIncomeamount());
- //如果多次收款,则默认设置物业费起始时间为上次收款的截止时间的下一天
- if(invoice.getIncomeamount()>0) {
- List<ContractSaleIncomeEntity> entitys = systemService.findHql("From ContractSaleIncomeEntity where invoiceid =? order by incomedate desc", contractSaleIncome.getInvoiceid());
- if(entitys.size() > 0) {
- ContractSaleIncomeEntity lastIncome = entitys.get(0);
- contractSaleIncome.setPeriodBegin(XcglDateUtils.addDateDay(lastIncome.getPeriodEnd(), 1, DateUtils.datetimeFormat).substring(0,10)) ;
- }
- }else {
- contractSaleIncome.setPeriodBegin(invoice.getPeriodBegin());
- }
- contractSaleIncome.setPeriodEnd(invoice.getPeriodEnd());
- if (StringUtil.isNotEmpty(contractSaleIncome.getId())) {
- contractSaleIncome = contractSaleIncomeService.getEntity(ContractSaleIncomeEntity.class, contractSaleIncome.getId());
- }
- req.setAttribute("contractSaleIncomePage", contractSaleIncome);
- return new ModelAndView("cn/com/lzt/contractsaleincome/contractSaleIncome-add");
- }
- /**
- * 销售合同收款编辑页面跳转
- *
- * @return
- */
- @RequestMapping(params = "goUpdate")
- public ModelAndView goUpdate(ContractSaleIncomeEntity contractSaleIncome, HttpServletRequest req) {
- if (StringUtil.isNotEmpty(contractSaleIncome.getId())) {
- contractSaleIncome = contractSaleIncomeService.getEntity(ContractSaleIncomeEntity.class, contractSaleIncome.getId());
- req.setAttribute("contractSaleIncomePage", contractSaleIncome);
- }
- return new ModelAndView("cn/com/lzt/contractsaleincome/contractSaleIncome-update");
- }
-
- /**
- * 导入功能跳转
- *
- * @return
- */
- @RequestMapping(params = "upload")
- public ModelAndView upload(HttpServletRequest req) {
- req.setAttribute("controller_name","contractSaleIncomeController");
- return new ModelAndView("common/upload/pub_excel_upload");
- }
-
- /**
- * 导出excel
- *
- * @param request
- * @param response
- */
- @RequestMapping(params = "exportXls")
- public String exportXls(ContractSaleIncomeEntity contractSaleIncome,HttpServletRequest request,HttpServletResponse response
- , DataGrid dataGrid,ModelMap modelMap) {
- CriteriaQuery cq = new CriteriaQuery(ContractSaleIncomeEntity.class, dataGrid);
- org.jeecgframework.core.extend.hqlsearch.HqlGenerateUtil.installHql(cq, contractSaleIncome, request.getParameterMap());
- List<ContractSaleIncomeEntity> contractSaleIncomes = this.contractSaleIncomeService.getListByCriteriaQuery(cq,false);
- modelMap.put(NormalExcelConstants.FILE_NAME,"销售合同收款");
- modelMap.put(NormalExcelConstants.CLASS,ContractSaleIncomeEntity.class);
- modelMap.put(NormalExcelConstants.PARAMS,new ExportParams("销售合同收款列表", "导出人:"+ResourceUtil.getSessionUser().getRealName(),
- "导出信息"));
- modelMap.put(NormalExcelConstants.DATA_LIST,contractSaleIncomes);
- return NormalExcelConstants.JEECG_EXCEL_VIEW;
- }
- /**
- * 导出excel 使模板
- *
- * @param request
- * @param response
- */
- @RequestMapping(params = "exportXlsByT")
- public String exportXlsByT(ContractSaleIncomeEntity contractSaleIncome,HttpServletRequest request,HttpServletResponse response
- , DataGrid dataGrid,ModelMap modelMap) {
- modelMap.put(NormalExcelConstants.FILE_NAME,"销售合同收款");
- modelMap.put(NormalExcelConstants.CLASS,ContractSaleIncomeEntity.class);
- modelMap.put(NormalExcelConstants.PARAMS,new ExportParams("销售合同收款列表", "导出人:"+ResourceUtil.getSessionUser().getRealName(),
- "导出信息"));
- modelMap.put(NormalExcelConstants.DATA_LIST,new ArrayList());
- return NormalExcelConstants.JEECG_EXCEL_VIEW;
- }
-
- @SuppressWarnings("unchecked")
- @RequestMapping(params = "importExcel", method = RequestMethod.POST)
- @ResponseBody
- public AjaxJson importExcel(HttpServletRequest request, HttpServletResponse response) {
- AjaxJson j = new AjaxJson();
-
- MultipartHttpServletRequest multipartRequest = (MultipartHttpServletRequest) request;
- Map<String, MultipartFile> fileMap = multipartRequest.getFileMap();
- for (Map.Entry<String, MultipartFile> entity : fileMap.entrySet()) {
- MultipartFile file = entity.getValue();// 获取上传文件对象
- ImportParams params = new ImportParams();
- params.setTitleRows(2);
- params.setHeadRows(1);
- params.setNeedSave(true);
- try {
- List<ContractSaleIncomeEntity> listContractSaleIncomeEntitys = ExcelImportUtil.importExcel(file.getInputStream(),ContractSaleIncomeEntity.class,params);
- for (ContractSaleIncomeEntity contractSaleIncome : listContractSaleIncomeEntitys) {
- contractSaleIncomeService.save(contractSaleIncome);
- }
- j.setMsg("文件导入成功!");
- } catch (Exception e) {
- j.setMsg("文件导入失败!");
- logger.error(ExceptionUtil.getExceptionMessage(e));
- }finally{
- try {
- file.getInputStream().close();
- } catch (IOException e) {
- e.printStackTrace();
- }
- }
- }
- return j;
- }
-
- @RequestMapping(method = RequestMethod.GET)
- @ResponseBody
- public List<ContractSaleIncomeEntity> list() {
- List<ContractSaleIncomeEntity> listContractSaleIncomes=contractSaleIncomeService.getList(ContractSaleIncomeEntity.class);
- return listContractSaleIncomes;
- }
-
- @RequestMapping(value = "/{id}", method = RequestMethod.GET)
- @ResponseBody
- public ResponseEntity<?> get(@PathVariable("id") String id) {
- ContractSaleIncomeEntity task = contractSaleIncomeService.get(ContractSaleIncomeEntity.class, id);
- if (task == null) {
- return new ResponseEntity(HttpStatus.NOT_FOUND);
- }
- return new ResponseEntity(task, HttpStatus.OK);
- }
- @RequestMapping(method = RequestMethod.POST, consumes = MediaType.APPLICATION_JSON_VALUE)
- @ResponseBody
- public ResponseEntity<?> create(@RequestBody ContractSaleIncomeEntity contractSaleIncome, UriComponentsBuilder uriBuilder) {
- //调用JSR303 Bean Validator进行校验,如果出错返回含400错误码及json格式的错误信息.
- Set<ConstraintViolation<ContractSaleIncomeEntity>> failures = validator.validate(contractSaleIncome);
- if (!failures.isEmpty()) {
- return new ResponseEntity(BeanValidators.extractPropertyAndMessage(failures), HttpStatus.BAD_REQUEST);
- }
- //保存
- try{
- contractSaleIncomeService.save(contractSaleIncome);
- } catch (Exception e) {
- e.printStackTrace();
- return new ResponseEntity(HttpStatus.NO_CONTENT);
- }
- //按照Restful风格约定,创建指向新任务的url, 也可以直接返回id或对象.
- String id = contractSaleIncome.getId();
- URI uri = uriBuilder.path("/rest/contractSaleIncomeController/" + id).build().toUri();
- HttpHeaders headers = new HttpHeaders();
- headers.setLocation(uri);
- return new ResponseEntity(headers, HttpStatus.CREATED);
- }
- @RequestMapping(value = "/{id}", method = RequestMethod.PUT, consumes = MediaType.APPLICATION_JSON_VALUE)
- public ResponseEntity<?> update(@RequestBody ContractSaleIncomeEntity contractSaleIncome) {
- //调用JSR303 Bean Validator进行校验,如果出错返回含400错误码及json格式的错误信息.
- Set<ConstraintViolation<ContractSaleIncomeEntity>> failures = validator.validate(contractSaleIncome);
- if (!failures.isEmpty()) {
- return new ResponseEntity(BeanValidators.extractPropertyAndMessage(failures), HttpStatus.BAD_REQUEST);
- }
- //保存
- try{
- contractSaleIncomeService.saveOrUpdate(contractSaleIncome);
- } catch (Exception e) {
- e.printStackTrace();
- return new ResponseEntity(HttpStatus.NO_CONTENT);
- }
- //按Restful约定,返回204状态码, 无内容. 也可以返回200状态码.
- return new ResponseEntity(HttpStatus.NO_CONTENT);
- }
- @RequestMapping(value = "/{id}", method = RequestMethod.DELETE)
- @ResponseStatus(HttpStatus.NO_CONTENT)
- public void delete(@PathVariable("id") String id) {
- ContractSaleIncomeEntity income = systemService.get(ContractSaleIncomeEntity.class, id);
- contractSaleIncomeService.deleteEntityById(ContractSaleIncomeEntity.class, id);
- updateContractSaleTotalIncome(income.getSourcebillid(), income.getIncomeamount(),
- DateUtils.datetimeFormat.format(income.getIncomedate()),income.getInvoiceid(), Globals.CONTRACT_STATUS_INVOICE);
- }
- private void updateContractSaleTotalIncome(String cid,Double incomeamount,String incomedate,String invoiceid,String newStatus) {
- //回写合同
- String updateSql = "update t_b_contract_sale c set c.totalincome = c.totalincome+? where c.id =? ";
- systemService.executeSql(updateSql,incomeamount, cid);
- //回写发票
- updateSql = "update t_b_contract_sale_invoice c set c.incomeamount = c.incomeamount+? ,c.incomedate=? ,c.busstatus=? where c.id =? ";
- systemService.executeSql(updateSql,incomeamount,incomedate,newStatus,invoiceid);
- }
-
- /**
- * 设置收上年、收下年、收本年金额
- * @throws ParseException
- * */
- private ContractSaleIncomeEntity setFinancialData(ContractSaleIncomeEntity income) throws ParseException {
- if(income.getPeriodBegin().substring(0,4).equals(income.getPeriodEnd().substring(0,4))) {
- //不跨年
- income.setC2cincome(income.getIncomeamount());
- income.setC2lincome(DecimalUtils.ZERO);
- income.setC2nincome(DecimalUtils.ZERO);
- }else {
- //跨年时,需要计算开上一年或开下一年金额
- Date begin = DateUtils.datetimeFormat.parse(income.getPeriodBegin()+" 00:00:00");
- Date end = DateUtils.datetimeFormat.parse(income.getPeriodEnd()+" 00:00:00");
- //属于上一年的天数
- int firstHalf = XcglDateUtils.differentDays2YearEnd(begin)+1;
- //属于下一年的天数
- int secondHalf = XcglDateUtils.differentDays2YearStart(end)+1;
- double firstAmount = DecimalUtils.formatToDouble((income.getIncomeamount()*firstHalf)/(firstHalf+secondHalf));
- double secondAmount = DecimalUtils.formatToDouble(income.getIncomeamount()-firstAmount);
- //如果收款日期属于上半个阶段
- if(income.getPeriodBegin().substring(0,4).equals(
- DateUtils.date_sdf.format(income.getIncomedate()).substring(0,4))) {
- income.setC2cincome(firstAmount);//收本年
- income.setC2nincome(secondAmount);//收下年
- income.setC2lincome(DecimalUtils.ZERO);//收上年
- }else {
- //收款日期属于下半个阶段
- income.setC2cincome(secondAmount);//收本年
- income.setC2nincome(DecimalUtils.ZERO);//收下年
- income.setC2lincome(firstAmount);//收上年
- }
- }
- return income;
- }
- String checkData(ContractSaleIncomeEntity income,ContractSaleInvoiceEntity invoice) {
- String msg = null;
- if( income.getPeriodBegin().compareTo(invoice.getPeriodBegin()) < 0)
- msg = "收款信息中【物业费起始日期】不能小于发票【物业费起始日期】";
- if(income.getPeriodEnd().compareTo(invoice.getPeriodEnd()) > 0)
- msg = "收款信息中【物业费截止日期】不能大于发票【物业费截止日期】";
- return msg;
- }
- }
|