|
|
@@ -52,6 +52,17 @@ func (i InstallmentPaymentListDb) GetInstallmentPaymentListById(id int) (m *mode |
|
|
|
} |
|
|
|
return m, nil |
|
|
|
} |
|
|
|
func (i InstallmentPaymentListDb) GetInstallmentPaymentListByOidSess(sess *xorm.Session, oid string) (m *models.InstallmentPaymentList, err error) { |
|
|
|
m = new(models.InstallmentPaymentList) |
|
|
|
has, err := sess.Where("ord_id =?", oid).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"]) |
|
|
|