|
@@ -304,11 +304,11 @@ public class StoreApplyHelper
|
|
|
if(prepos.AuthFlag == 0)
|
|
|
{
|
|
|
PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.Id == SnId) ?? new PosMachinesTwo();
|
|
|
- if(pos.BrandId == 1 || pos.BrandId == 2 || pos.BrandId == 4 || pos.BrandId == 6 || pos.BrandId == 7 || pos.BrandId == 8)
|
|
|
+ if(pos.BrandId == 1 || pos.BrandId == 2 || pos.BrandId == 4 || pos.BrandId == 6 || pos.BrandId == 7 || pos.BrandId == 8 || pos.BrandId == 10)
|
|
|
{
|
|
|
Amount += 200;
|
|
|
}
|
|
|
- else if(pos.BrandId == 3 || pos.BrandId == 5 || pos.BrandId == 9)
|
|
|
+ else if(pos.BrandId == 3 || pos.BrandId == 5 || pos.BrandId == 9 || pos.BrandId == 11)
|
|
|
{
|
|
|
Amount += 300;
|
|
|
}
|
|
@@ -331,11 +331,11 @@ public class StoreApplyHelper
|
|
|
if(store != null)
|
|
|
{
|
|
|
decimal Amount = 0;
|
|
|
- if(BrandId == 1 || BrandId == 2 || BrandId == 4 || BrandId == 6 || BrandId == 7 || BrandId == 8)
|
|
|
+ if(BrandId == 1 || BrandId == 2 || BrandId == 4 || BrandId == 6 || BrandId == 7 || BrandId == 8 || BrandId == 10)
|
|
|
{
|
|
|
Amount += 200 * OpStoreNum;
|
|
|
}
|
|
|
- else if(BrandId == 3 || BrandId == 5 || BrandId == 9)
|
|
|
+ else if(BrandId == 3 || BrandId == 5 || BrandId == 9 || BrandId == 11)
|
|
|
{
|
|
|
Amount += 300 * OpStoreNum;
|
|
|
}
|