Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
T
topsun-bpm
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
鲁鑫
topsun-bpm
Commits
c5c6763c
Commit
c5c6763c
authored
Apr 14, 2025
by
1650842865
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
采购信息记录排除已经禁用的供应商
parent
7e69ed9d
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
12 additions
and
14 deletions
+12
-14
exceptionReasonTypeDetailList.js
...psun/sap/exceptionReport/exceptionReasonTypeDetailList.js
+1
-1
insertExceptionReasonTypeDetail.jsp
...n/sap/exceptionReport/insertExceptionReasonTypeDetail.jsp
+2
-3
ExceptionReasonTypeDetail.java
...sap/exceptionReport/domain/ExceptionReasonTypeDetail.java
+1
-1
easy-search-suppliers.xml
...urces/config/content/easysearch/easy-search-suppliers.xml
+8
-9
No files found.
topsun-xt/src/main/webapp/biz/topsun/sap/exceptionReport/exceptionReasonTypeDetailList.js
View file @
c5c6763c
...
@@ -21,7 +21,7 @@ function initGrid() {
...
@@ -21,7 +21,7 @@ function initGrid() {
});
});
gridManager
=
UICtrl
.
grid
(
'#maingrid'
,
{
gridManager
=
UICtrl
.
grid
(
'#maingrid'
,
{
columns
:
[
columns
:
[
{
display
:
"序号(一级分类编码)"
,
name
:
"reasonType"
,
width
:
"200"
,
align
:
"center"
,
type
:
"
string
"
}
{
display
:
"序号(一级分类编码)"
,
name
:
"reasonType"
,
width
:
"200"
,
align
:
"center"
,
type
:
"
int
"
}
,
{
display
:
"标准名称大类(一级分类)"
,
name
:
"reasonTypeName"
,
width
:
"200"
,
minWidth
:
60
,
type
:
"string"
,
align
:
"center"
}
,
{
display
:
"标准名称大类(一级分类)"
,
name
:
"reasonTypeName"
,
width
:
"200"
,
minWidth
:
60
,
type
:
"string"
,
align
:
"center"
}
,
{
display
:
"问题类型代码(二级分类 )"
,
name
:
"reasonTypeDetail"
,
width
:
"200"
,
minWidth
:
60
,
type
:
"string"
,
align
:
"center"
}
,
{
display
:
"问题类型代码(二级分类 )"
,
name
:
"reasonTypeDetail"
,
width
:
"200"
,
minWidth
:
60
,
type
:
"string"
,
align
:
"center"
}
,
{
display
:
"问题类型(二级分类 )"
,
name
:
"reasonTypeDetailName"
,
width
:
"500"
,
minWidth
:
60
,
type
:
"string"
,
align
:
"center"
}
,
{
display
:
"问题类型(二级分类 )"
,
name
:
"reasonTypeDetailName"
,
width
:
"500"
,
minWidth
:
60
,
type
:
"string"
,
align
:
"center"
}
...
...
topsun-xt/src/main/webapp/biz/topsun/sap/exceptionReport/insertExceptionReasonTypeDetail.jsp
View file @
c5c6763c
...
@@ -11,13 +11,12 @@
...
@@ -11,13 +11,12 @@
<div
class=
"hg-form-cols"
>
<div
class=
"hg-form-cols"
>
<div
class=
"hg-form-row"
>
<div
class=
"hg-form-row"
>
<x:hidden
name=
"id"
/>
<x:hidden
name=
"id"
/>
<x:inputC
name=
"reasonType"
label=
"序号(一级分类编码)"
labelCol=
"3"
fieldCol=
"2"
required=
"true"
/>
<x:inputC
name=
"reasonType"
label=
"序号(一级分类编码)"
labelCol=
"3"
fieldCol=
"2"
required=
"true"
mask=
"999"
/>
<x:inputC
name=
"reasonTypeName"
label=
"标准名称大类(一级分类)"
labelCol=
"3"
fieldCol=
"4"
required=
"true"
/>
<x:inputC
name=
"reasonTypeName"
label=
"标准名称大类(一级分类)"
labelCol=
"3"
fieldCol=
"4"
required=
"true"
/>
</div>
</div>
<div
class=
"hg-form-row"
>
<div
class=
"hg-form-row"
>
<x:inputC
name=
"reasonTypeDetail"
label=
"问题类型代码(二级分类 )"
labelCol=
"3"
fieldCol=
"2"
required=
"true"
/>
<x:inputC
name=
"reasonTypeDetail"
label=
"问题类型代码(二级分类 )"
labelCol=
"3"
fieldCol=
"2"
required=
"true"
/>
<x:inputC
name=
"reasonTypeDetailName"
label=
"问题类型(二级分类 )"
labelCol=
"3"
fieldCol=
"4"
required=
"true"
/>
<x:inputC
name=
"reasonTypeDetailName"
label=
"问题类型(二级分类 )"
labelCol=
"3"
fieldCol=
"4"
required=
"true"
/>
</div>
</div>
</div>
</div>
</form>
</form>
...
...
topsun/src/main/java/com/huigou/topsun/sap/exceptionReport/domain/ExceptionReasonTypeDetail.java
View file @
c5c6763c
...
@@ -19,7 +19,7 @@ import javax.persistence.Table;
...
@@ -19,7 +19,7 @@ import javax.persistence.Table;
public
class
ExceptionReasonTypeDetail
extends
AbstractEntity
{
public
class
ExceptionReasonTypeDetail
extends
AbstractEntity
{
@Column
(
name
=
"reason_type"
)
@Column
(
name
=
"reason_type"
)
private
String
reasonType
;
private
Integer
reasonType
;
@Column
(
name
=
"reason_type_name"
)
@Column
(
name
=
"reason_type_name"
)
private
String
reasonTypeName
;
private
String
reasonTypeName
;
...
...
topsun/src/main/resources/config/content/easysearch/easy-search-suppliers.xml
View file @
c5c6763c
...
@@ -3,18 +3,17 @@
...
@@ -3,18 +3,17 @@
<easy-search
name=
"selectSuppliers"
desc=
"供应商"
>
<easy-search
name=
"selectSuppliers"
desc=
"供应商"
>
<sql>
<sql>
SELECT DISTINCT t.partner, t.name_org1 FROM sap_suppliers_info t
SELECT t1.partner, t1.name_org1
WHERE
FROM sap_suppliers_info t1
t.STATUS = 3
INNER JOIN ( SELECT partner, MAX( fillin_date ) AS max_date FROM sap_suppliers_info WHERE STATUS = 3 GROUP BY partner ) t2 ON t1.partner = t2.partner
AND t.apply_type != - 1
AND t1.fillin_date = t2.max_date WHERE t1.STATUS = 3
AND t.bu_group IN ( 'Z001', 'Z002', 'Z003', 'Z005' )
AND t1.apply_type != - 1 AND t1.bu_group IN ( 'Z001', 'Z002', 'Z003', 'Z005' ) AND t1.partner IS NOT NULL
AND t.partner IS NOT NULL
AND t1.partner != '' AND t1.sperm = '0'
AND t.partner != ''
ORDER BY t1.partner ASC
ORDER BY t.partner ASC
</sql>
</sql>
<field
name=
"供应商编码"
title=
"供应商编码"
code=
"partner"
width=
"100"
/>
<field
name=
"供应商编码"
title=
"供应商编码"
code=
"partner"
width=
"100"
/>
<field
name=
"供应商名称"
title=
"供应商名称"
code=
"nameOrg1"
width=
"200"
/>
<field
name=
"供应商名称"
title=
"供应商名称"
code=
"nameOrg1"
width=
"200"
/>
<condition
column=
"name_org1"
name=
"nameOrg1"
symbol=
"like"
alias=
"t"
/>
<condition
column=
"name_org1"
name=
"nameOrg1"
symbol=
"like"
alias=
"t
1
"
/>
</easy-search>
</easy-search>
<!--<easy-search name="selectSupplierWaers" desc="根据供应商编码查询货币码">
<!--<easy-search name="selectSupplierWaers" desc="根据供应商编码查询货币码">
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment