Skip to content
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation
This project
Loading...
Sign in
李苗
/
Vion-DevOps
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit 3e318684
authored
Aug 30, 2024
by
HlQ
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
[add] 同步销帮帮合同,添加合同背景情况说明字段
1 parent
276eac91
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
0 deletions
src/main/java/vion/cron/ContractRunner.java
src/main/java/vion/model/Contract.java
src/main/java/vion/vo/ContractVO.java
src/main/java/vion/cron/ContractRunner.java
View file @
3e31868
...
@@ -217,6 +217,7 @@ public class ContractRunner {
...
@@ -217,6 +217,7 @@ public class ContractRunner {
contract
.
setSubject
(
"北京文安智能技术股份有限公司"
);
contract
.
setSubject
(
"北京文安智能技术股份有限公司"
);
contract
.
setCustomerName
(
jsonObj1
.
getJSONObject
(
"text_2"
).
getStr
(
"name"
));
contract
.
setCustomerName
(
jsonObj1
.
getJSONObject
(
"text_2"
).
getStr
(
"name"
));
contract
.
setSaleName
(
jsonObj1
.
getJSONObject
(
"text_8"
).
getStr
(
"name"
));
contract
.
setSaleName
(
jsonObj1
.
getJSONObject
(
"text_8"
).
getStr
(
"name"
));
contract
.
setBackInfo
(
jsonObj1
.
getStr
(
"text_29"
));
contract
.
setCreateUser
(-
1L
);
contract
.
setCreateUser
(-
1L
);
contract
.
setModifyUser
(-
1L
);
contract
.
setModifyUser
(-
1L
);
contract
.
setEntryTime
(
DateUtil
.
date
(
result
.
getLong
(
"addTime"
)
*
1000
));
contract
.
setEntryTime
(
DateUtil
.
date
(
result
.
getLong
(
"addTime"
)
*
1000
));
...
...
src/main/java/vion/model/Contract.java
View file @
3e31868
...
@@ -178,6 +178,12 @@ public class Contract {
...
@@ -178,6 +178,12 @@ public class Contract {
@TableField
(
value
=
"financial_status"
)
@TableField
(
value
=
"financial_status"
)
private
Integer
financialStatus
;
private
Integer
financialStatus
;
/**
* 合同背景情况说明
*/
@TableField
(
value
=
"back_info"
)
private
String
backInfo
;
@TableField
(
exist
=
false
)
@TableField
(
exist
=
false
)
private
Date
originalModTime
;
private
Date
originalModTime
;
...
...
src/main/java/vion/vo/ContractVO.java
View file @
3e31868
...
@@ -156,6 +156,11 @@ public class ContractVO {
...
@@ -156,6 +156,11 @@ public class ContractVO {
private
Integer
financialStatus
;
private
Integer
financialStatus
;
/**
/**
* 合同背景情况说明
*/
private
String
backInfo
;
/**
* 开票金额
* 开票金额
*/
*/
@ExcelColumn
(
order
=
14
,
title
=
"已开票"
)
@ExcelColumn
(
order
=
14
,
title
=
"已开票"
)
...
...
Write
Preview
Markdown
is supported
Attach a file
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 post a comment