Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jiedao-api-boot-master
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
lanbaoming
jiedao-api-boot-master
Commits
5778c2c1
Commit
5778c2c1
authored
Sep 09, 2024
by
zhengyi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
代码冲突修复,并补充收货地址的国家、省、市数据冗余到主订单表
parent
e4582ea5
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
15 additions
and
24 deletions
+15
-24
20240909.sql
sql/v2.1/20240909.sql
+6
-0
OrderBackVO.java
...a/cn/iocoder/yudao/module/order/vo/order/OrderBackVO.java
+0
-6
OrderBaseVO.java
...a/cn/iocoder/yudao/module/order/vo/order/OrderBaseVO.java
+9
-0
OrderCreateReqVO.java
...iocoder/yudao/module/order/vo/order/OrderCreateReqVO.java
+0
-9
OrderUpdateReqVO.java
...iocoder/yudao/module/order/vo/order/OrderUpdateReqVO.java
+0
-9
No files found.
sql/v2.1/20240909.sql
View file @
5778c2c1
-- 当订单无收货人时,收货方式无法保存的bug修复
alter
table
`ecw_order`
add
column
`harvest_method`
tinyint
DEFAULT
'1'
COMMENT
'收货方式:1 自提 2 送货上门'
;
alter
table
`ecw_order`
add
column
`city`
bigint
DEFAULT
NULL
COMMENT
'收货地址市'
;
alter
table
`ecw_order`
add
column
`province`
bigint
DEFAULT
NULL
COMMENT
'收货地址省'
;
alter
table
`ecw_order`
add
column
`country`
bigint
DEFAULT
NULL
COMMENT
'收货地址国家'
;
alter
table
`ecw_order`
add
column
`consignee_address`
varchar
(
255
)
DEFAULT
''
COMMENT
'收货地址'
;
...
...
yudao-module-order/yudao-module-order-core/src/main/java/cn/iocoder/yudao/module/order/vo/order/OrderBackVO.java
View file @
5778c2c1
...
...
@@ -428,9 +428,6 @@ public class OrderBackVO {
@ApiModelProperty
(
value
=
"收货地址的市"
)
private
Long
city
;
@ApiModelProperty
(
value
=
"收货地址"
)
private
String
consigneeAddress
;
@ApiModelProperty
(
value
=
"收货客户id"
,
required
=
true
)
@NotNull
(
message
=
"收货客户id不能为空"
)
private
Long
consigneeId
;
...
...
@@ -442,9 +439,6 @@ public class OrderBackVO {
@ApiModelProperty
(
value
=
"收货人信息"
)
private
OrderConsigneeBackVO
consigneeVO
;
@ApiModelProperty
(
value
=
"收获方式:1 自提 2 送货上门 "
)
private
Integer
harvestMethod
;
@ApiModelProperty
(
value
=
"始发地id"
)
private
Long
departureId
;
...
...
yudao-module-order/yudao-module-order-core/src/main/java/cn/iocoder/yudao/module/order/vo/order/OrderBaseVO.java
View file @
5778c2c1
...
...
@@ -285,6 +285,15 @@ public class OrderBaseVO {
@ApiModelProperty
(
value
=
"收货方式:1 自提 2 送货上门 "
)
private
Integer
harvestMethod
;
@ApiModelProperty
(
value
=
"收货地址的国家"
)
private
Long
country
;
@ApiModelProperty
(
value
=
"收货地址的省"
)
private
Long
province
;
@ApiModelProperty
(
value
=
"收货地址的市"
)
private
Long
city
;
@ApiModelProperty
(
value
=
"收货地址"
)
private
String
consigneeAddress
;
...
...
yudao-module-order/yudao-module-order-core/src/main/java/cn/iocoder/yudao/module/order/vo/order/OrderCreateReqVO.java
View file @
5778c2c1
...
...
@@ -71,15 +71,6 @@ public class OrderCreateReqVO extends OrderBaseVO {
@ApiModelProperty
(
value
=
"收货客户联系人id"
)
private
Long
consigneeContactsId
;
@ApiModelProperty
(
value
=
"国家"
)
private
Long
country
;
@ApiModelProperty
(
value
=
"省"
)
private
Long
province
;
@ApiModelProperty
(
value
=
"市"
)
private
Long
city
;
@ApiModelProperty
(
value
=
"自定义付款人清单(name 详见字典 自定义付款人(custom_drawee), value 1 发货人 2 收货人)"
)
private
List
<
CustomDraweeVO
>
customDraweeVOList
;
...
...
yudao-module-order/yudao-module-order-core/src/main/java/cn/iocoder/yudao/module/order/vo/order/OrderUpdateReqVO.java
View file @
5778c2c1
...
...
@@ -107,15 +107,6 @@ public class OrderUpdateReqVO extends OrderBaseVO {
@ApiModelProperty
(
value
=
"收货人电话国家区号"
)
private
String
countryCode
;
@ApiModelProperty
(
value
=
"国家"
)
private
Long
country
;
@ApiModelProperty
(
value
=
"省"
)
private
Long
province
;
@ApiModelProperty
(
value
=
"市"
)
private
Long
city
;
@ApiModelProperty
(
value
=
"抄送人(id逗号拼接)"
)
private
String
ccIds
;
...
...
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