Compare commits

..

No commits in common. "58a066315b02041136c10da5a85b9077ee39a8b1" and "93ccab7d42c109b1838915e0f27883c91f877b7d" have entirely different histories.

4 changed files with 1912 additions and 1928 deletions

View File

@ -583,11 +583,8 @@ func GetReconciliationList(req *bundle.GetReconciliationListReq) (*bundle.GetRec
if req.PayChannel != 0 { if req.PayChannel != 0 {
modelObj = modelObj.Where("pay_channel = ?", req.PayChannel) modelObj = modelObj.Where("pay_channel = ?", req.PayChannel)
} }
if req.BundleOrderOn != "" { if req.OrderNo != "" {
modelObj = modelObj.Where("bundle_order_on like ?", "%"+req.BundleOrderOn+"%") modelObj = modelObj.Where("order_no like ?", "%"+req.OrderNo+"%")
}
if req.BundleAddOrderOn != "" {
modelObj = modelObj.Where("bundle_add_order_on like ?", "%"+req.BundleAddOrderOn+"%")
} }
if req.CreatedStart != "" && req.CreatedEnd != "" { if req.CreatedStart != "" && req.CreatedEnd != "" {
modelObj = modelObj.Where("created_at between ? and ?", req.CreatedStart, req.CreatedEnd) modelObj = modelObj.Where("created_at between ? and ?", req.CreatedStart, req.CreatedEnd)

View File

@ -82,7 +82,7 @@ message GetReconciliationListReq{
string bundleName = 2; string bundleName = 2;
int32 payStatus = 3; int32 payStatus = 3;
int32 payChannel = 4; int32 payChannel = 4;
string bundleOrderOn = 5; string orderNo = 5;
string createdStart = 6; string createdStart = 6;
string createdEnd = 7; string createdEnd = 7;
string payTimeStart = 8; string payTimeStart = 8;
@ -91,7 +91,6 @@ message GetReconciliationListReq{
int32 page = 11; int32 page = 11;
int32 pageSize = 12; int32 pageSize = 12;
repeated uint64 userIDS = 13; repeated uint64 userIDS = 13;
string bundleAddOrderOn = 14;
} }
message GetReconciliationListResp{ message GetReconciliationListResp{
repeated ReconciliationInfo list = 1; repeated ReconciliationInfo list = 1;

File diff suppressed because it is too large Load Diff

View File

@ -1,7 +1,7 @@
// Code generated by protoc-gen-go-triple. DO NOT EDIT. // Code generated by protoc-gen-go-triple. DO NOT EDIT.
// versions: // versions:
// - protoc-gen-go-triple v1.0.8 // - protoc-gen-go-triple v1.0.8
// - protoc v4.24.0--rc1 // - protoc v3.20.3
// source: pb/bundle.proto // source: pb/bundle.proto
package bundle package bundle