fix:购物车下单
This commit is contained in:
parent
87347515d1
commit
8265140148
@ -8,7 +8,10 @@ const (
|
|||||||
)
|
)
|
||||||
|
|
||||||
// 金额单位
|
// 金额单位
|
||||||
type AmountUnit string
|
type AmountUnit interface{}
|
||||||
|
|
||||||
|
// 汇率单位
|
||||||
|
type ExchangeRateUnit interface{}
|
||||||
|
|
||||||
// 交易方式
|
// 交易方式
|
||||||
type PayMethods string
|
type PayMethods string
|
||||||
|
@ -59,22 +59,20 @@ type PayInfo struct {
|
|||||||
|
|
||||||
// 金额明细
|
// 金额明细
|
||||||
type AmountInfo struct {
|
type AmountInfo struct {
|
||||||
ExchangeRate string `json:"exchange_rate"` // 换算汇率
|
Change AmountCurrency `json:"change,omitempty"` // 变动金额
|
||||||
Change constants.AmountUnit `json:"change,omitempty"` // 变动金额
|
ChangeRemark string `json:"change_remark,omitempty"` // 变动备注
|
||||||
ChangeRemark string `json:"change_remark,omitempty"` // 变动备注状态编码
|
Current AmountCurrency `json:"current"` // 当前金额
|
||||||
Currency string `json:"currency"` // 货币
|
Initiate AmountCurrency `json:"initiate"` // 初始金额
|
||||||
Current constants.AmountUnit `json:"current"` // 当前金额
|
|
||||||
Initiate constants.AmountUnit `json:"initiate"` // 初始金额
|
|
||||||
Metadata map[string]interface{} `json:"metadata"` // 额外明细
|
Metadata map[string]interface{} `json:"metadata"` // 额外明细
|
||||||
}
|
}
|
||||||
|
|
||||||
// 金额货币
|
// 金额货币
|
||||||
type AmountCurrency struct {
|
type AmountCurrency struct {
|
||||||
CurrentAmount constants.AmountUnit `json:"current_amount"` // 当前金额
|
ExchangeRate constants.ExchangeRateUnit `json:"exchange_rate"` // 换算汇率
|
||||||
CurrentCurrency string `json:"current_currency"` // 当前货币
|
CurrentCurrency string `json:"current_currency"` // 当前货币
|
||||||
ExchangeRate string `json:"exchange_rate"` // 换算汇率
|
CurrentAmount constants.AmountUnit `json:"current_amount"` // 当前金额
|
||||||
OriginalAmount constants.AmountUnit `json:"original_amount"` // 原始金额
|
OriginalCurrency string `json:"original_currency"` // 原始货币
|
||||||
OriginalCurrency string `json:"original_currency"` // 原始货币
|
OriginalAmount constants.AmountUnit `json:"original_amount"` // 原始金额
|
||||||
}
|
}
|
||||||
|
|
||||||
// 支付状态
|
// 支付状态
|
||||||
@ -108,16 +106,16 @@ type OrderStatus struct {
|
|||||||
|
|
||||||
// 订单商品
|
// 订单商品
|
||||||
type OrderProduct struct {
|
type OrderProduct struct {
|
||||||
Amount AmountCurrency `json:"amount"` // 商品总价
|
Amount AmountInfo `json:"amount"` // 商品总价
|
||||||
ExpectedDeliveryTime string `json:"expected_delivery_time"` // 预计到货时间
|
ExpectedDeliveryTime string `json:"expected_delivery_time"` // 预计到货时间
|
||||||
Number int64 `json:"number"` // 商品数量
|
Number int64 `json:"number"` // 商品数量
|
||||||
ProductID string `json:"product_id"` // 商品ID
|
ProductID int64 `json:"product_id"` // 商品ID
|
||||||
ProductLogo string `json:"product_logo"` // 商品logo
|
ProductLogo string `json:"product_logo"` // 商品logo
|
||||||
ProductLogoResource *Resource `json:"product_logo_resource"` // 商品封面--资源详情
|
ProductLogoResource *Resource `json:"product_logo_resource"` // 商品封面--资源详情
|
||||||
ProductName string `json:"product_name"` // 商品名称
|
ProductName string `json:"product_name"` // 商品名称
|
||||||
ProductPrice AmountCurrency `json:"product_price"` // 商品单价
|
ProductPrice AmountInfo `json:"product_price"` // 商品单价
|
||||||
ProductSnapshot map[string]interface{} `json:"product_snapshot"` // 商品快照
|
ProductSnapshot map[string]interface{} `json:"product_snapshot"` // 商品快照
|
||||||
ShoppingCartSnapshot *ShoppingCartSnapshot `json:"shopping_cart_snapshot"` // 购物车快照
|
ShoppingCartSnapshot *FsShoppingCart `json:"shopping_cart_snapshot"` // 购物车快照
|
||||||
Unit string `json:"unit"` // 商品单位
|
Unit string `json:"unit"` // 商品单位
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -128,62 +126,3 @@ type Resource struct {
|
|||||||
ResourceType string `json:"resource_type"` // 资源类型
|
ResourceType string `json:"resource_type"` // 资源类型
|
||||||
ResourceURL string `json:"resource_url"` // 资源地址
|
ResourceURL string `json:"resource_url"` // 资源地址
|
||||||
}
|
}
|
||||||
|
|
||||||
// 购物车
|
|
||||||
type ShoppingCartSnapshot struct {
|
|
||||||
Ctime string `json:"ctime"` // 创建时间
|
|
||||||
FittingID int64 `json:"fitting_id"` // 配件id
|
|
||||||
ID int64 `json:"id"` // 购物车ID
|
|
||||||
IsHighlyCustomized int64 `json:"is_highly_customized"` // 是否高度定制 0非 1是(针对客人高度定制只能后台增加如购物车)
|
|
||||||
ModelID int64 `json:"model_id"` // 模型id
|
|
||||||
ProductID int64 `json:"product_id"` // 产品id
|
|
||||||
PurchaseQuantity int64 `json:"purchase_quantity"` // 购买数量
|
|
||||||
SizeID int64 `json:"size_id"` // 尺寸id
|
|
||||||
Snapshot Snapshot `json:"snapshot"` // 购物车快照数据
|
|
||||||
TemplateID int64 `json:"template_id"` // 模板id
|
|
||||||
UserID int64 `json:"user_id"` // 用户id
|
|
||||||
Utime string `json:"utime"` // 更新时间
|
|
||||||
}
|
|
||||||
|
|
||||||
// 购物车快照
|
|
||||||
type Snapshot struct {
|
|
||||||
CombineImage string `json:"combine_image"` // 刀版图地址
|
|
||||||
FittingInfo FittingInfo `json:"fitting_info"`
|
|
||||||
Logo string `json:"logo"` // logo地址
|
|
||||||
ModelInfo ModelInfo `json:"model_info"`
|
|
||||||
RenderImage string `json:"render_image"` // 模板数据
|
|
||||||
SizeInfo SizeInfo `json:"size_info"`
|
|
||||||
TemplateInfo TemplateInfo `json:"template_info"`
|
|
||||||
UserDiyInformation UserDiyInformation `json:"user_diy_information"`
|
|
||||||
}
|
|
||||||
|
|
||||||
// 配件信息
|
|
||||||
type FittingInfo struct {
|
|
||||||
FittingJSON string `json:"fitting_json"`
|
|
||||||
}
|
|
||||||
|
|
||||||
// 模型数据
|
|
||||||
type ModelInfo struct {
|
|
||||||
ModelJSON string `json:"model_json"`
|
|
||||||
}
|
|
||||||
|
|
||||||
// 尺寸信息
|
|
||||||
type SizeInfo struct {
|
|
||||||
CM string `json:"cm"`
|
|
||||||
Inch string `json:"inch"`
|
|
||||||
}
|
|
||||||
|
|
||||||
// 模板数据
|
|
||||||
type TemplateInfo struct {
|
|
||||||
TemplateJSON string `json:"template_json"`
|
|
||||||
TemplateTag string `json:"template_tag"`
|
|
||||||
}
|
|
||||||
|
|
||||||
// DIY数据
|
|
||||||
type UserDiyInformation struct {
|
|
||||||
Address string `json:"address"` // 地址
|
|
||||||
Phone string `json:"phone"` // 电话
|
|
||||||
Qrcode string `json:"qrcode"` // 二维码
|
|
||||||
Slogan string `json:"slogan"` // slogan
|
|
||||||
Website string `json:"website"` // 网站
|
|
||||||
}
|
|
||||||
|
@ -2,6 +2,15 @@ package gmodel
|
|||||||
|
|
||||||
import "context"
|
import "context"
|
||||||
|
|
||||||
|
type RelaFsProduct struct {
|
||||||
|
FsProduct
|
||||||
|
CoverResource *FsResource `json:"cover_resource" gorm:"foreignkey:cover;references:resource_id"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (m *FsProductModel) TableName() string {
|
||||||
|
return m.name
|
||||||
|
}
|
||||||
|
|
||||||
func (p *FsProductModel) FindOne(ctx context.Context, id int64, fields ...string) (resp *FsProduct, err error) {
|
func (p *FsProductModel) FindOne(ctx context.Context, id int64, fields ...string) (resp *FsProduct, err error) {
|
||||||
db := p.db.WithContext(ctx).Model(&FsProduct{}).Where("`id` = ? ", id)
|
db := p.db.WithContext(ctx).Model(&FsProduct{}).Where("`id` = ? ", id)
|
||||||
if len(fields) != 0 {
|
if len(fields) != 0 {
|
||||||
|
@ -6,7 +6,7 @@ import (
|
|||||||
|
|
||||||
type RelaFsShoppingCart struct {
|
type RelaFsShoppingCart struct {
|
||||||
FsShoppingCart
|
FsShoppingCart
|
||||||
ShoppingCartProduct *FsProduct `json:"shopping_cart_product" gorm:"foreignkey:product_id;references:id"`
|
ShoppingCartProduct *RelaFsProduct `json:"shopping_cart_product" gorm:"foreignkey:product_id;references:id"`
|
||||||
ShoppingCartProductPriceList []*FsProductPrice `json:"shopping_cart_product_price_list" gorm:"foreignkey:product_id;references:product_id"`
|
ShoppingCartProductPriceList []*FsProductPrice `json:"shopping_cart_product_price_list" gorm:"foreignkey:product_id;references:product_id"`
|
||||||
ShoppingCartProductModel3dList []*FsProductModel3d `json:"shopping_cart_product_model3d_list" gorm:"foreignkey:product_id;references:product_id"`
|
ShoppingCartProductModel3dList []*FsProductModel3d `json:"shopping_cart_product_model3d_list" gorm:"foreignkey:product_id;references:product_id"`
|
||||||
}
|
}
|
||||||
|
@ -4,8 +4,10 @@ import (
|
|||||||
"context"
|
"context"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"errors"
|
"errors"
|
||||||
|
"fmt"
|
||||||
"fusenapi/model/gmodel"
|
"fusenapi/model/gmodel"
|
||||||
"fusenapi/utils/basic"
|
"fusenapi/utils/basic"
|
||||||
|
"fusenapi/utils/order"
|
||||||
"fusenapi/utils/shopping_cart"
|
"fusenapi/utils/shopping_cart"
|
||||||
"fusenapi/utils/step_price"
|
"fusenapi/utils/step_price"
|
||||||
"math"
|
"math"
|
||||||
@ -33,12 +35,13 @@ type (
|
|||||||
|
|
||||||
/* 下单 */
|
/* 下单 */
|
||||||
CreateReq struct {
|
CreateReq struct {
|
||||||
CurrentCurrency string `json:"current_currency"` // 当前货币
|
ExpectedDeliveryTime string `json:"expected_delivery_time"` // 预计到货时间
|
||||||
ExchangeRate string `json:"exchange_rate"` // 换算汇率
|
ExchangeRate int64 `json:"exchange_rate"` // 换算汇率(厘)
|
||||||
OriginalCurrency string `json:"original_currency"` // 原始货币
|
CurrentCurrency string `json:"current_currency"` // 当前货币
|
||||||
UserId int64 `json:"user_id"`
|
OriginalCurrency string `json:"original_currency"` // 原始货币
|
||||||
CartIds []int64 `json:"cart_ids"`
|
UserId int64 `json:"user_id"`
|
||||||
DeliveryMethod string `json:"delivery_method"`
|
CartIds []int64 `json:"cart_ids"`
|
||||||
|
DeliveryMethod string `json:"delivery_method"`
|
||||||
}
|
}
|
||||||
CreateRes struct {
|
CreateRes struct {
|
||||||
ErrorCode basic.StatusResponse
|
ErrorCode basic.StatusResponse
|
||||||
@ -53,7 +56,9 @@ func (d *defaultOrder) Create(ctx context.Context, in *CreateReq) (res *CreateRe
|
|||||||
err = d.MysqlConn.WithContext(ctx).Transaction(func(tx *gorm.DB) error {
|
err = d.MysqlConn.WithContext(ctx).Transaction(func(tx *gorm.DB) error {
|
||||||
// 查询购物车
|
// 查询购物车
|
||||||
var shoppingCartList []*gmodel.RelaFsShoppingCart
|
var shoppingCartList []*gmodel.RelaFsShoppingCart
|
||||||
resShoppingCartFind := tx.Preload("ShoppingCartProduct").Preload("ShoppingCartProductPriceList").Preload("ShoppingCartProductModel3dList").
|
resShoppingCartFind := tx.Preload("ShoppingCartProduct", func(dbPreload *gorm.DB) *gorm.DB {
|
||||||
|
return dbPreload.Table(gmodel.NewFsProductModel(tx).TableName()).Preload("CoverResource")
|
||||||
|
}).Preload("ShoppingCartProductPriceList").Preload("ShoppingCartProductModel3dList").
|
||||||
Where("id IN ?", in.CartIds).
|
Where("id IN ?", in.CartIds).
|
||||||
Where("user_id = ?", in.UserId).
|
Where("user_id = ?", in.UserId).
|
||||||
Find(&shoppingCartList)
|
Find(&shoppingCartList)
|
||||||
@ -71,8 +76,29 @@ func (d *defaultOrder) Create(ctx context.Context, in *CreateReq) (res *CreateRe
|
|||||||
return errors.New(errorCode.Message)
|
return errors.New(errorCode.Message)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 订单商品列表
|
||||||
var orderProductList []*gmodel.OrderProduct
|
var orderProductList []*gmodel.OrderProduct
|
||||||
|
|
||||||
|
var shippingFee gmodel.AmountInfo
|
||||||
|
// 订单税费总价(厘)
|
||||||
|
var shippingFeeTotal int64
|
||||||
|
|
||||||
|
var tax = gmodel.AmountInfo{}
|
||||||
|
// 订单邮费总价(厘)
|
||||||
|
var taxTotal int64
|
||||||
|
|
||||||
|
var discount gmodel.AmountInfo
|
||||||
|
// 订单折扣总价(厘)
|
||||||
|
var discountTotal int64
|
||||||
|
|
||||||
|
var subtotal gmodel.AmountInfo
|
||||||
|
// 订单商品总价(厘)
|
||||||
|
var orderProductTotal int64
|
||||||
|
|
||||||
|
var total gmodel.AmountInfo
|
||||||
|
// 订单总价(厘)
|
||||||
|
var orderTotal int64
|
||||||
|
|
||||||
for _, shoppingCart := range shoppingCartList {
|
for _, shoppingCart := range shoppingCartList {
|
||||||
// 购物车快照
|
// 购物车快照
|
||||||
var shoppingCartSnapshot shopping_cart.CartSnapshot
|
var shoppingCartSnapshot shopping_cart.CartSnapshot
|
||||||
@ -152,16 +178,76 @@ func (d *defaultOrder) Create(ctx context.Context, in *CreateReq) (res *CreateRe
|
|||||||
} else {
|
} else {
|
||||||
json.Unmarshal([]byte(*shoppingCartProductPrice.StepPrice), &stepPrice)
|
json.Unmarshal([]byte(*shoppingCartProductPrice.StepPrice), &stepPrice)
|
||||||
}
|
}
|
||||||
// 商品单价
|
// 商品单价(厘)
|
||||||
productPrice := step_price.GetCentStepPrice(int(boxNum), stepNum, stepPrice)
|
productPrice := step_price.GetCentStepPrice(int(boxNum), stepNum, stepPrice)
|
||||||
|
|
||||||
// 商品总价
|
// 商品总价(厘)
|
||||||
productTotalPrice := productPrice * *shoppingCart.PurchaseQuantity
|
productTotalPrice := productPrice * *shoppingCart.PurchaseQuantity
|
||||||
|
|
||||||
// 存储订单商品
|
// 订单商品总价(厘)
|
||||||
orderProductList = append(orderProductList, &gmodel.OrderProduct{})
|
orderProductTotal = orderProductTotal + productTotalPrice
|
||||||
|
|
||||||
|
// 订单商品
|
||||||
|
var productLogoResource *gmodel.Resource
|
||||||
|
if shoppingCart.ShoppingCartProduct.CoverResource != nil {
|
||||||
|
var coverResourceMetadata map[string]interface{}
|
||||||
|
if shoppingCart.ShoppingCartProduct.CoverResource.Metadata != nil {
|
||||||
|
json.Unmarshal(*shoppingCart.ShoppingCartProduct.CoverResource.Metadata, &coverResourceMetadata)
|
||||||
|
}
|
||||||
|
productLogoResource = &gmodel.Resource{
|
||||||
|
Metadata: coverResourceMetadata,
|
||||||
|
ResourceID: shoppingCart.ShoppingCartProduct.CoverResource.ResourceId,
|
||||||
|
ResourceType: *shoppingCart.ShoppingCartProduct.CoverResource.ResourceType,
|
||||||
|
ResourceURL: *shoppingCart.ShoppingCartProduct.CoverResource.ResourceUrl,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
var productSnapshot = make(map[string]interface{}, 1)
|
||||||
|
productSnapshot["product_snapshot"] = shoppingCart.ShoppingCartProduct
|
||||||
|
|
||||||
|
orderProductList = append(orderProductList, &gmodel.OrderProduct{
|
||||||
|
Amount: order.GetAmountInfo(order.GetAmountInfoReq{
|
||||||
|
ExchangeRate: in.ExchangeRate,
|
||||||
|
Initiate: productTotalPrice,
|
||||||
|
Current: productTotalPrice,
|
||||||
|
CurrentCurrency: in.CurrentCurrency,
|
||||||
|
OriginalCurrency: in.OriginalCurrency,
|
||||||
|
}),
|
||||||
|
ExpectedDeliveryTime: in.ExpectedDeliveryTime,
|
||||||
|
Number: *shoppingCart.PurchaseQuantity,
|
||||||
|
ProductID: *shoppingCart.ProductId,
|
||||||
|
ProductLogo: *shoppingCart.ShoppingCartProduct.Cover,
|
||||||
|
ProductLogoResource: productLogoResource,
|
||||||
|
ProductName: *shoppingCart.ShoppingCartProduct.Title,
|
||||||
|
ProductPrice: order.GetAmountInfo(order.GetAmountInfoReq{
|
||||||
|
ExchangeRate: in.ExchangeRate,
|
||||||
|
Initiate: productPrice,
|
||||||
|
Current: productPrice,
|
||||||
|
CurrentCurrency: in.CurrentCurrency,
|
||||||
|
OriginalCurrency: in.OriginalCurrency,
|
||||||
|
}),
|
||||||
|
ProductSnapshot: productSnapshot,
|
||||||
|
ShoppingCartSnapshot: &shoppingCart.FsShoppingCart,
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
subtotal = order.GetAmountInfo(order.GetAmountInfoReq{
|
||||||
|
ExchangeRate: in.ExchangeRate,
|
||||||
|
Initiate: orderProductTotal,
|
||||||
|
Current: orderProductTotal,
|
||||||
|
CurrentCurrency: in.CurrentCurrency,
|
||||||
|
OriginalCurrency: in.OriginalCurrency,
|
||||||
|
})
|
||||||
|
|
||||||
|
orderTotal = orderProductTotal + shippingFeeTotal + taxTotal - discountTotal
|
||||||
|
total = order.GetAmountInfo(order.GetAmountInfoReq{
|
||||||
|
ExchangeRate: in.ExchangeRate,
|
||||||
|
Initiate: orderTotal,
|
||||||
|
Current: orderTotal,
|
||||||
|
CurrentCurrency: in.CurrentCurrency,
|
||||||
|
OriginalCurrency: in.OriginalCurrency,
|
||||||
|
})
|
||||||
|
fmt.Println(shippingFee, shippingFeeTotal, tax, taxTotal, discount, discountTotal, subtotal, orderProductTotal, total)
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
})
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
@ -1,19 +1,77 @@
|
|||||||
package order
|
package order
|
||||||
|
|
||||||
type AmountCurrency struct {
|
import (
|
||||||
ExchangeRate float64 `json:"exchange_rate"` // 换算汇率
|
"fusenapi/model/gmodel"
|
||||||
CurrentAmount float64 `json:"current_amount"` // 当前金额
|
)
|
||||||
OriginalAmount float64 `json:"original_amount"` // 原始金额
|
|
||||||
CurrentCurrency string `json:"current_currency"` // 当前货币
|
type AmountCurrencyReq struct {
|
||||||
OriginalCurrency string `json:"original_currency"` // 原始货币
|
ExchangeRate int64 `json:"exchange_rate"` // 换算汇率
|
||||||
|
CurrentAmount int64 `json:"current_amount"` // 当前金额
|
||||||
|
OriginalAmount int64 `json:"original_amount"` // 原始金额
|
||||||
|
CurrentCurrency string `json:"current_currency"` // 当前货币
|
||||||
|
OriginalCurrency string `json:"original_currency"` // 原始货币
|
||||||
}
|
}
|
||||||
|
|
||||||
// 汇率换算
|
// 汇率换算
|
||||||
func GetAmountCurrency(req *AmountCurrency) error {
|
func GetAmountCurrency(req *AmountCurrencyReq) gmodel.AmountCurrency {
|
||||||
if req.CurrentCurrency == req.OriginalCurrency {
|
if req.CurrentAmount != 0 {
|
||||||
req.CurrentAmount = req.OriginalAmount
|
if req.CurrentCurrency == req.OriginalCurrency {
|
||||||
} else {
|
req.CurrentAmount = req.OriginalAmount
|
||||||
req.CurrentAmount = req.OriginalAmount * req.ExchangeRate
|
} else {
|
||||||
|
req.CurrentAmount = req.OriginalAmount * req.ExchangeRate
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return gmodel.AmountCurrency{
|
||||||
|
ExchangeRate: req.ExchangeRate,
|
||||||
|
CurrentAmount: req.CurrentAmount,
|
||||||
|
OriginalAmount: req.OriginalAmount,
|
||||||
|
CurrentCurrency: req.CurrentCurrency,
|
||||||
|
OriginalCurrency: req.OriginalCurrency,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
type GetAmountInfoReq struct {
|
||||||
|
ExchangeRate int64
|
||||||
|
Initiate int64
|
||||||
|
Current int64
|
||||||
|
Change int64
|
||||||
|
ChangeRemark string
|
||||||
|
Metadata map[string]interface{}
|
||||||
|
CurrentCurrency string
|
||||||
|
OriginalCurrency string
|
||||||
|
}
|
||||||
|
|
||||||
|
// Change AmountCurrency `json:"change,omitempty"` // 变动金额
|
||||||
|
// ChangeRemark string `json:"change_remark,omitempty"` // 变动备注
|
||||||
|
// Current AmountCurrency `json:"current"` // 当前金额
|
||||||
|
// Initiate AmountCurrency `json:"initiate"` // 初始金额
|
||||||
|
// Metadata map[string]interface{} `json:"metadata"` // 额外明细
|
||||||
|
|
||||||
|
func GetAmountInfo(req GetAmountInfoReq) gmodel.AmountInfo {
|
||||||
|
return gmodel.AmountInfo{
|
||||||
|
Change: GetAmountCurrency(&AmountCurrencyReq{
|
||||||
|
ExchangeRate: req.ExchangeRate,
|
||||||
|
CurrentAmount: req.Change,
|
||||||
|
OriginalAmount: req.Change,
|
||||||
|
CurrentCurrency: req.OriginalCurrency,
|
||||||
|
OriginalCurrency: req.OriginalCurrency,
|
||||||
|
}),
|
||||||
|
ChangeRemark: req.ChangeRemark,
|
||||||
|
Current: GetAmountCurrency(&AmountCurrencyReq{
|
||||||
|
ExchangeRate: req.ExchangeRate,
|
||||||
|
CurrentAmount: req.Current,
|
||||||
|
OriginalAmount: req.Current,
|
||||||
|
CurrentCurrency: req.OriginalCurrency,
|
||||||
|
OriginalCurrency: req.OriginalCurrency,
|
||||||
|
}),
|
||||||
|
Initiate: GetAmountCurrency(&AmountCurrencyReq{
|
||||||
|
ExchangeRate: req.ExchangeRate,
|
||||||
|
CurrentAmount: req.Initiate,
|
||||||
|
OriginalAmount: req.Initiate,
|
||||||
|
CurrentCurrency: req.OriginalCurrency,
|
||||||
|
OriginalCurrency: req.OriginalCurrency,
|
||||||
|
}),
|
||||||
|
Metadata: req.Metadata,
|
||||||
}
|
}
|
||||||
return nil
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user