切换导航条
此项目
正在载入...
登录
mmm-go
/
partnermg
·
提交
转到一个项目
GitLab
转到群组
项目
活动
文件
提交
管道
0
构建
0
图表
里程碑
问题
0
合并请求
0
成员
标记
维基
派生
网络
创建新的问题
下载为
邮件补丁
差异文件
浏览文件
作者
陈志颖
4 years ago
提交
dd3eb1904d85902593b3634bc1ab4224d3a247f9
1 个父辈
bd75b5fb
fix:小程序同步销售日期
隐藏空白字符变更
内嵌
并排对比
正在显示
3 个修改的文件
包含
6 行增加
和
5 行删除
pkg/application/syncOrder/service/sync_order.go
pkg/domain/order_bestshop.go
pkg/infrastructure/repository/pg_order_base_repository.go
pkg/application/syncOrder/service/sync_order.go
查看文件 @
dd3eb19
...
...
@@ -87,7 +87,7 @@ func (s SyncOrderService) SyncOrderFromBestshop(cmd command.CreateOrderFromBests
/**
* @Author SteveChan
* @Description //
TODO
同步小程序订单,增加销售时间
* @Description //同步小程序订单,增加销售时间
* @Date 23:53 2021/1/26
* @Param
* @return
...
...
@@ -266,7 +266,7 @@ func (s SyncOrderService) copyOrderBestshopToOrderBase(orderBestshop *domain.Ord
orderbase
.
PartnerCategory
=
domain
.
PartnerCategory
{
Id
:
1
,
Name
:
"事业合伙人"
}
orderbase
.
Compute
()
// 销售日期
orderbase
.
SaleDate
=
orderBestshop
.
CreateTime
//
orderbase.SaleDate = orderBestshop.CreateTime
err
=
orderBaseRepository
.
Save
(
&
orderbase
)
if
err
!=
nil
{
e
:=
fmt
.
Sprintf
(
"添加order_base数据失败%s"
,
err
)
...
...
pkg/domain/order_bestshop.go
查看文件 @
dd3eb19
...
...
@@ -59,6 +59,7 @@ func (order OrderBestShop) CopyToOrderBase(o *OrderBase) {
o
.
OrderCompute
.
PlanOrderAmount
=
order
.
OrderAmount
o
.
OrderCompute
.
PlanOrderCount
=
order
.
OrderCount
o
.
DeliveryTime
,
_
=
time
.
Parse
(
"2006-01-02 15:04:05"
,
order
.
DeliveryTime
)
o
.
SaleDate
=
order
.
CreateTime
o
.
RegionInfo
.
RegionName
=
order
.
OrderArea
return
}
...
...
pkg/infrastructure/repository/pg_order_base_repository.go
查看文件 @
dd3eb19
...
...
@@ -84,9 +84,9 @@ func (repository OrderBaseRepository) Save(orderInfo *domain.OrderBase) error {
Remark
:
orderInfo
.
Remark
,
PartnerCategory
:
orderInfo
.
PartnerCategory
,
}
if
m
.
OrderType
>
2
{
// TODO 非平台自建订单,默认销售日期取订单创建日期
m
.
SaleDate
=
orderInfo
.
CreateTime
}
//if m.OrderType > 2 { // TODO 非平台自建订单,默认销售日期取订单创建日期
// m.SaleDate = orderInfo.CreateTime
//}
if
m
.
Id
==
0
{
_
,
err
=
tx
.
Model
(
m
)
.
Returning
(
"*"
)
.
...
...
请
注册
或
登录
后发表评论