123
This commit is contained in:
@@ -5472,6 +5472,3 @@ func UpdateStoreTemplate(ctx *jxcontext.Context, storeID int, content, sound str
|
|||||||
_, err = dao.UpdateEntity(db, store, "PrinterTemplate", "PrinterSound")
|
_, err = dao.UpdateEntity(db, store, "PrinterTemplate", "PrinterSound")
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
func GetStoreBrandID(ctx *jxcontext.Context, storeID int) (brandID int, err error) {
|
|
||||||
return dao.GetStoreBrandID(dao.GetDB(), storeID)
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -68,9 +68,6 @@ type StoreDetail struct {
|
|||||||
BrandIsOpen int `json:"brandIsOpen"`
|
BrandIsOpen int `json:"brandIsOpen"`
|
||||||
BrandIsPrint int `json:"brandIsPrint"`
|
BrandIsPrint int `json:"brandIsPrint"`
|
||||||
}
|
}
|
||||||
type BrandID struct {
|
|
||||||
BrandID int `orm:"column(brand_id)" json:"brandID"`
|
|
||||||
}
|
|
||||||
|
|
||||||
// 带快递门店信息的
|
// 带快递门店信息的
|
||||||
type StoreDetail2 struct {
|
type StoreDetail2 struct {
|
||||||
@@ -1489,13 +1486,3 @@ func InsertBrandCategories(db *DaoDB, userName string, brandID int) (err error)
|
|||||||
_, err = ExecuteSQL(db, sql, sqlParams)
|
_, err = ExecuteSQL(db, sql, sqlParams)
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
func GetStoreBrandID(db *DaoDB, storeID int) (brandID int, err error) {
|
|
||||||
sql := `
|
|
||||||
SELECT *
|
|
||||||
FROM store
|
|
||||||
WHERE store_id = ?
|
|
||||||
`
|
|
||||||
sqlparams := []interface{}{utils.DefaultTimeValue, storeID}
|
|
||||||
err = GetRows(db, &brandID, sql, sqlparams)
|
|
||||||
return brandID, err
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -815,7 +815,6 @@ func (*StoreAudit) TableIndex() [][]string {
|
|||||||
type Brand struct {
|
type Brand struct {
|
||||||
ModelIDCULD
|
ModelIDCULD
|
||||||
|
|
||||||
ID int `json:"Brand_id"`
|
|
||||||
Name string `orm:"size(255)" json:"name"` //品牌名
|
Name string `orm:"size(255)" json:"name"` //品牌名
|
||||||
Logo string `orm:"size(255)" json:"logo"` //品牌logo
|
Logo string `orm:"size(255)" json:"logo"` //品牌logo
|
||||||
BrandType int `json:"brandType"` //品牌类型
|
BrandType int `json:"brandType"` //品牌类型
|
||||||
@@ -916,7 +915,6 @@ type StoreAcct struct {
|
|||||||
|
|
||||||
StoreID int `orm:"column(store_id)" json:"storeID"` //门店ID
|
StoreID int `orm:"column(store_id)" json:"storeID"` //门店ID
|
||||||
AccountBalance int `json:"accountBalance"` //账户余额
|
AccountBalance int `json:"accountBalance"` //账户余额
|
||||||
BrandID int `orm:"column(brand_id)" json:"brandID"`
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func (v *StoreAcct) TableUnique() [][]string {
|
func (v *StoreAcct) TableUnique() [][]string {
|
||||||
|
|||||||
@@ -584,8 +584,7 @@ func OnPayFinished(orderPay *model.OrderPay) (err error) {
|
|||||||
storeOrder.OrderFinishedAt = time.Now()
|
storeOrder.OrderFinishedAt = time.Now()
|
||||||
storeOrder.Status = model.OrderStatusFinished
|
storeOrder.Status = model.OrderStatusFinished
|
||||||
if _, err = dao.UpdateEntity(dao.GetDB(), storeOrder, "OrderFinishedAt", "Status"); err == nil {
|
if _, err = dao.UpdateEntity(dao.GetDB(), storeOrder, "OrderFinishedAt", "Status"); err == nil {
|
||||||
brandID, _ := dao.GetStoreBrandID(dao.GetDB(), storeOrder.StoreID)
|
partner.CurStoreAcctManager.InsertStoreAcctIncomeAndUpdateStoreAcctBalance(nil, storeOrder.StoreID, storeOrder.ActualPayPrice, partner.StoreAcctTypeIncomePay, orderPay.VendorOrderID, 0)
|
||||||
partner.CurStoreAcctManager.InsertBrandBill(jxcontext.AdminCtx, brandID, storeOrder.ActualPayPrice, 1, 1, "")
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
case model.PayTypeTL_BrandBillCharge:
|
case model.PayTypeTL_BrandBillCharge:
|
||||||
@@ -603,6 +602,7 @@ func OnPayFinished(orderPay *model.OrderPay) (err error) {
|
|||||||
priceDefendOrders, _ := dao.GetPriceDefendOrder(dao.GetDB(), orderPay.VendorOrderID, nil, nil, []int{jxutils.GetDefendPriceIssue()}, 0, -1, -1, 0, "", utils.ZeroTimeValue, utils.ZeroTimeValue, false)
|
priceDefendOrders, _ := dao.GetPriceDefendOrder(dao.GetDB(), orderPay.VendorOrderID, nil, nil, []int{jxutils.GetDefendPriceIssue()}, 0, -1, -1, 0, "", utils.ZeroTimeValue, utils.ZeroTimeValue, false)
|
||||||
if len(priceDefendOrders) > 0 {
|
if len(priceDefendOrders) > 0 {
|
||||||
priceDefendOrders[0].IsPay = model.YES
|
priceDefendOrders[0].IsPay = model.YES
|
||||||
|
dao.UpdateEntity(dao.GetDB(), priceDefendOrders[0], "IsPay")
|
||||||
err = nil
|
err = nil
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
26
business/partner/purchase/jx/localjx/order_test.go
Normal file
26
business/partner/purchase/jx/localjx/order_test.go
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
package localjx
|
||||||
|
|
||||||
|
import (
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"git.rosy.net.cn/baseapi/utils"
|
||||||
|
"git.rosy.net.cn/jx-callback/business/jxutils/jxcontext"
|
||||||
|
"git.rosy.net.cn/jx-callback/globals/testinit"
|
||||||
|
)
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
testinit.Init()
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestGenOrderNo(t *testing.T) {
|
||||||
|
orderNo := GenOrderNo(jxcontext.AdminCtx)
|
||||||
|
t.Log(orderNo)
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestGetAvailableDeliverTime(t *testing.T) {
|
||||||
|
timeInfo, err := GetAvailableDeliverTime(jxcontext.AdminCtx, 100118)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
t.Log(utils.Format4Output(timeInfo, false))
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user