Browse Source

分期付

master
huangjiajun 1 week ago
parent
commit
4be9e912bd
2 changed files with 24 additions and 0 deletions
  1. +2
    -0
      src/dao/installment_payment_list_dao.go
  2. +22
    -0
      src/implement/installment_payment_list_db.go

+ 2
- 0
src/dao/installment_payment_list_dao.go View File

@@ -8,6 +8,8 @@ import (
type InstallmentPaymentListDao interface {
GetInstallmentPaymentListById(id int) (m *models.InstallmentPaymentList, err error)
GetInstallmentPaymentListByIdSess(sess *xorm.Session, oid string) (m *models.InstallmentPaymentList, err error)
GetInstallmentPaymentListByOidSess(sess *xorm.Session, oid string) (m *models.InstallmentPaymentList, err error)
GetInstallmentPaymentListByOid(oid string) (m *models.InstallmentPaymentList, err error)
FinInstallmentPaymentList(arg map[string]string) (m *[]models.InstallmentPaymentList, err error)
UpdateInstallmentPaymentListBySess(sess *xorm.Session, m *models.InstallmentPaymentList, forceColums ...string) (int64, error)
InsertInstallmentPaymentList(m *models.InstallmentPaymentList) (id int, err error)


+ 22
- 0
src/implement/installment_payment_list_db.go View File

@@ -40,6 +40,17 @@ func (i InstallmentPaymentListDb) UpdateInstallmentPaymentListBySess(sess *xorm.
}
return affected, nil
}
func (i InstallmentPaymentListDb) GetInstallmentPaymentListByOid(id string) (m *models.InstallmentPaymentList, err error) {
m = new(models.InstallmentPaymentList)
has, err := i.Db.Where("ord_id =?", id).Get(m)
if err != nil {
return nil, zhios_order_relate_logx.Error(err)
}
if has == false {
return nil, nil
}
return m, nil
}

func (i InstallmentPaymentListDb) GetInstallmentPaymentListById(id int) (m *models.InstallmentPaymentList, err error) {
m = new(models.InstallmentPaymentList)
@@ -63,6 +74,17 @@ func (i InstallmentPaymentListDb) GetInstallmentPaymentListByIdSess(sess *xorm.S
}
return m, nil
}
func (i InstallmentPaymentListDb) GetInstallmentPaymentListByOidSess(sess *xorm.Session, id string) (m *models.InstallmentPaymentList, err error) {
m = new(models.InstallmentPaymentList)
has, err := sess.Where("ord_id =?", id).Get(m)
if err != nil {
return nil, zhios_order_relate_logx.Error(err)
}
if has == false {
return nil, nil
}
return m, nil
}
func (i InstallmentPaymentListDb) FinInstallmentPaymentList(arg map[string]string) (m *[]models.InstallmentPaymentList, err error) {
mm := make([]models.InstallmentPaymentList, 0)
sess := i.Db.Where("uid=?", arg["uid"])


Loading…
Cancel
Save