...
|
...
|
@@ -51,6 +51,8 @@ type orderDetail struct { |
|
|
OrderDist string `json:"orderDist"`
|
|
|
//id
|
|
|
Id int64 `json:"id"`
|
|
|
//订单状态
|
|
|
OrderStatue int `json:"orderStatue"`
|
|
|
}
|
|
|
|
|
|
//UpdateOrderPurpose 更新意向订单
|
...
|
...
|
@@ -102,8 +104,10 @@ func (c *OrderController) addOrderPurpose(param orderDetail) error { |
|
|
PartnerBonusPercent: param.PartnerRatio,
|
|
|
//业务员分红百分比
|
|
|
SalesmanBonusPercent: param.SalesmanRatio,
|
|
|
//订单类型
|
|
|
OrderType: domain.OrderIntention,
|
|
|
}
|
|
|
err := orderSrv.CreateOrderPurpose(Createcmd)
|
|
|
err := orderSrv.CreateOrder(Createcmd)
|
|
|
return err
|
|
|
}
|
|
|
|
...
|
...
|
@@ -298,18 +302,20 @@ func (c *OrderController) PageListOrderReal() { |
|
|
for i := range orderinfos {
|
|
|
orderinfo := orderinfos[i]
|
|
|
m := map[string]interface{}{
|
|
|
"createTime": orderinfo.CreateAt.Local().Format("2006-01-02 15:04:05"),
|
|
|
"updateTime": orderinfo.UpdateAt.Local().Format("2006-01-02 15:04:05"),
|
|
|
"buyer": orderinfo.Buyer.BuyerName,
|
|
|
"id": orderinfo.Id,
|
|
|
"orderId": orderinfo.OrderCode,
|
|
|
"partner": orderinfo.PartnerInfo.PartnerName,
|
|
|
"partnerRatio": orderinfo.PartnerBonusPercent,
|
|
|
"orderName": orderinfo.OrderName,
|
|
|
"OrderNum": orderinfo.OrderCount,
|
|
|
"orderPrice": orderinfo.OrderAmount,
|
|
|
"orderDist": orderinfo.OrderRegionInfo.RegionName,
|
|
|
"orderStatue": orderinfo.OrderStatus,
|
|
|
"createTime": orderinfo.CreateAt.Local().Format("2006-01-02 15:04:05"),
|
|
|
"updateTime": orderinfo.UpdateAt.Local().Format("2006-01-02 15:04:05"),
|
|
|
"buyer": orderinfo.Buyer.BuyerName,
|
|
|
"id": orderinfo.Id,
|
|
|
"orderId": orderinfo.OrderCode,
|
|
|
"partner": orderinfo.PartnerInfo.PartnerName,
|
|
|
"partnerRatio": orderinfo.PartnerBonusPercent,
|
|
|
"orderName": orderinfo.OrderName,
|
|
|
"OrderNum": orderinfo.OrderCount,
|
|
|
"orderPrice": orderinfo.OrderAmount,
|
|
|
"orderActualNum": orderinfo.OrderActualCount,
|
|
|
"orderActualPrice": orderinfo.OrderActualAmount,
|
|
|
"orderDist": orderinfo.OrderRegionInfo.RegionName,
|
|
|
"orderStatue": orderinfo.OrderStatus,
|
|
|
}
|
|
|
rsp = append(rsp, m)
|
|
|
}
|
...
|
...
|
@@ -328,7 +334,155 @@ func (c *OrderController) OrderPurposeToReal() { |
|
|
c.ResponseError(errors.New("json数据解析失败"))
|
|
|
return
|
|
|
}
|
|
|
cmd := orderCmd.UpdateOrderRealCommand{
|
|
|
Id: param.Id,
|
|
|
OrderCode: param.OrderId,
|
|
|
OrderName: param.OrderName,
|
|
|
OrderActualCount: param.OrderNum,
|
|
|
OrderActualAmount: param.OrderPrice,
|
|
|
BuyerPhone: param.BuyerPhone,
|
|
|
BuyerAddress: param.Address,
|
|
|
OrderRegion: param.OrderDist,
|
|
|
PartnerBonusPercent: param.PartnerRatio,
|
|
|
SalesmanBonusPercent: param.SalesmanRatio,
|
|
|
OrderStatus: param.OrderStatue,
|
|
|
}
|
|
|
orderSrv := orderService.NewOrderService(nil)
|
|
|
err = orderSrv.UpdateOrderReal(cmd)
|
|
|
if err != nil {
|
|
|
c.ResponseError(err)
|
|
|
return
|
|
|
}
|
|
|
c.ResponseData(nil)
|
|
|
return
|
|
|
}
|
|
|
|
|
|
//GetOrderReal 获取实发单详情
|
|
|
func (c *OrderController) GetOrderReal() {
|
|
|
type Parameter struct {
|
|
|
Id string `json:"id"`
|
|
|
}
|
|
|
var (
|
|
|
param Parameter
|
|
|
err error
|
|
|
)
|
|
|
if err = c.BindJsonData(¶m); err != nil {
|
|
|
logs.Error(err)
|
|
|
c.ResponseError(errors.New("json数据解析失败"))
|
|
|
return
|
|
|
}
|
|
|
orderid, _ := strconv.ParseInt(param.Id, 10, 64)
|
|
|
orderSrv := orderService.NewOrderService(nil)
|
|
|
orderinfo, err := orderSrv.GetOrder(orderQuery.GetOrderQuery{
|
|
|
OrderId: orderid,
|
|
|
})
|
|
|
if err != nil {
|
|
|
c.ResponseError(err)
|
|
|
return
|
|
|
}
|
|
|
rsp := map[string]interface{}{
|
|
|
"createTime": orderinfo.CreateAt.Local().Format("2006-01-02 15:04:05"),
|
|
|
"updateTime": orderinfo.UpdateAt.Local().Format("2006-01-02 15:04:05"),
|
|
|
"buyer": orderinfo.Buyer.BuyerName,
|
|
|
"buyerPhone": orderinfo.Buyer.ContactInfo,
|
|
|
"Address": orderinfo.Buyer.ShippingAddress,
|
|
|
"id": orderinfo.Id,
|
|
|
"partner": orderinfo.PartnerInfo.Id,
|
|
|
"partnerRatio": orderinfo.PartnerBonusPercent,
|
|
|
"salesmanRatio": orderinfo.SalesmanBonusPercent,
|
|
|
"orderId": orderinfo.OrderCode,
|
|
|
"orderName": orderinfo.OrderName,
|
|
|
"OrderNum": orderinfo.OrderActualCount,
|
|
|
"orderPrice": orderinfo.OrderActualAmount,
|
|
|
"orderDist": orderinfo.OrderRegionInfo.RegionName,
|
|
|
"orderStatue": orderinfo.OrderStatus,
|
|
|
}
|
|
|
c.ResponseData(rsp)
|
|
|
}
|
|
|
|
|
|
//UpdateOrderReal 更新实发订单数据
|
|
|
func (c *OrderController) UpdateOrderReal() {
|
|
|
//用与适配前端定义的数据结构
|
|
|
var (
|
|
|
param orderDetail
|
|
|
err error
|
|
|
)
|
|
|
if err = c.BindJsonData(¶m); err != nil {
|
|
|
logs.Error(err)
|
|
|
c.ResponseError(errors.New("json数据解析失败"))
|
|
|
return
|
|
|
}
|
|
|
if param.Id == 0 {
|
|
|
err = c.addOrderReal(param)
|
|
|
} else {
|
|
|
err = c.editOrderPurpose(param)
|
|
|
}
|
|
|
if err != nil {
|
|
|
c.ResponseError(err)
|
|
|
}
|
|
|
c.ResponseData(nil)
|
|
|
return
|
|
|
}
|
|
|
|
|
|
//addOrderReal 添加实发订单
|
|
|
func (c *OrderController) addOrderReal(param orderDetail) error {
|
|
|
orderSrv := orderService.NewOrderService(nil)
|
|
|
Createcmd := orderCmd.CreateOrderCommand{
|
|
|
//订单区域
|
|
|
OrderRegion: param.OrderDist,
|
|
|
//订单编号
|
|
|
OrderCode: param.OrderId,
|
|
|
//订单名称
|
|
|
OrderName: param.OrderName,
|
|
|
//数量
|
|
|
OrderCount: param.OrderNum,
|
|
|
OrderActualCount: param.OrderNum,
|
|
|
//订单金额
|
|
|
OrderAmount: param.OrderPrice,
|
|
|
OrderActualAmount: param.OrderPrice,
|
|
|
//买家
|
|
|
BuyerName: param.Buyer,
|
|
|
//买家电话
|
|
|
BuyerPhone: param.BuyerPhone,
|
|
|
//地址
|
|
|
BuyerAddress: param.Address,
|
|
|
//合伙人数据
|
|
|
PartnerId: param.Partner,
|
|
|
//合伙人分红百分比
|
|
|
PartnerBonusPercent: param.PartnerRatio,
|
|
|
//业务员分红百分比
|
|
|
SalesmanBonusPercent: param.SalesmanRatio,
|
|
|
//订单类型
|
|
|
OrderType: domain.OrderReal,
|
|
|
}
|
|
|
err := orderSrv.CreateOrder(Createcmd)
|
|
|
return err
|
|
|
}
|
|
|
|
|
|
//editOrderReal 更新实发订单
|
|
|
func (c *OrderController) editOrderReal(param orderDetail) error {
|
|
|
updateCmd := orderCmd.UpdateOrderRealCommand{
|
|
|
Id: param.Id,
|
|
|
//订单区域
|
|
|
OrderRegion: param.OrderDist,
|
|
|
//订单编号
|
|
|
OrderCode: param.OrderId,
|
|
|
//订单名称
|
|
|
OrderName: param.OrderName,
|
|
|
//数量
|
|
|
OrderActualCount: param.OrderNum,
|
|
|
//订单金额
|
|
|
OrderActualAmount: param.OrderPrice,
|
|
|
//买家电话
|
|
|
BuyerPhone: param.BuyerPhone,
|
|
|
//地址
|
|
|
BuyerAddress: param.Address,
|
|
|
//合伙人分红百分比
|
|
|
PartnerBonusPercent: param.PartnerRatio,
|
|
|
//业务员分红百分比
|
|
|
SalesmanBonusPercent: param.SalesmanRatio,
|
|
|
}
|
|
|
orderSrv := orderService.NewOrderService(nil)
|
|
|
err := orderSrv.UpdateOrderReal(updateCmd)
|
|
|
return err
|
|
|
} |
...
|
...
|
|