소스정리
This commit is contained in:
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,7 +1,8 @@
|
||||
package net.jwsi.jcms.vpp.api;
|
||||
|
||||
import lombok.RequiredArgsConstructor;
|
||||
import net.jwsi.jcms.vpp.charger.ChgrResponseDto;
|
||||
import net.jwsi.jcms.vpp.chgr.ChgrResponseDto;
|
||||
import net.jwsi.jcms.vpp.chgrHist.ChgrHistResponseDto;
|
||||
import net.jwsi.jcms.vpp.provider.ProviderDto;
|
||||
import net.jwsi.jcms.vpp.station.StationDto;
|
||||
import org.springframework.core.ParameterizedTypeReference;
|
||||
@@ -12,6 +13,7 @@ import org.springframework.web.util.UriComponentsBuilder;
|
||||
import java.net.URI;
|
||||
import java.util.Collections;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
@Component
|
||||
@RequiredArgsConstructor
|
||||
@@ -59,4 +61,22 @@ public class ApiClient {
|
||||
.retrieve()
|
||||
.body(new ParameterizedTypeReference<ApiResponse<List<ChgrResponseDto>>>() {});
|
||||
}
|
||||
public ApiResponse<List<ChgrHistResponseDto>> fetchChgrHist(String baseUrl, String token) {
|
||||
URI uri = UriComponentsBuilder.fromUriString(baseUrl)
|
||||
.path("/api/charge/hist")
|
||||
.build()
|
||||
.toUri();
|
||||
|
||||
Map<String, String> requestBody = Map.of(
|
||||
"startDt", "2026-07-29",
|
||||
"pageSize","50"
|
||||
);
|
||||
|
||||
return restClient.post()
|
||||
.uri(uri)
|
||||
.header("Authorization", "Bearer " + token)
|
||||
.body(requestBody)
|
||||
.retrieve()
|
||||
.body(new ParameterizedTypeReference<ApiResponse<List<ChgrHistResponseDto>>>() {});
|
||||
}
|
||||
}
|
||||
@@ -14,7 +14,7 @@ public class RestClientConfig {
|
||||
public RestClient restClient() {
|
||||
SimpleClientHttpRequestFactory factory = new SimpleClientHttpRequestFactory();
|
||||
factory.setConnectTimeout((int) Duration.ofSeconds(5).toMillis());
|
||||
factory.setReadTimeout((int) Duration.ofSeconds(10).toMillis());
|
||||
factory.setReadTimeout((int) Duration.ofSeconds(30).toMillis());
|
||||
|
||||
return RestClient.builder()
|
||||
.requestFactory(factory)
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
package net.jwsi.jcms.vpp.charger;
|
||||
package net.jwsi.jcms.vpp.chgr;
|
||||
|
||||
import jakarta.persistence.Column;
|
||||
import jakarta.persistence.Entity;
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
package net.jwsi.jcms.vpp.charger;
|
||||
package net.jwsi.jcms.vpp.chgr;
|
||||
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import net.jwsi.jcms.base.BaseController;
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
package net.jwsi.jcms.vpp.charger;
|
||||
package net.jwsi.jcms.vpp.chgr;
|
||||
|
||||
import net.jwsi.jcms.base.BaseRecStRepository;
|
||||
import org.springframework.stereotype.Repository;
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
package net.jwsi.jcms.vpp.charger;
|
||||
package net.jwsi.jcms.vpp.chgr;
|
||||
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
package net.jwsi.jcms.vpp.charger;
|
||||
package net.jwsi.jcms.vpp.chgr;
|
||||
|
||||
import jakarta.transaction.Transactional;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
package net.jwsi.jcms.vpp.charger;
|
||||
package net.jwsi.jcms.vpp.chgr;
|
||||
|
||||
public class ChgrSpecification {
|
||||
}
|
||||
@@ -0,0 +1,51 @@
|
||||
package net.jwsi.jcms.vpp.chgrHist;
|
||||
|
||||
import jakarta.persistence.*;
|
||||
import lombok.Getter;
|
||||
import lombok.NoArgsConstructor;
|
||||
import lombok.Setter;
|
||||
import lombok.ToString;
|
||||
import net.jwsi.jcms.base.BaseStEntity;
|
||||
|
||||
@NoArgsConstructor
|
||||
@Setter
|
||||
@Getter
|
||||
@ToString
|
||||
@Entity(name="vpp_chgr_hist")
|
||||
public class ChgrHist extends BaseStEntity {
|
||||
|
||||
@Id
|
||||
@GeneratedValue(strategy = GenerationType.IDENTITY)
|
||||
@Column(name = "CHGR_HIST_ID")
|
||||
private Integer chgrHistId; // 충전이력 id
|
||||
|
||||
@Column(name = "CHGR_ID", nullable = false)
|
||||
private String chgrId; // 충전기 id
|
||||
|
||||
@Column(name = "ST_ID", nullable = false)
|
||||
private String stId; // 충전소 id
|
||||
|
||||
@Column(name = "PAY_TP")
|
||||
private String payTp; // 결제구분
|
||||
|
||||
@Column(name = "PLUG_TP")
|
||||
private String plugTp; // 충전기타입 코드
|
||||
|
||||
@Column(name = "RECHG_S_DT")
|
||||
private String rechgSDt; // 충전 시작일시 (rechgsdt -> RECHG_S_DT 매핑)
|
||||
|
||||
@Column(name = "RECHG_E_DT")
|
||||
private String rechgEDt; // 충전 종료일시 (rechgedt -> RECHG_E_DT 매핑)
|
||||
|
||||
@Column(name = "RECHG_TIME")
|
||||
private String rechgTime; // 충전시간
|
||||
|
||||
@Column(name = "RECH_GWH")
|
||||
private Integer rechGwh; // 충전량
|
||||
|
||||
@Column(name = "RECHG_AMT")
|
||||
private Integer rechgAmt; // 충전금액
|
||||
|
||||
@Column(name = "PAY_FNSH")
|
||||
private String payFnsh; // 신용결제완료구분
|
||||
}
|
||||
@@ -0,0 +1,64 @@
|
||||
package net.jwsi.jcms.vpp.chgrHist;
|
||||
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import net.jwsi.jcms.base.BaseController;
|
||||
import net.jwsi.jcms.exception.JsonDataException;
|
||||
import org.springframework.stereotype.Controller;
|
||||
import org.springframework.web.bind.annotation.*;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
@Controller
|
||||
@RequestMapping("/cms/chgrHist")
|
||||
@Slf4j
|
||||
public class ChgrHistController extends BaseController<ChgrHist,Integer,ChgrHistRepository,ChgrHistService> {
|
||||
|
||||
private final String path = "/system/chgrHist/";
|
||||
private final ChgrHistService chgrHistService;
|
||||
public ChgrHistController(ChgrHistService service, ChgrHistService chgrHistService) {
|
||||
super(service);
|
||||
this.chgrHistService = chgrHistService;
|
||||
}
|
||||
|
||||
@GetMapping("list")
|
||||
public String list() throws IllegalAccessException {
|
||||
return path+"list";
|
||||
}
|
||||
|
||||
@PostMapping("list.json")
|
||||
@ResponseBody
|
||||
public Map<String,Object> list(ChgrHist chgrHist){
|
||||
return svcSelectList(chgrHist);
|
||||
}
|
||||
@PostMapping("insert.json")
|
||||
@ResponseBody
|
||||
public Map<String,Object> insert(ChgrHist chgrHist){
|
||||
return svcInsert(chgrHist);
|
||||
}
|
||||
@PostMapping("delete.json")
|
||||
@ResponseBody
|
||||
public Map<String,Object> delete(ChgrHist chgrHist){
|
||||
return svcDelete(chgrHist.getChgrHistId());
|
||||
}
|
||||
@PostMapping("update.json")
|
||||
@ResponseBody
|
||||
public Map<String,Object> update(ChgrHist chgrHist){
|
||||
return svcUpdate(chgrHist);
|
||||
}
|
||||
@PostMapping("view.json")
|
||||
@ResponseBody
|
||||
public Map<String,Object> view(ChgrHist chgrHist){
|
||||
return svcSelectOne(chgrHist);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void chkSelectList(List<ChgrHist> list) throws JsonDataException {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void chkSelect(ChgrHist data) throws JsonDataException {
|
||||
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
package net.jwsi.jcms.vpp.chgrHist;
|
||||
|
||||
import net.jwsi.jcms.base.BaseRecStRepository;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
@Repository
|
||||
public interface ChgrHistRepository extends BaseRecStRepository<ChgrHist,Integer> {
|
||||
}
|
||||
@@ -0,0 +1,57 @@
|
||||
package net.jwsi.jcms.vpp.chgrHist;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||
import com.fasterxml.jackson.databind.JsonNode;
|
||||
import lombok.*;
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
@Builder
|
||||
public class ChgrHistResponseDto {
|
||||
|
||||
private String providerId; // 충전사업자 ID (Length: 2)
|
||||
private String stId; // 충전소 ID (Length: 6)
|
||||
private String chgrId; // 충전기 ID (Length: 2)
|
||||
private String speedTp; // 충전 속도 (급속, 완속)
|
||||
private Integer chId; // 채널 ID
|
||||
private String plugType; // 플러그 타입
|
||||
private String memAuthInputNo; // 회원카드번호 (Length: 16)
|
||||
|
||||
private String creditPPayTrxNo; // 선결제 관련 신용카드 승인번호 (Length: 20)
|
||||
private String creditPPayTrxDt; // 선결제 관련 신용카드 승인일시 (yyyy-MM-dd HH:mm:ss)
|
||||
|
||||
private String rechgSdt; // 충전 시작일시 (yyyy-MM-dd HH:mm:ss)
|
||||
private String rechgEdt; // 충전 종료일시 (yyyy-MM-dd HH:mm:ss)
|
||||
private String rechgTime; // 충전시간 (Length: 10)
|
||||
|
||||
private Integer rechgWh; // 충전량(wh)
|
||||
private Integer rechgDemandAmt; // 선결제 금액
|
||||
private Integer rechgAmt; // 충전 금액
|
||||
private Integer cancelAmt; // 취소 금액
|
||||
|
||||
private String payType; // 결제 타입 (회원카드, 신용카드, 무과금)
|
||||
private String rechgFnshTp; // 충전 완료 구분
|
||||
private String payFnsh; // 결제 완료 구분 (결제완료, 결제실패, 기타결제, 알수없음)
|
||||
@JsonProperty("IntegratedWh")
|
||||
private JsonNode integratedWh;
|
||||
private Double dcPowerWh; // DC 적산량(wh)
|
||||
private Double acPowerWh; // AC 적산량(wh)
|
||||
|
||||
|
||||
public ChgrHist toEntity() {
|
||||
ChgrHist chgrHist = new ChgrHist();
|
||||
chgrHist.setChgrId(this.chgrId);
|
||||
chgrHist.setStId(this.stId);
|
||||
chgrHist.setPayTp(this.payType);
|
||||
chgrHist.setPlugTp(this.plugType);
|
||||
chgrHist.setRechgSDt(this.rechgSdt);
|
||||
chgrHist.setRechgEDt(this.rechgEdt);
|
||||
chgrHist.setRechgTime(this.rechgTime);
|
||||
chgrHist.setRechgAmt(this.rechgAmt);
|
||||
chgrHist.setPayFnsh(this.payFnsh);
|
||||
chgrHist.setRechGwh(this.rechgWh);
|
||||
return chgrHist;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,103 @@
|
||||
package net.jwsi.jcms.vpp.chgrHist;
|
||||
|
||||
import jakarta.transaction.Transactional;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import net.jwsi.jcms.base.BaseService;
|
||||
import net.jwsi.jcms.base.EnumSqlType;
|
||||
import net.jwsi.jcms.utils.HttpUtil;
|
||||
import net.jwsi.jcms.utils.LoginUtil;
|
||||
import net.jwsi.jcms.vpp.api.ApiClient;
|
||||
import net.jwsi.jcms.vpp.api.ApiResponse;
|
||||
import org.springframework.beans.factory.annotation.Value;
|
||||
import org.springframework.data.domain.Page;
|
||||
import org.springframework.data.jpa.domain.Specification;
|
||||
import org.springframework.scheduling.annotation.Scheduled;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
@Slf4j
|
||||
@Service
|
||||
public class ChgrHistService extends BaseService<ChgrHist, Integer, ChgrHistRepository> {
|
||||
|
||||
|
||||
private final ApiClient apiClient;
|
||||
@Value("${jcms.api.base-url}")
|
||||
private String baseUrl;
|
||||
|
||||
@Value("${jcms.api.token}")
|
||||
private String apiToken;
|
||||
|
||||
public ChgrHistService(ChgrHistRepository repository, ApiClient apiClient) {
|
||||
super(repository);
|
||||
this.apiClient = apiClient;
|
||||
}
|
||||
|
||||
@Transactional
|
||||
@Scheduled(cron = "0 */10 * * * *")
|
||||
public void getChgrHist() throws IllegalAccessException {
|
||||
ApiResponse<List<ChgrHistResponseDto>> response = apiClient.fetchChgrHist(baseUrl, apiToken);
|
||||
|
||||
if (response == null || !Integer.valueOf(200).equals(response.getCode())) {
|
||||
String msg = (response != null) ? response.getMessage() : "응답 없음";
|
||||
throw new RuntimeException("API 호출 실패: " + msg);
|
||||
}
|
||||
|
||||
List<ChgrHistResponseDto> dtoList = response.getData();
|
||||
if (dtoList == null || dtoList.isEmpty()) {
|
||||
log.info("가져온 충전소 데이터가 없습니다.");
|
||||
}
|
||||
|
||||
List<ChgrHist> entityList = dtoList.stream()
|
||||
.map(ChgrHistResponseDto::toEntity)
|
||||
.toList();
|
||||
|
||||
List<ChgrHist> updateList = new ArrayList<>();
|
||||
for (ChgrHist h : entityList) {
|
||||
update(h);
|
||||
updateList.add(h);
|
||||
}
|
||||
|
||||
log.info("총 {}건의 충전소 데이터가 DB에 동기화되었습니다.", updateList.size());
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
protected Integer getUserId() {
|
||||
return HttpUtil.getUserId();
|
||||
}
|
||||
|
||||
@Override
|
||||
protected String getUserName(Integer id) {
|
||||
return LoginUtil.getUserName(id);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected ChgrHist newSearchParam(ChgrHist chgrHist) {
|
||||
if (chgrHist == null) {
|
||||
chgrHist = new ChgrHist();
|
||||
}
|
||||
return chgrHist;
|
||||
}
|
||||
|
||||
@Override
|
||||
protected EnumSqlType useSqlTyp() {
|
||||
return EnumSqlType.SPECIFICATION;
|
||||
}
|
||||
|
||||
@Override
|
||||
protected Specification<ChgrHist> getSpecification(ChgrHist chgrHist) {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
protected Page<ChgrHist> _selectPage(ChgrHist chgrHist) {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
protected List<ChgrHist> _selectList(ChgrHist chgrHist) {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
@@ -36,11 +36,11 @@ public class Station extends BaseStEntity {
|
||||
@Column(name = "ADDR_LD_D")
|
||||
private String addrLdD;
|
||||
|
||||
@Column(name = "ST_FACIL_TP_CD")
|
||||
private String stFacilTpCd;
|
||||
@Column(name = "ST_FACIL_TP")
|
||||
private String stFacilTp;
|
||||
|
||||
@Column(name = "ST_FACIL_D_TP_CD")
|
||||
private String stFacilDTpCd;
|
||||
@Column(name = "ST_FACIL_D_TP")
|
||||
private String stFacilDTp;
|
||||
|
||||
@Column(name = "PARKING_FEE_YN")
|
||||
private String parkingFeeYn;
|
||||
|
||||
@@ -33,8 +33,8 @@ public class StationDto {
|
||||
station.setAddrLdM(ldParts[0]);
|
||||
station.setAddrLdD(ldParts[1]);
|
||||
|
||||
station.setStFacilTpCd(this.stFacilTp);
|
||||
station.setStFacilDTpCd(this.stFacilDTp);
|
||||
station.setStFacilTp(this.stFacilTp);
|
||||
station.setStFacilDTp(this.stFacilDTp);
|
||||
station.setParkingFeeYn(this.parkingFee);
|
||||
|
||||
station.setParkingFeeDetl(this.parkingFeeDetl != null ? this.parkingFeeDetl : "");
|
||||
|
||||
@@ -0,0 +1,297 @@
|
||||
<!DOCTYPE html>
|
||||
<html xmlns:th="http://thymeleaf.org" xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout" layout:decorate="~{layout/cmsLayout}">
|
||||
<body>
|
||||
<section layout:fragment="Content">
|
||||
<div class="w-100" style="margin-bottom: .3rem;">
|
||||
<div th:replace="~{common/fragments/searchBox :: SearchBoxFragment(~{ :: #searchBoxContent}, ~{ :: #searchBoxFooter})}">
|
||||
<div id="searchBoxContent">
|
||||
<div class="row px-2">
|
||||
<div class="col-lg-4 col-sm-6 col-xs-12 pb-1">
|
||||
<div class="input-group">
|
||||
<span class="input-group-text" style="width:160px">충전소 명</span>
|
||||
<input type="text" id="stIdLike" name="stIdLike" class="form-control" placeholder="충전소 명 입력" maxlength="50">
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-4 col-sm-6 col-xs-12 pb-1">
|
||||
<div class="input-group">
|
||||
<span class="input-group-text" style="width:160px">충전기 명</span>
|
||||
<input type="text" id="chgrIdLike" name="chgrIdLike" class="form-control" placeholder="충전기 명 입력" maxlength="50">
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-4 col-sm-6 col-xs-12 pb-1">
|
||||
<div class="input-group">
|
||||
<span class="input-group-text" style="width:160px">결제구분</span>
|
||||
<input type="text" id="payTpLike" name="payTpLike" class="form-control" placeholder="결제구분 입력" maxlength="50">
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-4 col-sm-6 col-xs-12 pb-1">
|
||||
<div class="input-group">
|
||||
<span class="input-group-text" style="width:160px">충전기타입 코드</span>
|
||||
<input type="text" id="plugTpLike" name="plugTpLike" class="form-control" placeholder="충전기타입 코드 입력" maxlength="50">
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-4 col-sm-6 col-xs-12 pb-1">
|
||||
<div class="input-group">
|
||||
<span class="input-group-text" style="width:160px">충전 시작일시</span>
|
||||
<input type="text" id="rechgSDtLike" name="rechgSDtLike" class="form-control" placeholder="충전 시작일시 입력" maxlength="50">
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-4 col-sm-6 col-xs-12 pb-1">
|
||||
<div class="input-group">
|
||||
<span class="input-group-text" style="width:160px">충전 종료일시</span>
|
||||
<input type="text" id="rechgEDtLike" name="rechgEDtLike" class="form-control" placeholder="충전 종료일시 입력" maxlength="50">
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-4 col-sm-6 col-xs-12 pb-1">
|
||||
<div class="input-group">
|
||||
<span class="input-group-text" style="width:160px">충전시간</span>
|
||||
<input type="text" id="rechgTimeLike" name="rechgTimeLike" class="form-control" placeholder="충전시간 입력" maxlength="50">
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-4 col-sm-6 col-xs-12 pb-1">
|
||||
<div class="input-group">
|
||||
<span class="input-group-text" style="width:160px">신용결제완료구분</span>
|
||||
<input type="text" id="payFnshLike" name="payFnshLike" class="form-control" placeholder="신용결제완료구분 입력" maxlength="50">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="searchBoxFooter">
|
||||
<div class="row float-end">
|
||||
<div class="col-xs-12 ">
|
||||
<button type="button" class="btn btn-sm btn-info" id="searchBtn">검색</button>
|
||||
<button type="button" class="btn btn-sm btn-info" id="resetBtn">리셋</button>
|
||||
<th:block th:if="${menuRole?.roleWrite eq true}">
|
||||
<button type="button" class="btn btn-sm btn-primary pl-2" onclick="showModal(ModalMode.REGISTER, {}, '');">등록</button>
|
||||
</th:block>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="w-100">
|
||||
<div class="box box-primary">
|
||||
<div class="form">
|
||||
<table id="datatable" class="table table-striped table-hover dataTable" style="width:100%;"></table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<script th:inline="none">
|
||||
const rootPath = "/system/chgrHist/";
|
||||
let datatable;
|
||||
|
||||
|
||||
$(document).ready(function() {
|
||||
const className = "dt-head-center dt-body-center";
|
||||
datatable = newDataTable(
|
||||
"#datatable",
|
||||
rootPath + "list.json",
|
||||
function(d) {
|
||||
if (strUtil.isNotEmpty($('#stIdLike').val())) {d.stId = $('#stIdLike').val();}
|
||||
if (strUtil.isNotEmpty($('#chgrIdLike').val())) {d.chgrId = $('#chgrIdLike').val();}
|
||||
if (strUtil.isNotEmpty($('#payTpLike').val())) {d.payTp = $('#payTpLike').val();}
|
||||
if (strUtil.isNotEmpty($('#plugTpLike').val())) {d.plugTp = $('#plugTpLike').val();}
|
||||
if (strUtil.isNotEmpty($('#rechgSDtLike').val())) {d.rechgSDt = $('#rechgSDtLike').val();}
|
||||
if (strUtil.isNotEmpty($('#rechgEDtLike').val())) {d.rechgEDt = $('#rechgEDtLike').val();}
|
||||
if (strUtil.isNotEmpty($('#rechgTimeLike').val())) {d.rechgTime = $('#rechgTimeLike').val();}
|
||||
if (strUtil.isNotEmpty($('#payFnshLike').val())) {d.payFnsh = $('#payFnshLike').val();}
|
||||
return d;
|
||||
},
|
||||
{
|
||||
order: [],
|
||||
columns: [
|
||||
{title: "충전소 명", name: "ST_NM", data: "stId", className, orderable: false},
|
||||
{title: "충전기 명", name: "CHGR_NM", data: "chgrId", className, orderable: false},
|
||||
{title: "결제구분", name: "PAY_TP", data: "payTp", className, orderable: false},
|
||||
{title: "충전기타입 코드", name: "CHGR_TP", data: "plugTp", className, orderable: false},
|
||||
{title: "충전 시작일시", name: "RECHG_S_DT", data: "rechgSDt", className, orderable: false},
|
||||
{title: "충전 종료일시", name: "RECHG_E_DT", data: "rechgEDt", className, orderable: false},
|
||||
{title: "충전시간", name: "RECHG_TIME", data: "rechgTime", className, orderable: false},
|
||||
{title: "충전량", name: "RECH_GWH", data: "rechGwh", className, orderable: false},
|
||||
{title: "충전금액", name: "RECHG_AMT", data: "rechgAmt", className, orderable: false},
|
||||
{title: "신용결제완료구분", name: "PAY_FNSH", data: "payFnsh", className, orderable: false},
|
||||
],
|
||||
allCheck: false,
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
const showModal = (mode, ids, title) => {
|
||||
if(!checkRole(mode)) { alert("권한이 없습니다."); return; }
|
||||
|
||||
let modalInputArray = [
|
||||
new ModalInput({
|
||||
inputType: ModalInputType.hidden,
|
||||
inputId: "chrgHistId",
|
||||
inputName: "chrgHistId",
|
||||
}),
|
||||
new ModalInput({
|
||||
inputType: ModalInputType.text,
|
||||
inputId: "stId",
|
||||
inputName: "stId",
|
||||
inputLabel: "충전소 ID",
|
||||
inputPlaceholder: "충전소 ID",
|
||||
isReq: false,
|
||||
isEnable: true,
|
||||
minLen: 0,
|
||||
maxLen: 20,
|
||||
}),
|
||||
new ModalInput({
|
||||
inputType: ModalInputType.text,
|
||||
inputId: "chgrId",
|
||||
inputName: "chgrId",
|
||||
inputLabel: "충전기 ID",
|
||||
inputPlaceholder: "충전기 ID",
|
||||
isReq: false,
|
||||
isEnable: true,
|
||||
minLen: 0,
|
||||
maxLen: 20,
|
||||
}),
|
||||
new ModalInput({
|
||||
inputType: ModalInputType.text,
|
||||
inputId: "stId",
|
||||
inputName: "stId",
|
||||
inputLabel: "충전소 명",
|
||||
inputPlaceholder: "충전소 명",
|
||||
isReq: false,
|
||||
isEnable: true,
|
||||
minLen: 0,
|
||||
maxLen: 50,
|
||||
}),
|
||||
new ModalInput({
|
||||
inputType: ModalInputType.text,
|
||||
inputId: "chgrId",
|
||||
inputName: "chgrId",
|
||||
inputLabel: "충전기 명",
|
||||
inputPlaceholder: "충전기 명",
|
||||
isReq: false,
|
||||
isEnable: true,
|
||||
minLen: 0,
|
||||
maxLen: 50,
|
||||
}),
|
||||
new ModalInput({
|
||||
inputType: ModalInputType.textarea,
|
||||
inputId: "payTp",
|
||||
inputName: "payTp",
|
||||
inputLabel: "결제구분",
|
||||
inputPlaceholder: "결제구분",
|
||||
isReq: false,
|
||||
isEnable: true,
|
||||
minLen: 0,
|
||||
maxLen: 250,
|
||||
}),
|
||||
new ModalInput({
|
||||
inputType: ModalInputType.textarea,
|
||||
inputId: "plugTp",
|
||||
inputName: "plugTp",
|
||||
inputLabel: "충전기타입 코드",
|
||||
inputPlaceholder: "충전기타입 코드",
|
||||
isReq: false,
|
||||
isEnable: true,
|
||||
minLen: 0,
|
||||
maxLen: 250,
|
||||
}),
|
||||
new ModalInput({
|
||||
inputType: ModalInputType.textarea,
|
||||
inputId: "rechgSDt",
|
||||
inputName: "rechgSDt",
|
||||
inputLabel: "충전 시작일시",
|
||||
inputPlaceholder: "충전 시작일시",
|
||||
isReq: false,
|
||||
isEnable: true,
|
||||
minLen: 0,
|
||||
maxLen: 250,
|
||||
}),
|
||||
new ModalInput({
|
||||
inputType: ModalInputType.textarea,
|
||||
inputId: "rechgEDt",
|
||||
inputName: "rechgEDt",
|
||||
inputLabel: "충전 종료일시",
|
||||
inputPlaceholder: "충전 종료일시",
|
||||
isReq: false,
|
||||
isEnable: true,
|
||||
minLen: 0,
|
||||
maxLen: 250,
|
||||
}),
|
||||
new ModalInput({
|
||||
inputType: ModalInputType.textarea,
|
||||
inputId: "rechgTime",
|
||||
inputName: "rechgTime",
|
||||
inputLabel: "충전시간",
|
||||
inputPlaceholder: "충전시간",
|
||||
isReq: false,
|
||||
isEnable: true,
|
||||
minLen: 0,
|
||||
maxLen: 250,
|
||||
}),
|
||||
new ModalInput({
|
||||
inputType: ModalInputType.text,
|
||||
inputId: "rechGwh",
|
||||
inputName: "rechGwh",
|
||||
inputLabel: "충전량",
|
||||
inputPlaceholder: "충전량",
|
||||
isReq: false,
|
||||
isEnable: true,
|
||||
}),
|
||||
new ModalInput({
|
||||
inputType: ModalInputType.text,
|
||||
inputId: "rechgAmt",
|
||||
inputName: "rechgAmt",
|
||||
inputLabel: "충전금액",
|
||||
inputPlaceholder: "충전금액",
|
||||
isReq: false,
|
||||
isEnable: true,
|
||||
}),
|
||||
new ModalInput({
|
||||
inputType: ModalInputType.textarea,
|
||||
inputId: "payFnsh",
|
||||
inputName: "payFnsh",
|
||||
inputLabel: "신용결제완료구분",
|
||||
inputPlaceholder: "신용결제완료구분",
|
||||
isReq: false,
|
||||
isEnable: true,
|
||||
minLen: 0,
|
||||
maxLen: 250,
|
||||
})
|
||||
];
|
||||
if(!rootPath){ alert("rootPath를 지정하십시요."); return; }
|
||||
const insertUrl = rootPath+"insert.json";
|
||||
const updateUrl = rootPath+"update.json";
|
||||
const loadUrl = rootPath+"view.json";
|
||||
const deleteUrl = rootPath+"delete.json";
|
||||
const modalWidth = 500;
|
||||
const labelWidth = '90px';
|
||||
if(mode === ModalMode.REGISTER) {
|
||||
newModal(new ModalInfo({modalTitle: "등록", inputArray: modalInputArray, modalWidth}), mode, 'main', {insertUrl, labelWidth, callBack: () => { defaultCallback(); }})
|
||||
} else if(mode===ModalMode.VIEW || mode===ModalMode.VIEW_ONLY || mode===ModalMode.MODIFY) {
|
||||
newModal(new ModalInfo({modalTitle: "상세정보", inputArray: modalInputArray, modalWidth}), mode, 'main', {loadUrl, updateUrl, ids, labelWidth, callBack: () => { defaultCallback(); }})
|
||||
} else if(mode === ModalMode.DELETE) {
|
||||
newDelete(deleteUrl, ids, title, () => { defaultCallback(); });
|
||||
}
|
||||
const defaultCallback = () => {
|
||||
datatable.ajax.reload();
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
|
||||
$("#searchBtn").click(function() {
|
||||
datatable.ajax.reload();
|
||||
});
|
||||
|
||||
$("#resetBtn").click(function() {
|
||||
$("#stIdLike").val("");
|
||||
$("#chgrIdLike").val("");
|
||||
$("#payTpLike").val("");
|
||||
$("#plugTpLike").val("");
|
||||
$("#rechgSDtLike").val("");
|
||||
$("#rechgEDtLike").val("");
|
||||
$("#rechgTimeLike").val("");
|
||||
$("#payFnshLike").val("");
|
||||
datatable.ajax.reload();
|
||||
});
|
||||
</script>
|
||||
</section>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user