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
3dc9c23d
Commit
3dc9c23d
authored
Dec 03, 2024
by
1650842865
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
采购信息记录默认有效日期起止;审批选项改为同意/不同意;采购申请审批,采购订单审批,回退标识不通过
parent
31a5bbc9
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
3 deletions
+9
-3
nonProdApplyDetail.jsp
...webapp/biz/topsun/sap/nonProdApply/nonProdApplyDetail.jsp
+1
-1
purchaseInfoRecordDetail.js
...topsun/sap/purchaseInfoRecord/purchaseInfoRecordDetail.js
+6
-0
SapPurchaseApprovalApplicationImpl.java
.../application/impl/SapPurchaseApprovalApplicationImpl.java
+1
-1
SapPurchaseOrderApplicationImpl.java
...der/application/impl/SapPurchaseOrderApplicationImpl.java
+1
-1
No files found.
topsun-xt/src/main/webapp/biz/topsun/sap/nonProdApply/nonProdApplyDetail.jsp
View file @
3dc9c23d
...
@@ -58,7 +58,7 @@
...
@@ -58,7 +58,7 @@
<x:title
title=
"维护物品总体内容"
name=
"group"
/>
<x:title
title=
"维护物品总体内容"
name=
"group"
/>
<div
class=
"hg-form-cols"
>
<div
class=
"hg-form-cols"
>
<div
class=
"hg-form-row"
>
<div
class=
"hg-form-row"
>
<x:inputC
name=
"genericName"
label=
"通用品名"
required=
"
tru
e"
labelCol=
"1"
fieldCol=
"5"
/>
<x:inputC
name=
"genericName"
label=
"通用品名"
required=
"
fals
e"
labelCol=
"1"
fieldCol=
"5"
/>
<x:inputC
name=
"matnr"
label=
"物料编号"
labelCol=
"1"
fieldCol=
"2"
/>
<x:inputC
name=
"matnr"
label=
"物料编号"
labelCol=
"1"
fieldCol=
"2"
/>
<c:if
test=
"
${
kind
==
'product'
}
"
>
<c:if
test=
"
${
kind
==
'product'
}
"
>
<x:inputC
name=
"applicableStandard"
label=
"适用标准(国标)"
labelCol=
"1"
fieldCol=
"2"
/>
<x:inputC
name=
"applicableStandard"
label=
"适用标准(国标)"
labelCol=
"1"
fieldCol=
"2"
/>
...
...
topsun-xt/src/main/webapp/biz/topsun/sap/purchaseInfoRecord/purchaseInfoRecordDetail.js
View file @
3dc9c23d
...
@@ -546,6 +546,12 @@ function getGridData(){
...
@@ -546,6 +546,12 @@ function getGridData(){
}
}
function
initShowDialog
()
{
function
initShowDialog
()
{
if
(
$
(
"#datab"
).
val
()
==
null
||
$
(
"#datab"
).
val
()
==
''
){
$
(
"#datab"
).
val
(
$
(
"#fillinDate"
).
val
().
substring
(
0
,
10
));
}
if
(
$
(
"#datbi"
).
val
()
==
null
||
$
(
"#datbi"
).
val
()
==
''
){
$
(
"#datbi"
).
val
(
'9999-12-31'
);
}
// var mainFileTable = $('#compensateLibraryList').fileList();
// var mainFileTable = $('#compensateLibraryList').fileList();
// mainFileTable.find('table').css({
// mainFileTable.find('table').css({
// borderTopWidth: 0
// borderTopWidth: 0
...
...
topsun/src/main/java/com/huigou/topsun/sap/purchaseApproval/application/impl/SapPurchaseApprovalApplicationImpl.java
View file @
3dc9c23d
...
@@ -215,7 +215,7 @@ public class SapPurchaseApprovalApplicationImpl extends FlowBroker implements Sa
...
@@ -215,7 +215,7 @@ public class SapPurchaseApprovalApplicationImpl extends FlowBroker implements Sa
SapPurchaseApproval
sapPurchaseApproval
=
sapPurchaseApprovalRepository
.
findOne
(
bizId
);
SapPurchaseApproval
sapPurchaseApproval
=
sapPurchaseApprovalRepository
.
findOne
(
bizId
);
sapPurchaseApproval
.
setStatusId
(
BizBillStatus
.
APPLYING
.
getId
());
sapPurchaseApproval
.
setStatusId
(
BizBillStatus
.
APPLYING
.
getId
());
sapPurchaseApprovalRepository
.
save
(
sapPurchaseApproval
);
sapPurchaseApprovalRepository
.
save
(
sapPurchaseApproval
);
//
sendSapData(sapPurchaseApproval,"N");
sendSapData
(
sapPurchaseApproval
,
"N"
);
//终止
//终止
//workflowApplication.abortProcessInstance(delegateTask.getProcessInstanceId());
//workflowApplication.abortProcessInstance(delegateTask.getProcessInstanceId());
}
}
...
...
topsun/src/main/java/com/huigou/topsun/sap/purchaseOrder/application/impl/SapPurchaseOrderApplicationImpl.java
View file @
3dc9c23d
...
@@ -253,7 +253,7 @@ public class SapPurchaseOrderApplicationImpl extends FlowBroker implements SapPu
...
@@ -253,7 +253,7 @@ public class SapPurchaseOrderApplicationImpl extends FlowBroker implements SapPu
SapPurchaseOrder
sapPurchaseOrder
=
sapPurchaseOrderRepository
.
findOne
(
bizId
);
SapPurchaseOrder
sapPurchaseOrder
=
sapPurchaseOrderRepository
.
findOne
(
bizId
);
sapPurchaseOrder
.
setStatusId
(
BizBillStatus
.
APPLYING
.
getId
());
sapPurchaseOrder
.
setStatusId
(
BizBillStatus
.
APPLYING
.
getId
());
SapPurchaseOrder
save
=
sapPurchaseOrderRepository
.
save
(
sapPurchaseOrder
);
SapPurchaseOrder
save
=
sapPurchaseOrderRepository
.
save
(
sapPurchaseOrder
);
//
this.sendSapDate(save, "N");
this
.
sendSapDate
(
save
,
"N"
);
// 调用 onEnd 方法
// 调用 onEnd 方法
// DelegateExecution execution = delegateTask.getExecution();
// DelegateExecution execution = delegateTask.getExecution();
// onEnd(execution);
// onEnd(execution);
...
...
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