mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-02 16:52:16 +09:00
휴지통 기능 추가
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@5914 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
cafe2ac4a0
commit
19a6b5fcc1
18 changed files with 400 additions and 6 deletions
29
modules/document/queries/getTrashList.xml
Normal file
29
modules/document/queries/getTrashList.xml
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
<query id="getTrashList" action="select">
|
||||
<tables>
|
||||
<table name="documents" />
|
||||
<table name="document_trash" />
|
||||
</tables>
|
||||
<columns>
|
||||
<column name="documents.*" />
|
||||
<column name="document_trash.trash_srl" alias="trash_srl" />
|
||||
<column name="document_trash.module_srl" alias="module_srl" />
|
||||
<column name="document_trash.trash_date" alias="trash_date" />
|
||||
<column name="document_trash.description" alias="trash_description" />
|
||||
<column name="document_trash.ipaddress" alias="trash_ipaddress" />
|
||||
<column name="document_trash.user_id" alias="trash_user_id" />
|
||||
<column name="document_trash.user_name" alias="trash_user_name" />
|
||||
<column name="document_trash.nick_name" alias="trash_nick_name" />
|
||||
<column name="document_trash.member_srl" alias="trash_member_srl" />
|
||||
</columns>
|
||||
<conditions>
|
||||
<condition operation="equal" column="document_trash.document_srl" default="documents.document_srl" notnull="notnull" />
|
||||
<condition operation="in" column="document_trash.module_srl" var="module_srl" filter="number" pipe="and" />
|
||||
<condition operation="equal" column="document_trash.member_srl" var="member_srl" filter="number" pipe="and" />
|
||||
</conditions>
|
||||
<navigation>
|
||||
<index var="sort_index" default="documents.list_order" order="order_type" />
|
||||
<list_count var="list_count" default="20" />
|
||||
<page_count var="page_count" default="10" />
|
||||
<page var="page" default="1" />
|
||||
</navigation>
|
||||
</query>
|
||||
Loading…
Add table
Add a link
Reference in a new issue