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
8ac7a9fa
Commit
8ac7a9fa
authored
Jun 05, 2020
by
liudong1993
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
no message
parent
02ff4072
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
138 additions
and
3 deletions
+138
-3
OrderModule.cs
Mall.Module.Product/OrderModule.cs
+134
-3
RB_Goods_OrderAfterSaleRepository.cs
Mall.Repository/Product/RB_Goods_OrderAfterSaleRepository.cs
+4
-0
No files found.
Mall.Module.Product/OrderModule.cs
View file @
8ac7a9fa
...
...
@@ -185,6 +185,10 @@ namespace Mall.Module.Product
/// 和平等级
/// </summary>
private
readonly
RB_Distributor_HPGradeInfoRepository
distributor_HPGradeInfoRepository
=
new
RB_Distributor_HPGradeInfoRepository
();
/// <summary>
/// 商品限购区域
/// </summary>
private
readonly
RB_Goods_AreaRepository
goods_AreaRepository
=
new
RB_Goods_AreaRepository
();
#
region
购物车
...
...
@@ -999,6 +1003,7 @@ namespace Mall.Module.Product
int
Total_use_integral
=
0
;
//总积分
decimal
CouponsMoney
=
0
;
//优惠总金额
bool
IsPointsDeduction
=
false
;
//是否有商品可使用积分抵扣
bool
address_enable
=
true
;
//地址Ok
List
<
object
>
goods_list
=
new
List
<
object
>();
if
(
demodel
.
DetailList
.
Any
())
{
...
...
@@ -1010,6 +1015,8 @@ namespace Mall.Module.Product
var
speciVList
=
goods_SpecificationValueRepository
.
GetList
(
new
RB_Goods_SpecificationValue_Extend
()
{
GoodsIds
=
GoodsIds
,
TenantId
=
demodel
.
TenantId
,
MallBaseId
=
demodel
.
MallBaseId
});
var
speciPList
=
goods_SpecificationPriceRepository
.
GetList
(
new
RB_Goods_SpecificationPrice_Extend
()
{
GoodsIds
=
GoodsIds
,
TenantId
=
demodel
.
TenantId
,
MallBaseId
=
demodel
.
MallBaseId
});
var
mpriceList
=
goods_MemberPriceRepository
.
GetList
(
new
RB_Goods_MemberPrice_Extend
()
{
GoodsIds
=
GoodsIds
,
TenantId
=
demodel
.
TenantId
,
MallBaseId
=
demodel
.
MallBaseId
});
//区域
var
AreaList
=
goods_AreaRepository
.
GetList
(
new
RB_Goods_Area_Extend
()
{
GoodsIds
=
GoodsIds
,
TenantId
=
demodel
.
TenantId
,
MallBaseId
=
demodel
.
MallBaseId
});
//返佣
var
DistributionCommissionList
=
new
List
<
RB_Goods_DistributionCommission_Extend
>();
if
(
demodel
.
DetailList
.
Where
(
x
=>
x
.
SeparateDistribution
==
1
).
Any
())
...
...
@@ -1089,7 +1096,7 @@ namespace Mall.Module.Product
continue
;
}
int
GoodsWeight
=
gmodel
.
GoodsWeight
??
0
;
//商品重量
var
categoryList
=
clist
.
Where
(
x
=>
x
.
GoodsId
==
item
.
GoodsId
).
ToList
();
var
categoryList
=
clist
.
Where
(
x
=>
x
.
GoodsId
==
item
.
GoodsId
).
ToList
();
#
region
图片
gmodel
.
CoverImage
=
""
;
...
...
@@ -1463,6 +1470,7 @@ namespace Mall.Module.Product
item
.
Discounts
=
discounts
;
Total_integral_price
+=
integral_price
;
Total_use_integral
+=
use_integral
;
item
.
CategoryIdList
=
categoryList
.
Select
(
x
=>
x
.
CategoryId
??
0
).
ToList
();
}
if
(
demodel
.
User_Coupon_Id
>
0
&&
GoodsCouponList
.
Any
())
{
...
...
@@ -1514,21 +1522,51 @@ namespace Mall.Module.Product
{
continue
;
}
//验证规格是否已失效
if
(
gmodel
.
IsCustomSpecification
==
1
)
{
if
(
string
.
IsNullOrEmpty
(
item
.
SpecificationSort
))
{
continue
;
}
if
(!
speciPList
.
Where
(
x
=>
x
.
GoodsId
==
item
.
GoodsId
&&
x
.
SpecificationSort
==
item
.
SpecificationSort
).
Any
())
{
continue
;
}
}
else
{
if
(!
string
.
IsNullOrEmpty
(
item
.
SpecificationSort
))
{
continue
;
}
}
decimal
couponMoney
=
0
;
//优惠金额
var
couponModel
=
GoodsCouponList
.
Where
(
x
=>
x
.
GoodsId
==
item
.
GoodsId
).
FirstOrDefault
();
if
(
couponModel
!=
null
)
{
couponMoney
=
couponModel
.
CouponMoney
;
TotalGoodsMoney
-=
couponMoney
;
//总价格需减去优惠券金额
}
}
var
areaGoods
=
AreaList
.
Where
(
x
=>
x
.
GoodsId
==
item
.
GoodsId
).
ToList
();
bool
address_disabled
=
false
;
if
(!
areaGoods
.
Where
(
x
=>
disList
.
Contains
(
x
.
AreaId
??
0
)).
Any
())
{
address_disabled
=
true
;
address_enable
=
false
;
}
goods_list
.
Add
(
new
{
id
=
gmodel
.
Id
,
name
=
gmodel
.
Name
,
categoryIdList
=
item
.
CategoryIdList
,
num
=
item
.
Number
,
forehead_integral
=
gmodel
.
PointsDeduction
,
forehead_integral_type
=
gmodel
.
PointsDeductionType
,
accumulative
=
gmodel
.
IsMultipleDeduction
,
//累计多件抵扣
address_disabled
,
pieces
=
gmodel
.
FullNumPinkage
,
//满件包邮
forehead
=
gmodel
.
FullMoneyPinkage
,
//满额包邮
freight_id
=
gmodel
.
FreightId
,
...
...
@@ -1668,7 +1706,7 @@ namespace Mall.Module.Product
is_default
=
defModel
?.
IsDefault
??
2
,
lonlat
=
defModel
?.
Lonlat
},
address_enable
=
true
,
address_enable
,
//has_ziti= false,
//custom_currency_all= [],
//allZiti= false,
...
...
@@ -4804,6 +4842,51 @@ namespace Mall.Module.Product
TenantId
=
tenantId
,
Type
=
1
});
//更新返佣为已返佣
var
ocList
=
goods_OrderCommissionRepository
.
GetListGroupByUser
(
new
RB_Goods_OrderCommission_Extend
()
{
TenantId
=
tenantId
,
MallBaseId
=
mallBaseId
,
OrderId
=
orderId
});
if
(
ocList
.
Any
())
{
foreach
(
var
item
in
ocList
)
{
//查询是否有申请退款
var
afterSaleList
=
goods_OrderAfterSaleRepository
.
GetList
(
new
RB_Goods_OrderAfterSale_Extend
()
{
OrderDetialId
=
item
.
OrderDetailId
,
Type
=
1
,
MallBaseId
=
mallBaseId
,
TenantId
=
tenantId
});
if
(!
afterSaleList
.
Any
())
{
//获取分销商信息
var
disInfo
=
distributor_InfoRepository
.
GetList
(
new
RB_Distributor_Info_Extend
()
{
UserId
=
item
.
UserId
,
TenantId
=
tenantId
,
MallBaseId
=
mallBaseId
}).
FirstOrDefault
();
if
(
disInfo
!=
null
&&
disInfo
.
AuditStatus
==
DistributorAuditStatusEnum
.
Audited
)
{
//更新分销商佣金
Dictionary
<
string
,
object
>
keyValues2
=
new
Dictionary
<
string
,
object
>()
{
{
nameof
(
RB_Distributor_Info_Extend
.
TotalCommission
),(
disInfo
.
TotalCommission
??
0
)+(
item
.
Commission
??
0
)},
{
nameof
(
RB_Distributor_Info_Extend
.
CommissionWithdrawal
),(
disInfo
.
CommissionWithdrawal
??
0
)+(
item
.
Commission
??
0
)},
};
List
<
WhereHelper
>
wheres2
=
new
List
<
WhereHelper
>()
{
new
WhereHelper
(){
FiledName
=
nameof
(
RB_Distributor_Info_Extend
.
Id
),
FiledValue
=
disInfo
.
Id
,
OperatorEnum
=
OperatorEnum
.
Equal
}
};
bool
flag1
=
goods_OrderCommissionRepository
.
Update
(
keyValues2
,
wheres2
);
if
(
flag1
)
{
//更新返佣状态
Dictionary
<
string
,
object
>
keyValues1
=
new
Dictionary
<
string
,
object
>()
{
{
nameof
(
RB_Goods_OrderCommission_Extend
.
CommissionState
),
2
},
{
nameof
(
RB_Goods_OrderCommission_Extend
.
UpdateDate
),
DateTime
.
Now
},
};
List
<
WhereHelper
>
wheres1
=
new
List
<
WhereHelper
>()
{
new
WhereHelper
(){
FiledName
=
nameof
(
RB_Goods_OrderCommission_Extend
.
Id
),
FiledValue
=
item
.
Id
,
OperatorEnum
=
OperatorEnum
.
Equal
}
};
goods_OrderCommissionRepository
.
Update
(
keyValues1
,
wheres1
);
}
}
}
}
}
}
return
flag
;
}
...
...
@@ -5335,6 +5418,54 @@ namespace Mall.Module.Product
}
};
goods_OrderRepository
.
Update
(
keyValues1
,
wheres1
);
//更新返佣为已返佣
var
ocList
=
goods_OrderCommissionRepository
.
GetListGroupByUser
(
new
RB_Goods_OrderCommission_Extend
()
{
TenantId
=
demodel
.
TenantId
,
MallBaseId
=
demodel
.
MallBaseId
,
OrderId
=
OrderId
});
if
(
ocList
.
Any
())
{
foreach
(
var
item
in
ocList
)
{
//查询是否有申请退款
var
afterSaleList
=
goods_OrderAfterSaleRepository
.
GetList
(
new
RB_Goods_OrderAfterSale_Extend
()
{
OrderDetialId
=
item
.
OrderDetailId
,
Type
=
1
,
MallBaseId
=
demodel
.
MallBaseId
,
TenantId
=
demodel
.
TenantId
});
if
(!
afterSaleList
.
Any
())
{
//获取分销商信息
var
disInfo
=
distributor_InfoRepository
.
GetList
(
new
RB_Distributor_Info_Extend
()
{
UserId
=
item
.
UserId
,
TenantId
=
demodel
.
TenantId
,
MallBaseId
=
demodel
.
MallBaseId
}).
FirstOrDefault
();
if
(
disInfo
!=
null
&&
disInfo
.
AuditStatus
==
DistributorAuditStatusEnum
.
Audited
)
{
//更新分销商佣金
Dictionary
<
string
,
object
>
keyValues2
=
new
Dictionary
<
string
,
object
>()
{
{
nameof
(
RB_Distributor_Info_Extend
.
TotalCommission
),(
disInfo
.
TotalCommission
??
0
)+(
item
.
Commission
??
0
)},
{
nameof
(
RB_Distributor_Info_Extend
.
CommissionWithdrawal
),(
disInfo
.
CommissionWithdrawal
??
0
)+(
item
.
Commission
??
0
)},
};
List
<
WhereHelper
>
wheres2
=
new
List
<
WhereHelper
>()
{
new
WhereHelper
(){
FiledName
=
nameof
(
RB_Distributor_Info_Extend
.
Id
),
FiledValue
=
disInfo
.
Id
,
OperatorEnum
=
OperatorEnum
.
Equal
}
};
bool
flag1
=
goods_OrderCommissionRepository
.
Update
(
keyValues2
,
wheres2
);
if
(
flag1
)
{
//更新返佣状态
Dictionary
<
string
,
object
>
keyValues3
=
new
Dictionary
<
string
,
object
>()
{
{
nameof
(
RB_Goods_OrderCommission_Extend
.
CommissionState
),
2
},
{
nameof
(
RB_Goods_OrderCommission_Extend
.
UpdateDate
),
DateTime
.
Now
},
};
List
<
WhereHelper
>
wheres3
=
new
List
<
WhereHelper
>()
{
new
WhereHelper
(){
FiledName
=
nameof
(
RB_Goods_OrderCommission_Extend
.
Id
),
FiledValue
=
item
.
Id
,
OperatorEnum
=
OperatorEnum
.
Equal
}
};
goods_OrderCommissionRepository
.
Update
(
keyValues3
,
wheres3
);
}
}
}
}
}
}
}
}
...
...
Mall.Repository/Product/RB_Goods_OrderAfterSaleRepository.cs
View file @
8ac7a9fa
...
...
@@ -162,6 +162,10 @@ INNER JOIN rb_member_user mu on mu.Id=oas.UserId
{
where
+=
$" and oas.
{
nameof
(
RB_Goods_OrderAfterSale
.
OrderDetialId
)}
=
{
dmodel
.
OrderDetialId
}
"
;
}
if
(
dmodel
.
Type
>
0
)
{
where
+=
$" and oas.
{
nameof
(
RB_Goods_OrderAfterSale
.
Type
)}
=
{
dmodel
.
Type
}
"
;
}
if
(!
string
.
IsNullOrEmpty
(
dmodel
.
ReOrderNo
))
{
where
+=
$" and oas.
{
nameof
(
RB_Goods_OrderAfterSale
.
ReOrderNo
)}
like '%
{
dmodel
.
ReOrderNo
}
%'"
;
...
...
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