Skip to content

Commit 713ffaf

Browse files
committed
fix. prj_cd default value 수정
1 parent dad5597 commit 713ffaf

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

cost-fe/src/components/EventListener.vue

+4-4
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,9 @@ export default {
6464
this.store.setTumblebugWorkspace(this.tumblebugWorkspaceid);
6565
this.tumblebugWorkspaceName = 'testWs';
6666
this.store.setTumblebugWorkspaceName(this.tumblebugWorkspaceName);
67-
this.tumblebugProjectid = 'testPrj';
67+
this.tumblebugProjectid = 'undefined';
6868
this.store.setTumblebugProject(this.tumblebugProjectid);
69-
this.tumblebugProjectName = 'testPrj';
69+
this.tumblebugProjectName = 'undefined';
7070
this.store.setTumblebugProjectName(this.tumblebugProjectName);
7171
this.tumblebugUsertoken = 'Null';
7272
this.store.setTumblebugUserToken(this.tumblebugUsertoken);
@@ -78,9 +78,9 @@ export default {
7878
this.store.setTumblebugWorkspace(this.tumblebugWorkspaceid);
7979
this.tumblebugWorkspaceName = 'testWs';
8080
this.store.setTumblebugWorkspaceName(this.tumblebugWorkspaceName);
81-
this.tumblebugProjectid = 'testPrj';
81+
this.tumblebugProjectid = 'undefined';
8282
this.store.setTumblebugProject(this.tumblebugProjectid);
83-
this.tumblebugProjectName = 'testPrj';
83+
this.tumblebugProjectName = 'undefined';
8484
this.store.setTumblebugProjectName(this.tumblebugProjectName);
8585
this.tumblebugUsertoken = 'Null';
8686
this.store.setTumblebugUserToken(this.tumblebugUsertoken);

costCollector/src/main/java/com/mcmp/collector/service/Cur.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ public void batchInsertCURData(String payerId, LocalDateTime collectDt, String s
184184
RscGrpMetaModel rscGrpMetaModel = RscGrpMetaModel.builder()
185185
.csp("AWS")
186186
.account(payerId)
187-
.prj_cd("testPrj")
187+
.prj_cd("undefined")
188188
.year_month(todoCollectMonth)
189189
.build();
190190

0 commit comments

Comments
 (0)