// 开单时间
        if (!"".equals(startDate) &&  startDate != null) {
            queryCondition = queryCondition
                    + " and t.receiptDate >= str_to_date('"
                    + startDate + "','%Y-%m-%d')" ;

        }

        if (!"".equals(endDate) && endDate != null) {
            queryCondition = queryCondition
                   // + " and t.orderDate < '"+ CommonUtil.getAddDate(endDate.toString(), 1) +"','%Y-%m-%d')";
            		+ " and t.receiptDate < str_to_date('"+ CommonUtil.getAddDate(endDate.toString(), 1) + "','%Y-%m-%d')";
        }

 

相关文章:

  • 2022-12-23
  • 2021-06-27
  • 2021-11-23
  • 2022-12-23
  • 2021-12-03
  • 2021-12-20
  • 2022-01-01
  • 2022-12-23
猜你喜欢
  • 2021-05-11
  • 2022-12-23
  • 2021-07-23
  • 2021-10-21
  • 2021-12-26
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案