yibo 8 years ago
parent
commit
796b221a9a
3 changed files with 24 additions and 0 deletions
  1. +3
    -0
      B3QingDaoWanFu.Web/B3QingDaoWanFu.Web.csproj
  2. +20
    -0
      B3QingDaoWanFu.Web/Pages/B3QingDaoWanFu/Overlays/StatPayAnalyse_Ext.cs
  3. +1
    -0
      B3QingDaoWanFu.Web/PluginClass.cs

+ 3
- 0
B3QingDaoWanFu.Web/B3QingDaoWanFu.Web.csproj View File

@ -96,6 +96,9 @@
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="Pages\B3QingDaoWanFu\Overlays\StatPayAnalyse_Ext.cs">
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="Pages\B3QingDaoWanFu\Overlays\StatPayEdit_Ext.cs">
<SubType>ASPXCodeBehind</SubType>
</Compile>


+ 20
- 0
B3QingDaoWanFu.Web/Pages/B3QingDaoWanFu/Overlays/StatPayAnalyse_Ext.cs View File

@ -0,0 +1,20 @@
using BWP.Web.Pages.B3ButcherManage.Bills.StatPay_;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BWP.Web.Pages.B3QingDaoWanFu.Overlays
{
class StatPayAnalyse_Ext : StatPayAnalyse
{
protected override bool UseWeightSumRate2
{
get
{
return true;
}
}
}
}

+ 1
- 0
B3QingDaoWanFu.Web/PluginClass.cs View File

@ -15,6 +15,7 @@ namespace BWP.B3QingDaoWanFu
public void OnInit()
{
WpfPageFactory.RegisterPageOverlay(typeof(StatPayEdit).FullName, typeof(StatPayEdit_Ext).FullName);
WpfPageFactory.RegisterPageOverlay(typeof(StatPayAnalyse).FullName, typeof(StatPayAnalyse_Ext).FullName);
}
}
}

Loading…
Cancel
Save