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
6f50594f
Commit
6f50594f
authored
Nov 30, 2023
by
鲁鑫
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug调整
parent
b72d74ec
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
21 additions
and
15 deletions
+21
-15
proofingApplyList.js
.../src/main/webapp/biz/topsun/proofing/proofingApplyList.js
+3
-3
quotationDetail.js
...t/src/main/webapp/biz/topsun/quotation/quotationDetail.js
+12
-6
quotationList.js
...-xt/src/main/webapp/biz/topsun/quotation/quotationList.js
+1
-1
Quotation.java
...a/com/huigou/topsun/quotation/domain/model/Quotation.java
+5
-5
No files found.
topsun-xt/src/main/webapp/biz/topsun/proofing/proofingApplyList.js
View file @
6f50594f
...
...
@@ -147,7 +147,7 @@ function loadProofingApplyListGrid() {
fixedCellHeight
:
true
,
selectRowButtonOnly
:
true
,
onDblClickRow
:
function
(
data
,
rowindex
,
rowobj
)
{
//
doView(data.id);
doView
(
data
.
id
);
}
});
UICtrl
.
setSearchAreaToggle
(
gridManager
);
...
...
@@ -233,8 +233,8 @@ function deleteHandler() {
function
doView
(
proofingApplyId
)
{
UICtrl
.
addTabItem
({
tabid
:
'proofingApply'
,
tabid
:
'proofingApply'
+
proofingApplyId
,
text
:
"详情"
,
url
:
web_app
.
name
+
'/proofingApply/s
kipProofingApply.do?i
d='
+
proofingApplyId
url
:
web_app
.
name
+
'/proofingApply/s
howProofingApply.job?bizI
d='
+
proofingApplyId
});
}
\ No newline at end of file
topsun-xt/src/main/webapp/biz/topsun/quotation/quotationDetail.js
View file @
6f50594f
...
...
@@ -128,16 +128,20 @@ function reloadGrid() {
function
reloadTechnologyGrid
(){
var
datas
=
bomGridManager
.
rows
;
var
productIdList
=
[];
if
(
datas
){
if
(
datas
.
length
>
0
){
datas
.
forEach
(
data
=>
{
var
productId
=
data
.
productId
;
productIdList
.
push
(
productId
);
if
(
productId
!=
null
&&
productId
!==
""
){
productIdList
.
push
(
productId
);
}
})
if
(
productIdList
.
length
>
0
){
var
param
=
{
ids
:
$
.
toJSON
(
productIdList
)};
$
(
'#technologyGrid'
).
ligerGetGridManager
().
options
.
url
=
web_app
.
name
+
'/technology/queryTechnologyByProduct.ajax'
;
_grid
=
UICtrl
.
getGridManager
(
'#technologyGrid'
);
UICtrl
.
gridSearch
(
_grid
,
param
);
}
}
var
param
=
{
ids
:
$
.
toJSON
(
productIdList
)};
$
(
'#technologyGrid'
).
ligerGetGridManager
().
options
.
url
=
web_app
.
name
+
'/technology/queryTechnologyByProduct.ajax'
;
_grid
=
UICtrl
.
getGridManager
(
'#technologyGrid'
);
UICtrl
.
gridSearch
(
_grid
,
param
);
}
//获取数据保存的参数
...
...
@@ -171,6 +175,8 @@ function getId() {
function
setId
(
value
)
{
$
(
"#quotationId"
).
val
(
value
);
var
_grid
=
UICtrl
.
getGridManager
(
'#bomGrid'
);
_grid
.
options
.
parms
.
quotationId
=
value
;
}
...
...
topsun-xt/src/main/webapp/biz/topsun/quotation/quotationList.js
View file @
6f50594f
...
...
@@ -31,7 +31,7 @@ function loadQuotationListGrid() {
align
:
"left"
},
{
display
:
"
品牌/工厂客户
"
,
display
:
"
客户名称
"
,
name
:
"customerManagerId"
,
width
:
120
,
minWidth
:
60
,
...
...
topsun/src/main/java/com/huigou/topsun/quotation/domain/model/Quotation.java
View file @
6f50594f
...
...
@@ -30,7 +30,7 @@ public class Quotation extends FlowBillAbstractEntity {
* 品牌/工厂客户id
*/
@Column
(
name
=
"customer_manager_id"
)
private
Lo
ng
customerManagerId
;
private
Stri
ng
customerManagerId
;
/**
* 报价日期
...
...
@@ -42,7 +42,7 @@ public class Quotation extends FlowBillAbstractEntity {
* 修改人id
*/
@Column
(
name
=
"update_by"
)
private
Lo
ng
updateBy
;
private
Stri
ng
updateBy
;
/**
* 修改时间
...
...
@@ -101,17 +101,17 @@ public class Quotation extends FlowBillAbstractEntity {
/**
* 主管
*/
private
Lo
ng
manager
;
private
Stri
ng
manager
;
/**
* 经办人
*/
private
Lo
ng
handler
;
private
Stri
ng
handler
;
/**
* 业务员
*/
private
Lo
ng
salesman
;
private
Stri
ng
salesman
;
private
static
final
long
serialVersionUID
=
1L
;
...
...
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