|
|
|
@ -0,0 +1,29 @@ |
|
|
|
using Forks.EnterpriseServices; |
|
|
|
using Forks.Utils.Configuration; |
|
|
|
using System; |
|
|
|
using System.Collections.Generic; |
|
|
|
using System.Linq; |
|
|
|
using System.Text; |
|
|
|
using TSingSoft.WebPluginFramework; |
|
|
|
|
|
|
|
namespace BWP.B3SubstituteKill.Utils |
|
|
|
{ |
|
|
|
[ConfigurationEnabled] |
|
|
|
public class B3SubstituteKillOnlineConfig |
|
|
|
{ |
|
|
|
public B3SubstituteKillOnlineConfig() |
|
|
|
{ |
|
|
|
ConfigurationUtil.Fill(this); |
|
|
|
} |
|
|
|
|
|
|
|
private BoolConfigRef _butcherOrderCreateStatPay = new BoolConfigRef(false); |
|
|
|
[LogicName("代宰排宰创建代宰结算")] |
|
|
|
[ConfigurationItemGroup("B3代宰模块")] |
|
|
|
[ConfigurationItemDescription("代宰排宰创建代宰结算,默认“否”;如果选“是”,则“代宰排宰”审核创建代宰结算,否 代宰过磅审核创建代宰结算 ")] |
|
|
|
public BoolConfigRef ButcherOrderCreateStatPay |
|
|
|
{ |
|
|
|
get { return _butcherOrderCreateStatPay; } |
|
|
|
set { _butcherOrderCreateStatPay = value; } |
|
|
|
} |
|
|
|
} |
|
|
|
} |