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
c2f7a9b1
Commit
c2f7a9b1
authored
Nov 01, 2024
by
鲁鑫
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
工序外协根据产品编码,工序编码和数量匹配工序报价
parent
6146f2cc
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
25 additions
and
2 deletions
+25
-2
spring-redis.xml
huigou-xt/src/main/resources/config/spring/spring-redis.xml
+6
-1
Org.js
huigou-xt/src/main/webapp/system/opm/organization/Org.js
+1
-1
processOutsourceDetail.js
...biz/topsun/sap/processOutsource/processOutsourceDetail.js
+14
-0
SyncOrgController.java
...m/huigou/topsun/syncOrg/controller/SyncOrgController.java
+4
-0
No files found.
huigou-xt/src/main/resources/config/spring/spring-redis.xml
View file @
c2f7a9b1
...
...
@@ -20,7 +20,12 @@
<property
name=
"port"
value=
"${shiro.port}"
/>
<property
name=
"usePool"
value=
"true"
/>
<property
name=
"poolConfig"
ref=
"jedisPoolConfig"
/>
<property
name=
"database"
value=
"0"
/>
<!--指定数据库-->
<!--开发测试指定数据库-->
<property
name=
"database"
value=
"0"
/>
<!--310集成指定数据库-->
<!--<property name="database" value="1"/>-->
<!--320指定数据库-->
<!--<property name="database" value="2"/>-->
</bean>
<bean
id=
"redisTemplate"
class=
"org.springframework.data.redis.core.RedisTemplate"
>
...
...
huigou-xt/src/main/webapp/system/opm/organization/Org.js
View file @
c2f7a9b1
...
...
@@ -138,7 +138,7 @@ $(function () {
{
display
:
"编码"
,
name
:
"code"
,
width
:
100
,
minWidth
:
60
,
type
:
"string"
,
align
:
"left"
},
{
display
:
"名称"
,
name
:
"name"
,
width
:
100
,
minWidth
:
60
,
type
:
"string"
,
align
:
"left"
},
{
display
:
"证件号码"
,
name
:
"certificateNo"
,
width
:
160
,
minWidth
:
60
,
type
:
"string"
,
align
:
"left"
},
{
display
:
"全称"
,
name
:
"longName"
,
width
:
100
,
minWidth
:
60
,
type
:
"string"
,
align
:
"left"
},
//
{ display: "全称", name: "longName", width: 100, minWidth: 60, type: "string", align: "left" },
{
display
:
"排序号"
,
name
:
"sequence"
,
width
:
60
,
minWidth
:
60
,
type
:
"string"
,
align
:
"left"
,
render
:
function
(
item
)
{
var
id
=
item
.
id
.
replace
(
/
\@
/g
,
"_"
);
...
...
topsun-xt/src/main/webapp/biz/topsun/sap/processOutsource/processOutsourceDetail.js
View file @
c2f7a9b1
...
...
@@ -85,6 +85,20 @@ function loadOrderItemGrid() {
checkbox
:
true
,
fixedCellHeight
:
true
,
selectRowButtonOnly
:
true
,
onAfterEdit
:
function
(
item
)
{
if
(
item
.
column
.
name
==
"menge"
){
Public
.
ajax
(
web_app
.
name
+
"/processQuotedPrice/findPriceByProductAndProcess.ajax?"
+
"productCode="
+
item
.
record
.
productCode
+
"&outProcess="
+
item
.
record
.
wempf
+
"&number="
+
item
.
record
.
menge
,
{
},
function
(
data
){
orderItemGridManager
.
updateRow
(
item
.
record
,{
kbetr
:
data
})
})
}
}
});
UICtrl
.
setSearchAreaToggle
(
orderItemGridManager
);
}
...
...
topsun/src/main/java/com/huigou/topsun/syncOrg/controller/SyncOrgController.java
View file @
c2f7a9b1
...
...
@@ -29,6 +29,10 @@ public class SyncOrgController extends CommonController {
@Autowired
private
OrgSyncApplication
orgSyncApplication
;
/**
* 同步人员到EP
* @return
*/
@SkipAuth
@RequestMapping
(
value
=
"/syncOrgInfo"
)
@ResponseBody
...
...
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