Преглед на файлове

Merge branch 'master' of
http://112.172.147.34:4936/style24/style24.doc.git

Conflicts:
산출물/3.설계/ST24_TSIT-D202-프로그램목록(V1.1)-20201216.xlsx

gagamel преди 5 години
родител
ревизия
f1ceacc931

+ 46 - 0
산출물/3.설계/05.DB-Object/06.DDL/table.sql

@@ -3521,6 +3521,7 @@ CREATE TABLE TB_GOODS (
   ERP_PRICE_LINK_YN  CHAR(1)             NOT NULL DEFAULT 'N' COMMENT 'ERP가격연계여부(자사상품만 사용. Y:연계)', -- WMS가격연계여부
   ERP_STOCK_LINK_YN  CHAR(1)             NOT NULL DEFAULT 'N' COMMENT 'ERP재고연계여부(자사상품만 사용. Y:연계)', -- WMS재고연계여부
   NEW_CUST_ORD_YN    CHAR(1)             NOT NULL DEFAULT 'N' COMMENT '신규고객 구매가능여부(Y:신규고객만 구매가능)', -- 신규고객 구매가능여부
+  ADULT_YN           CHAR(1)             NOT NULL DEFAULT 'N' COMMENT '성인용품여부',
   REG_NO             INT UNSIGNED        NOT NULL COMMENT '등록자번호', -- 등록자번호
   REG_DT             TIMESTAMP           NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '등록일시', -- 등록일시
   UPD_NO             INT UNSIGNED        NOT NULL COMMENT '수정자번호', -- 수정자번호
@@ -3624,6 +3625,7 @@ CREATE TABLE TB_GOODS_HST (
   ERP_PRICE_LINK_YN  CHAR(1)             NOT NULL DEFAULT 'N' COMMENT 'ERP가격연계여부(자사상품만 사용. Y:연계)', -- WMS가격연계여부
   ERP_STOCK_LINK_YN  CHAR(1)             NOT NULL DEFAULT 'N' COMMENT 'ERP재고연계여부(자사상품만 사용. Y:연계)', -- WMS재고연계여부
   NEW_CUST_ORD_YN    CHAR(1)             NOT NULL DEFAULT 'N' COMMENT '신규고객 구매가능여부(Y:신규고객만 구매가능)', -- 신규고객 구매가능여부
+  ADULT_YN           CHAR(1)             NOT NULL DEFAULT 'N' COMMENT '성인용품여부',
   REG_NO             INT UNSIGNED        NOT NULL COMMENT '등록자번호', -- 등록자번호
   REG_DT             TIMESTAMP           NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '등록일시', -- 등록일시
   UPD_NO             INT UNSIGNED        NOT NULL COMMENT '수정자번호', -- 수정자번호
@@ -7113,6 +7115,50 @@ ALTER TABLE TB_ORDER_DETAIL_ITEM
 ALTER TABLE TB_ORDER_DETAIL_ITEM
   AUTO_INCREMENT = 1;
 
+################################################################################
+#재입고알림
+################################################################################
+DROP TABLE IF EXISTS TB_REINBOUND_INFORM RESTRICT;
+CREATE TABLE TB_REINBOUND_INFORM (
+  RINBD_INFO_SQ INT UNSIGNED NOT NULL COMMENT '재입고알림일련번호', -- 재입고알림일련번호
+  CUST_NO       INT UNSIGNED NOT NULL COMMENT '고객번호', -- 고객번호
+  GOODS_CD      VARCHAR(20)  NOT NULL COMMENT '상품코드', -- 상품코드
+  OPT_CD        VARCHAR(200) NOT NULL COMMENT '옵션코드', -- 옵션코드
+  OPT_CD1       VARCHAR(200) NULL     COMMENT '옵션코드1', -- 옵션코드1
+  OPT_CD2       VARCHAR(200) NULL     COMMENT '옵션코드2', -- 옵션코드2
+  REQ_DT        TIMESTAMP    NOT NULL COMMENT '요청일시', -- 요청일시
+  INFORM_DT     TIMESTAMP    NULL     COMMENT '알림일시', -- 알림일시
+  DEL_YN        CHAR(1)      NOT NULL DEFAULT 'N' COMMENT '삭제여부', -- 삭제여부
+  REG_NO        INT UNSIGNED NOT NULL COMMENT '등록자번호', -- 등록자번호
+  REG_DT        TIMESTAMP    NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '등록일시', -- 등록일시
+  UPD_NO        INT UNSIGNED NOT NULL COMMENT '수정자번호', -- 수정자번호
+  UPD_DT        TIMESTAMP    NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '수정일시' -- 수정일시
+)
+COMMENT '재입고알림. 재입고 신규 등록에 의한 발생';
+
+-- 재입고알림
+ALTER TABLE TB_REINBOUND_INFORM
+  ADD CONSTRAINT PK_REINBOUND_INFORM -- 재입고알림 기본키
+    PRIMARY KEY (
+      RINBD_INFO_SQ -- 재입고알림일련번호
+    );
+
+ALTER TABLE TB_REINBOUND_INFORM
+  MODIFY COLUMN RINBD_INFO_SQ INT UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '재입고알림일련번호';
+
+ALTER TABLE TB_REINBOUND_INFORM
+  AUTO_INCREMENT = 1;
+
+CREATE INDEX IX_REINBOUND_INFORM_01
+  ON TB_REINBOUND_INFORM( 
+    CUST_NO ASC
+  );
+
+CREATE INDEX IX_REINBOUND_INFORM_02
+  ON TB_REINBOUND_INFORM( 
+    GOODS_CD ASC,
+    OPT_CD ASC
+  );
 
 ################################################################################
 #연관상품

+ 70 - 0
산출물/3.설계/ERD/.metadata/.log

@@ -2893,3 +2893,73 @@ Command-line arguments:  -os win32 -ws win32 -arch x86 D:\WIDE\workspace\webapps
 
 !ENTRY org.eclipse.osgi 2 1 2020-12-15 10:27:48.451
 !MESSAGE NLS unused message: ToggleColumnVisibilityHandler_5 in: com.tomato.exerd.handler.messages
+!SESSION 2020-12-16 10:46:52.334 -----------------------------------------------
+eclipse.buildId=M20090211-1700
+java.version=1.6.0_24
+java.vendor=Sun Microsystems Inc.
+BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=ko_KR
+Framework arguments:  D:\WIDE\workspace\webapps\style24\style24.doc\산출물\3.설계\ERD\ST24.exerd
+Command-line arguments:  -os win32 -ws win32 -arch x86 D:\WIDE\workspace\webapps\style24\style24.doc\산출물\3.설계\ERD\ST24.exerd
+
+!ENTRY org.eclipse.osgi 2 1 2020-12-16 10:46:53.804
+!MESSAGE NLS unused message: OpenResourceDialog_openButton_text in: org.eclipse.ui.internal.ide.messages
+
+!ENTRY org.eclipse.osgi 2 1 2020-12-16 10:46:53.804
+!MESSAGE NLS unused message: OpenResourceDialog_openWithMenu_label in: org.eclipse.ui.internal.ide.messages
+
+!ENTRY org.eclipse.osgi 2 1 2020-12-16 10:46:53.804
+!MESSAGE NLS unused message: OpenResourceDialog_openWithButton_toolTip in: org.eclipse.ui.internal.ide.messages
+
+!ENTRY org.eclipse.osgi 2 1 2020-12-16 10:46:53.819
+!MESSAGE NLS unused message: CleanDialog_cleanSelectedTaskName in: org.eclipse.ui.internal.ide.messages
+
+!ENTRY org.eclipse.osgi 2 1 2020-12-16 10:46:53.819
+!MESSAGE NLS unused message: RecentWorkspacesPreferencePage_PromptAtStartup_label in: org.eclipse.ui.internal.ide.messages
+
+!ENTRY org.eclipse.osgi 2 1 2020-12-16 10:46:53.819
+!MESSAGE NLS unused message: RecentWorkspacesPreferencePage_RemoveButton_label in: org.eclipse.ui.internal.ide.messages
+
+!ENTRY org.eclipse.osgi 2 1 2020-12-16 10:46:56.320
+!MESSAGE NLS unused message: url_couldNotResolve_projectDoesNotExist in: org.eclipse.core.internal.utils.messages
+
+!ENTRY org.eclipse.core.resources 2 10035 2020-12-16 10:46:56.382
+!MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes.
+
+!ENTRY org.eclipse.osgi 2 1 2020-12-16 10:46:56.585
+!MESSAGE NLS unused message: Shortcuts_shortcutTab in: org.eclipse.ui.internal.messages
+
+!ENTRY org.eclipse.osgi 2 1 2020-12-16 10:46:56.585
+!MESSAGE NLS unused message: Shortcuts_selectShortcutsLabel in: org.eclipse.ui.internal.messages
+
+!ENTRY org.eclipse.osgi 2 1 2020-12-16 10:46:56.585
+!MESSAGE NLS unused message: Shortcuts_availableMenus in: org.eclipse.ui.internal.messages
+
+!ENTRY org.eclipse.osgi 2 1 2020-12-16 10:46:56.585
+!MESSAGE NLS unused message: Shortcuts_availableCategories in: org.eclipse.ui.internal.messages
+
+!ENTRY org.eclipse.osgi 2 1 2020-12-16 10:46:56.585
+!MESSAGE NLS unused message: Shortcuts_allShortcuts in: org.eclipse.ui.internal.messages
+
+!ENTRY org.eclipse.osgi 2 1 2020-12-16 10:46:56.585
+!MESSAGE NLS unused message: Util_listNull in: org.eclipse.ui.internal.messages
+
+!ENTRY org.eclipse.osgi 2 1 2020-12-16 10:46:56.585
+!MESSAGE NLS unused message: OpenBrowserHandler_NoInfoDialogTitle in: org.eclipse.ui.internal.messages
+
+!ENTRY org.eclipse.osgi 2 1 2020-12-16 10:46:56.585
+!MESSAGE NLS unused message: AboutFeaturesDialog_SimpleTitle in: org.eclipse.ui.internal.messages
+
+!ENTRY org.eclipse.osgi 2 1 2020-12-16 10:47:00.746
+!MESSAGE NLS unused message: BinaryDumpHandler_1 in: com.tomato.exerd.handler.messages
+
+!ENTRY org.eclipse.osgi 2 1 2020-12-16 10:47:00.746
+!MESSAGE NLS unused message: ConvertToXMLHandler_1 in: com.tomato.exerd.handler.messages
+
+!ENTRY org.eclipse.osgi 2 1 2020-12-16 10:47:00.746
+!MESSAGE NLS unused message: SelectHandler_11 in: com.tomato.exerd.handler.messages
+
+!ENTRY org.eclipse.osgi 2 1 2020-12-16 10:47:00.746
+!MESSAGE NLS unused message: ToggleColumnVisibilityHandler_4 in: com.tomato.exerd.handler.messages
+
+!ENTRY org.eclipse.osgi 2 1 2020-12-16 10:47:00.746
+!MESSAGE NLS unused message: ToggleColumnVisibilityHandler_5 in: com.tomato.exerd.handler.messages

BIN
산출물/3.설계/ERD/.metadata/.plugins/org.eclipse.core.resources/.root/40.tree


BIN
산출물/3.설계/ERD/.metadata/.plugins/org.eclipse.core.resources/.root/41.tree


BIN
산출물/3.설계/ERD/.metadata/.plugins/org.eclipse.core.resources/.safetable/org.eclipse.core.resources


BIN
산출물/3.설계/ERD/.metadata/.plugins/org.eclipse.core.resources/.snap


+ 5 - 4
산출물/3.설계/ERD/.metadata/.plugins/org.eclipse.ui.workbench/workbench.xml

@@ -32,7 +32,7 @@
 </folder>
 </info>
 </editorArea>
-<editor focus="true" id="com.tomato.exerd.editor.DiagramEditor" name="ST24.exerd" partName="ST24.exerd" title="ST24.exerd" tooltip="D:\WIDE\workspace\webapps\style24\style24.doc\산출물\3.설계\ERD\ST24.exerd" workbook="DefaultEditorWorkbook">
+<editor activePart="true" focus="true" id="com.tomato.exerd.editor.DiagramEditor" name="ST24.exerd" partName="ST24.exerd" title="ST24.exerd" tooltip="D:\WIDE\workspace\webapps\style24\style24.doc\산출물\3.설계\ERD\ST24.exerd" workbook="DefaultEditorWorkbook">
 <input factoryID="org.eclipse.ui.ide.FileStoreEditorInputFactory" uri="file:/D:/WIDE/workspace/webapps/style24/style24.doc/산출물/3.설계/ERD/ST24.exerd"/>
 </editor>
 <editor id="com.tomato.exerd.editor.DiagramEditor" name="iSTYLE24_Mall.exerd" partName="iSTYLE24_Mall.exerd" title="iSTYLE24_Mall.exerd" tooltip="D:\WIDE\workspace\webapps\style24\style24.doc\산출물\3.설계\ERD\asis\iSTYLE24_Mall.exerd" workbook="DefaultEditorWorkbook">
@@ -68,7 +68,7 @@
 </view>
 <view id="com.tomato.exerd.validate.ui.ValidateView" partName="검토"/>
 </views>
-<perspectives activePart="org.eclipse.ui.views.ResourceNavigator" activePerspective="com.tomato.exerd.perspective.design">
+<perspectives activePart="com.tomato.exerd.editor.DiagramEditor" activePerspective="com.tomato.exerd.perspective.design">
 <perspective editorAreaTrimState="2" editorAreaVisible="1" fixed="0" version="0.016">
 <descriptor class="com.tomato.exerd.perspective.ExerdPerspectiveFactory" id="com.tomato.exerd.perspective.design" label="eXERD"/>
 <alwaysOnActionSet id="org.eclipse.ui.cheatsheets.actionSet"/>
@@ -177,6 +177,7 @@
 <editor factoryID="org.eclipse.ui.ide.FileStoreEditorInputFactory" id="com.tomato.exerd.editor.DiagramEditor" uri="file:/D:/WIDE/workspace/webapps/style24/style24.doc/산출물/3.설계/ERD/asis/iSTYLE24_Mall.exerd"/>
 <editor factoryID="org.eclipse.ui.ide.FileStoreEditorInputFactory" id="com.tomato.exerd.editor.DiagramEditor" uri="file:/D:/WIDE/workspace/webapps/style24/style24.doc/산출물/3.설계/ERD/ST24.exerd"/>
 <editor factoryID="org.eclipse.ui.ide.FileStoreEditorInputFactory" id="com.tomato.exerd.editor.DiagramEditor" uri="file:/D:/WIDE/workspace/webapps/style24/style24.doc/산출물/3.설계/ERD/asis/iSTYLE24_Mall.exerd"/>
+<editor factoryID="org.eclipse.ui.ide.FileStoreEditorInputFactory" id="com.tomato.exerd.editor.DiagramEditor" uri="file:/D:/WIDE/workspace/webapps/style24/style24.doc/산출물/3.설계/ERD/asis/iSTYLE24_Mall.exerd"/>
 </editors>
 <item historyLabel="iSTYLE24_Mall.exerd" index="1"/>
 <item historyLabel="ST24.exerd" index="0"/>
@@ -198,8 +199,6 @@
 <item historyLabel="ST24.exerd" index="0"/>
 <item historyLabel="iSTYLE24_Mall.exerd" index="1"/>
 <item historyLabel="ST24.exerd" index="0"/>
-<item historyLabel="iSTYLE24_Mall.exerd" index="1"/>
-<item historyLabel="ST24.exerd" index="0"/>
 <item historyLabel="iSTYLE24_Mall.exerd" index="2"/>
 <item historyLabel="ST24.exerd" index="0"/>
 <item historyLabel="iSTYLE24_Mall.exerd" index="2"/>
@@ -227,6 +226,8 @@
 <item historyLabel="iSTYLE24_Mall.exerd" index="7"/>
 <item historyLabel="ST24.exerd" index="8"/>
 <item historyLabel="iSTYLE24_Mall.exerd" index="9"/>
+<item historyLabel="ST24.exerd" index="8"/>
+<item historyLabel="iSTYLE24_Mall.exerd" index="10"/>
 <item active="true" historyLabel="ST24.exerd" index="8"/>
 </navigationHistory>
 <input factoryID="org.eclipse.ui.internal.model.ResourceFactory" path="/" type="8"/>

BIN
산출물/3.설계/ERD/ST24.exerd


BIN
산출물/3.설계/ST24_TSIT-D202-프로그램목록(V1.1)-20201216.xlsx