Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
mall.oytour.com
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
黄奎
mall.oytour.com
Commits
0a1d624e
Commit
0a1d624e
authored
Jun 22, 2020
by
吴春
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://gitlab.oytour.com/Kui2/mall.oytour.com
parents
d1be9825
8dcce85e
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
562 additions
and
16 deletions
+562
-16
RB_Goods.cs
Mall.Model/Entity/Product/RB_Goods.cs
+20
-1
RB_Goods_Proxy.cs
Mall.Model/Entity/Product/RB_Goods_Proxy.cs
+98
-0
RB_Goods_Extend.cs
Mall.Model/Extend/Product/RB_Goods_Extend.cs
+8
-0
RB_Goods_Proxy_Extend.cs
Mall.Model/Extend/Product/RB_Goods_Proxy_Extend.cs
+21
-0
ProductModule.cs
Mall.Module.Product/ProductModule.cs
+226
-4
UserModule.cs
Mall.Module.User/UserModule.cs
+27
-1
RB_GoodsRepository.cs
Mall.Repository/Product/RB_GoodsRepository.cs
+9
-0
RB_Goods_ProxyRepository.cs
Mall.Repository/Product/RB_Goods_ProxyRepository.cs
+58
-0
RB_Material_InfoRepository.cs
Mall.Repository/Product/RB_Material_InfoRepository.cs
+7
-9
ProductController.cs
Mall.WebApi/Controllers/Product/ProductController.cs
+84
-1
UserController.cs
Mall.WebApi/Controllers/User/UserController.cs
+4
-0
No files found.
Mall.Model/Entity/Product/RB_Goods.cs
View file @
0a1d624e
...
@@ -387,6 +387,25 @@ namespace Mall.Model.Entity.Product
...
@@ -387,6 +387,25 @@ namespace Mall.Model.Entity.Product
/// 供应商id
/// 供应商id
/// </summary>
/// </summary>
public
int
SupplierId
{
get
;
set
;
}
public
int
SupplierId
{
get
;
set
;
}
/// <summary>
/// 商品是否可代理 1是 2否
/// </summary>
public
int
?
IsProxy
{
get
;
set
;
}
/// <summary>
/// 代理成本上浮类型 1百分比 2固定金额
/// </summary>
public
int
?
ProxyType
{
get
;
set
;
}
/// <summary>
/// 价格上涨
/// </summary>
public
decimal
?
ProxyRises
{
get
;
set
;
}
/// <summary>
/// 代理价格
/// </summary>
public
decimal
?
ProxyMoney
{
get
;
set
;
}
/// <summary>
/// 是否是采购商品 1是 2否
/// </summary>
public
int
?
IsProcurement
{
get
;
set
;
}
}
}
}
}
Mall.Model/Entity/Product/RB_Goods_Proxy.cs
0 → 100644
View file @
0a1d624e
using
Mall.Common.AOP
;
using
Mall.Common.Enum.User
;
using
System
;
using
System.Collections.Generic
;
using
System.Text
;
namespace
Mall.Model.Entity.Product
{
/// <summary>
/// 商品代理信息表实体
/// </summary>
[
Serializable
]
[
DB
(
ConnectionName
=
"DefaultConnection"
)]
public
class
RB_Goods_Proxy
{
/// <summary>
/// Id
/// </summary>
public
int
Id
{
get
;
set
;
}
/// <summary>
/// 原商品id
/// </summary>
public
int
?
GoodsId
{
get
;
set
;
}
/// <summary>
/// 原商户号
/// </summary>
public
int
TenantId
{
get
;
set
;
}
/// <summary>
/// 原小程序id
/// </summary>
public
int
MallBaseId
{
get
;
set
;
}
/// <summary>
/// 代理商品id
/// </summary>
public
int
?
ProxyGoodsId
{
get
;
set
;
}
/// <summary>
/// 代理商户
/// </summary>
public
int
ProxyTenantId
{
get
;
set
;
}
/// <summary>
/// 代理小程序id
/// </summary>
public
int
ProxyMallBaseId
{
get
;
set
;
}
/// <summary>
/// 删除状态 0正常
/// </summary>
public
int
?
Status
{
get
;
set
;
}
/// <summary>
/// 描述
/// </summary>
public
string
Remark
{
get
;
set
;
}
/// <summary>
/// CreateDate
/// </summary>
public
DateTime
?
CreateDate
{
get
;
set
;
}
}
}
Mall.Model/Extend/Product/RB_Goods_Extend.cs
View file @
0a1d624e
...
@@ -22,6 +22,14 @@ namespace Mall.Model.Extend.Product
...
@@ -22,6 +22,14 @@ namespace Mall.Model.Extend.Product
/// </summary>
/// </summary>
public
int
?
GoodsId
{
get
;
set
;
}
public
int
?
GoodsId
{
get
;
set
;
}
/// <summary>
/// <summary>
/// 采购商品id
/// </summary>
public
int
?
ProcurementGoodsId
{
get
;
set
;
}
/// <summary>
/// 其他商户
/// </summary>
public
int
?
NotTenantId
{
get
;
set
;
}
/// <summary>
/// 商品购买的数量
/// 商品购买的数量
/// </summary>
/// </summary>
public
int
?
GoodsBuyNum
{
get
;
set
;
}
public
int
?
GoodsBuyNum
{
get
;
set
;
}
...
...
Mall.Model/Extend/Product/RB_Goods_Proxy_Extend.cs
0 → 100644
View file @
0a1d624e
using
Mall.Common.AOP
;
using
System
;
using
System.Collections.Generic
;
using
System.Text
;
using
Mall.Model.Entity.Product
;
namespace
Mall.Model.Extend.Product
{
/// <summary>
/// 商品代理表扩展实体
/// </summary>
[
Serializable
]
[
DB
(
ConnectionName
=
"DefaultConnection"
)]
public
class
RB_Goods_Proxy_Extend
:
RB_Goods_Proxy
{
/// <summary>
/// 商品ids
/// </summary>
public
string
GoodsIds
{
get
;
set
;
}
}
}
Mall.Module.Product/ProductModule.cs
View file @
0a1d624e
This diff is collapsed.
Click to expand it.
Mall.Module.User/UserModule.cs
View file @
0a1d624e
...
@@ -1557,6 +1557,12 @@ namespace Mall.Module.User
...
@@ -1557,6 +1557,12 @@ namespace Mall.Module.User
}
}
};
};
member_UserRepository
.
Update
(
keyValues1
,
wheres1
,
trans
);
member_UserRepository
.
Update
(
keyValues1
,
wheres1
,
trans
);
var
umodel
=
GetMemberUserInfo
(
item
.
UserId
??
0
);
if
(
umodel
!=
null
)
{
new
MiniProgramMsgModule
().
SendAuditResultMsg
(
item
.
TenantId
,
item
.
MallBaseId
,
umodel
.
OpenId
,
"分销商审核已通过"
,
"通过"
,
umodel
.
Name
,
DateTime
.
Now
.
ToString
(
"yyyy-MM-dd HH:mm:ss"
));
}
}
}
}
}
}
}
...
@@ -1955,7 +1961,27 @@ namespace Mall.Module.User
...
@@ -1955,7 +1961,27 @@ namespace Mall.Module.User
OperatorEnum
=
OperatorEnum
.
Equal
OperatorEnum
=
OperatorEnum
.
Equal
}
}
};
};
distributor_RemitRepository
.
Update
(
keyValues
,
wheres
);
bool
flag
=
distributor_RemitRepository
.
Update
(
keyValues
,
wheres
);
if
(
flag
)
{
//拒绝之后 需回滚提现佣金
var
remodel
=
distributor_RemitRepository
.
GetEntity
(
remitId
);
var
dmodel
=
distributor_InfoRepository
.
GetList
(
new
RB_Distributor_Info_Extend
()
{
UserId
=
remodel
.
UserId
,
TenantId
=
Convert
.
ToInt32
(
uid
),
MallBaseId
=
mallBaseId
}).
FirstOrDefault
();
if
(
dmodel
!=
null
)
{
Dictionary
<
string
,
object
>
keyValues1
=
new
Dictionary
<
string
,
object
>()
{
{
nameof
(
RB_Distributor_Info
.
CommissionWithdrawal
),
(
dmodel
.
CommissionWithdrawal
??
0
)
+
(
remodel
.
AppliedMoney
??
0
)}
};
List
<
WhereHelper
>
wheres1
=
new
List
<
WhereHelper
>()
{
new
WhereHelper
(){
FiledName
=
nameof
(
RB_Distributor_Info
.
Id
),
FiledValue
=
dmodel
.
Id
,
OperatorEnum
=
OperatorEnum
.
Equal
}
};
distributor_InfoRepository
.
Update
(
keyValues1
,
wheres1
);
}
}
}
}
else
else
{
{
...
...
Mall.Repository/Product/RB_GoodsRepository.cs
View file @
0a1d624e
...
@@ -27,6 +27,9 @@ namespace Mall.Repository.Product
...
@@ -27,6 +27,9 @@ namespace Mall.Repository.Product
if
(
dmodel
.
TenantId
>
0
)
{
if
(
dmodel
.
TenantId
>
0
)
{
where
+=
$@" and g.
{
nameof
(
RB_Goods_Extend
.
TenantId
)}
=
{
dmodel
.
TenantId
}
"
;
where
+=
$@" and g.
{
nameof
(
RB_Goods_Extend
.
TenantId
)}
=
{
dmodel
.
TenantId
}
"
;
}
}
if
(
dmodel
.
NotTenantId
>
0
)
{
where
+=
$@" and g.
{
nameof
(
RB_Goods_Extend
.
TenantId
)}
<>
{
dmodel
.
NotTenantId
}
"
;
}
if
(
dmodel
.
MallBaseId
>
0
)
{
if
(
dmodel
.
MallBaseId
>
0
)
{
where
+=
$@" and g.
{
nameof
(
RB_Goods_Extend
.
MallBaseId
)}
=
{
dmodel
.
MallBaseId
}
"
;
where
+=
$@" and g.
{
nameof
(
RB_Goods_Extend
.
MallBaseId
)}
=
{
dmodel
.
MallBaseId
}
"
;
}
}
...
@@ -54,6 +57,12 @@ namespace Mall.Repository.Product
...
@@ -54,6 +57,12 @@ namespace Mall.Repository.Product
if
(!
string
.
IsNullOrEmpty
(
dmodel
.
EndTime
))
{
if
(!
string
.
IsNullOrEmpty
(
dmodel
.
EndTime
))
{
where
+=
$@" and g.
{
nameof
(
RB_Goods_Extend
.
CreateDate
)}
<='
{
dmodel
.
EndTime
+
" 23:59:59"
}
'"
;
where
+=
$@" and g.
{
nameof
(
RB_Goods_Extend
.
CreateDate
)}
<='
{
dmodel
.
EndTime
+
" 23:59:59"
}
'"
;
}
}
if
(
dmodel
.
IsProcurement
>
0
)
{
where
+=
$@" and g.
{
nameof
(
RB_Goods_Extend
.
IsProcurement
)}
=
{
dmodel
.
IsProcurement
}
"
;
}
if
(
dmodel
.
IsProxy
>
0
)
{
where
+=
$@" and g.
{
nameof
(
RB_Goods_Extend
.
IsProxy
)}
=
{
dmodel
.
IsProxy
}
"
;
}
string
sql
=
$@"select g.* from RB_Goods g
string
sql
=
$@"select g.* from RB_Goods g
inner join rb_goods_category c on g.Id=c.GoodsId
inner join rb_goods_category c on g.Id=c.GoodsId
...
...
Mall.Repository/Product/RB_Goods_ProxyRepository.cs
0 → 100644
View file @
0a1d624e
using
System
;
using
System.Collections.Generic
;
using
System.Text
;
using
Mall.Model.Entity.Product
;
using
Mall.Model.Extend.Product
;
using
System.Linq
;
using
Mall.Model.Entity.User
;
namespace
Mall.Repository.Product
{
/// <summary>
/// 商品代理仓储层
/// </summary>
public
class
RB_Goods_ProxyRepository
:
RepositoryBase
<
RB_Goods_Proxy
>
{
/// <summary>
/// 获取列表
/// </summary>
/// <param name="dmodel"></param>
/// <returns></returns>
public
List
<
RB_Goods_Proxy_Extend
>
GetList
(
RB_Goods_Proxy_Extend
dmodel
)
{
string
where
=
$" 1=1 and Status =0"
;
if
(
dmodel
.
TenantId
>
0
)
{
where
+=
$@" and
{
nameof
(
RB_Goods_Proxy
.
TenantId
)}
=
{
dmodel
.
TenantId
}
"
;
}
if
(
dmodel
.
MallBaseId
>
0
)
{
where
+=
$@" and
{
nameof
(
RB_Goods_Proxy
.
MallBaseId
)}
=
{
dmodel
.
MallBaseId
}
"
;
}
if
(
dmodel
.
ProxyTenantId
>
0
)
{
where
+=
$@" and
{
nameof
(
RB_Goods_Proxy
.
ProxyTenantId
)}
=
{
dmodel
.
ProxyTenantId
}
"
;
}
if
(
dmodel
.
ProxyMallBaseId
>
0
)
{
where
+=
$@" and
{
nameof
(
RB_Goods_Proxy
.
ProxyMallBaseId
)}
=
{
dmodel
.
ProxyMallBaseId
}
"
;
}
if
(
dmodel
.
GoodsId
>
0
)
{
where
+=
$@" and
{
nameof
(
RB_Goods_Proxy
.
GoodsId
)}
=
{
dmodel
.
GoodsId
}
"
;
}
if
(!
string
.
IsNullOrEmpty
(
dmodel
.
GoodsIds
))
{
where
+=
$@" and
{
nameof
(
RB_Goods_Proxy
.
GoodsId
)}
in(
{
dmodel
.
GoodsIds
}
)"
;
}
if
(
dmodel
.
ProxyGoodsId
>
0
)
{
where
+=
$@" and
{
nameof
(
RB_Goods_Proxy
.
ProxyGoodsId
)}
=
{
dmodel
.
ProxyGoodsId
}
"
;
}
string
sql
=
$@"SELECT * FROM RB_Goods_Proxy where
{
where
}
order by Id asc"
;
return
Get
<
RB_Goods_Proxy_Extend
>(
sql
).
ToList
();
}
}
}
Mall.Repository/Product/RB_Material_InfoRepository.cs
View file @
0a1d624e
...
@@ -24,16 +24,14 @@ namespace Mall.Repository.Product
...
@@ -24,16 +24,14 @@ namespace Mall.Repository.Product
public
List
<
RB_Material_Info_Extend
>
GetPageList
(
int
pageIndex
,
int
pageSize
,
out
long
rowCount
,
RB_Material_Info_Extend
dmodel
)
public
List
<
RB_Material_Info_Extend
>
GetPageList
(
int
pageIndex
,
int
pageSize
,
out
long
rowCount
,
RB_Material_Info_Extend
dmodel
)
{
{
string
where
=
$" 1=1 and
{
nameof
(
RB_Material_Info
.
Status
)}
=0"
;
string
where
=
$" 1=1 and
{
nameof
(
RB_Material_Info
.
Status
)}
=0"
;
if
(
dmodel
.
Id
>=
100
)
if
(
dmodel
.
TenantId
>
0
)
{
where
+=
$@" and
{
nameof
(
RB_Material_Info
.
TenantId
)}
=
{
dmodel
.
TenantId
}
"
;
}
if
(
dmodel
.
MallBaseId
>
0
)
{
{
if
(
dmodel
.
TenantId
>
0
)
where
+=
$@" and
{
nameof
(
RB_Material_Info
.
MallBaseId
)}
=
{
dmodel
.
MallBaseId
}
"
;
{
where
+=
$@" and
{
nameof
(
RB_Material_Info
.
TenantId
)}
=
{
dmodel
.
TenantId
}
"
;
}
if
(
dmodel
.
MallBaseId
>
0
)
{
where
+=
$@" and
{
nameof
(
RB_Material_Info
.
MallBaseId
)}
=
{
dmodel
.
MallBaseId
}
"
;
}
}
}
if
(
dmodel
.
Id
>
0
)
{
if
(
dmodel
.
Id
>
0
)
{
where
+=
$@" and
{
nameof
(
RB_Material_Info
.
Id
)}
=
{
dmodel
.
Id
}
"
;
where
+=
$@" and
{
nameof
(
RB_Material_Info
.
Id
)}
=
{
dmodel
.
Id
}
"
;
...
...
Mall.WebApi/Controllers/Product/ProductController.cs
View file @
0a1d624e
...
@@ -1091,13 +1091,15 @@ namespace Mall.WebApi.Controllers.MallBase
...
@@ -1091,13 +1091,15 @@ namespace Mall.WebApi.Controllers.MallBase
x
.
SalesNum
,
x
.
SalesNum
,
x
.
GoodsBuyNum
,
x
.
GoodsBuyNum
,
x
.
IsQuickBuy
,
x
.
IsQuickBuy
,
x
.
IsProxy
,
x
.
IsProcurement
,
x
.
GoodsStatus
,
x
.
GoodsStatus
,
x
.
TenantId
,
x
.
TenantId
,
x
.
MallBaseId
,
x
.
MallBaseId
,
CreateDate
=
x
.
CreateDate
.
HasValue
?
x
.
CreateDate
.
Value
.
ToString
(
"yyyy-MM-dd HH:mm:ss"
)
:
""
CreateDate
=
x
.
CreateDate
.
HasValue
?
x
.
CreateDate
.
Value
.
ToString
(
"yyyy-MM-dd HH:mm:ss"
)
:
""
});
});
return
ApiResult
.
Success
(
""
,
pagelist
);
return
ApiResult
.
Success
(
""
,
pagelist
);
}
}
/// <summary>
/// <summary>
/// 商品信息下载
/// 商品信息下载
...
@@ -1384,6 +1386,11 @@ namespace Mall.WebApi.Controllers.MallBase
...
@@ -1384,6 +1386,11 @@ namespace Mall.WebApi.Controllers.MallBase
model
.
SeparateSetMember
,
model
.
SeparateSetMember
,
model
.
IsQuickBuy
,
model
.
IsQuickBuy
,
model
.
SupplierId
,
model
.
SupplierId
,
model
.
IsProxy
,
model
.
ProxyType
,
model
.
ProxyRises
,
model
.
ProxyMoney
,
model
.
IsProcurement
,
CategoryList
=
model
.
CategoryList
.
Select
(
x
=>
new
{
CategoryList
=
model
.
CategoryList
.
Select
(
x
=>
new
{
x
.
Id
,
x
.
Id
,
x
.
CategoryId
,
x
.
CategoryId
,
...
@@ -1859,6 +1866,25 @@ namespace Mall.WebApi.Controllers.MallBase
...
@@ -1859,6 +1866,25 @@ namespace Mall.WebApi.Controllers.MallBase
demodel
.
GoodsType
??=
Common
.
Enum
.
Goods
.
OrderTypeEnum
.
Mall
;
demodel
.
GoodsType
??=
Common
.
Enum
.
Goods
.
OrderTypeEnum
.
Mall
;
demodel
.
GoodsStatus
??=
2
;
demodel
.
GoodsStatus
??=
2
;
demodel
.
IsProxy
??=
2
;
demodel
.
ProxyType
??=
1
;
demodel
.
ProxyRises
??=
0
;
demodel
.
ProxyMoney
??=
0
;
demodel
.
IsProcurement
=
2
;
//新增时
if
(
demodel
.
IsProxy
==
1
&&
demodel
.
CostPrice
>
0
)
{
decimal
ProxyMoney
=
0
;
if
(
demodel
.
ProxyType
==
1
)
{
ProxyMoney
=
Math
.
Round
((
demodel
.
CostPrice
??
0
)
*
(
1
+
(
demodel
.
ProxyRises
??
0
)),
2
,
MidpointRounding
.
AwayFromZero
);
}
else
{
ProxyMoney
=
(
demodel
.
CostPrice
??
0
)
+
(
demodel
.
ProxyRises
??
0
);
}
if
(
ProxyMoney
!=
(
demodel
.
ProxyMoney
??
0
))
{
return
ApiResult
.
ParamIsNull
(
"代理价格不正确"
);
}
}
bool
flag
=
productModule
.
SetProductGoodsInfo
(
demodel
);
bool
flag
=
productModule
.
SetProductGoodsInfo
(
demodel
);
if
(
flag
)
if
(
flag
)
{
{
...
@@ -1939,6 +1965,63 @@ namespace Mall.WebApi.Controllers.MallBase
...
@@ -1939,6 +1965,63 @@ namespace Mall.WebApi.Controllers.MallBase
#
endregion
#
endregion
#
region
商品代理
/// <summary>
/// 商品代理分页列表
/// </summary>
/// <returns></returns>
[
HttpPost
]
public
ApiResult
GetProductGoodsProxyPageList
()
{
var
parms
=
RequestParm
;
ResultPageModel
pagelist
=
JsonConvert
.
DeserializeObject
<
ResultPageModel
>(
parms
.
msg
.
ToString
());
RB_Goods_Extend
demodel
=
JsonConvert
.
DeserializeObject
<
RB_Goods_Extend
>(
parms
.
msg
.
ToString
());
demodel
.
NotTenantId
=
parms
.
TenantId
;
//demodel.MallBaseId = parms.MallBaseId;
demodel
.
IsProxy
=
1
;
demodel
.
IsProcurement
=
2
;
var
list
=
productModule
.
GetProductGoodsProxyPageList
(
pagelist
.
pageIndex
,
pagelist
.
pageSize
,
out
long
count
,
demodel
);
pagelist
.
count
=
Convert
.
ToInt32
(
count
);
pagelist
.
pageData
=
list
.
Select
(
x
=>
new
{
x
.
Id
,
x
.
Name
,
x
.
Sort
,
x
.
CoverImage
,
CategoryList
=
x
.
CategoryList
.
Select
(
y
=>
new
{
y
.
Id
,
y
.
CategoryName
}),
x
.
ProxyMoney
,
x
.
InventoryNum
,
SalesNum
=
(
x
.
SalesNum
??
0
)
+
(
x
.
GoodsBuyNum
??
0
),
x
.
IsProcurement
,
x
.
ProcurementGoodsId
,
x
.
GoodsStatus
,
x
.
TenantId
,
x
.
MallBaseId
,
CreateDate
=
x
.
CreateDate
.
HasValue
?
x
.
CreateDate
.
Value
.
ToString
(
"yyyy-MM-dd HH:mm:ss"
)
:
""
});
return
ApiResult
.
Success
(
""
,
pagelist
);
}
/// <summary>
/// 设置商品代理
/// </summary>
/// <returns></returns>
[
HttpPost
]
public
ApiResult
SetProductGoodsProxy
()
{
var
req
=
RequestParm
;
JObject
parms
=
JObject
.
Parse
(
req
.
msg
.
ToString
());
int
GoodsId
=
parms
.
GetInt
(
"GoodsId"
,
0
);
if
(
GoodsId
<=
0
)
{
return
ApiResult
.
ParamIsNull
(
"请传递商品id"
);
}
return
productModule
.
SetProductGoodsProxy
(
GoodsId
,
req
.
TenantId
,
req
.
MallBaseId
);
}
#
endregion
#
region
商品导入
#
region
商品导入
/// <summary>
/// <summary>
...
...
Mall.WebApi/Controllers/User/UserController.cs
View file @
0a1d624e
...
@@ -1872,6 +1872,10 @@ namespace Mall.WebApi.Controllers.User
...
@@ -1872,6 +1872,10 @@ namespace Mall.WebApi.Controllers.User
string
msg
=
userModule
.
SetDistributorRemitAudit
(
RemitId
,
Type
,
Remark
,
re
.
uid
,
re
.
MallBaseId
);
string
msg
=
userModule
.
SetDistributorRemitAudit
(
RemitId
,
Type
,
Remark
,
re
.
uid
,
re
.
MallBaseId
);
if
(
msg
==
""
)
if
(
msg
==
""
)
{
{
if
(
Type
==
3
)
{
var
umodel
=
userModule
.
GetMemberUserInfo
(
model
.
UserId
??
0
);
new
MiniProgramMsgModule
().
SendWithdrawFailMsg
(
model
.
TenantId
,
model
.
MallBaseId
,
umodel
.
OpenId
,
(
model
.
RemitMoney
??
0
).
ToString
(),
"提现申请已被拒绝"
);
}
return
ApiResult
.
Success
();
return
ApiResult
.
Success
();
}
}
else
else
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment