diff --git a/Models/ScpEntity/TA_VENDER.cs b/Models/ScpEntity/TA_VENDER.cs index 6091c8e..7d56d1e 100644 --- a/Models/ScpEntity/TA_VENDER.cs +++ b/Models/ScpEntity/TA_VENDER.cs @@ -65,6 +65,7 @@ namespace CK.SCP.Models.ScpEntity public string Site { get; set; } public int? ReceiveTimeScope { set; get; } + public decimal? Quota { set; get; } [NotMapped] public string FactoryName => ScpCache.GetFactoryNameByCode(Site); } diff --git a/Models/ScpEntity/TB_PRICE.cs b/Models/ScpEntity/TB_PRICE.cs index 479178b..17c1534 100644 --- a/Models/ScpEntity/TB_PRICE.cs +++ b/Models/ScpEntity/TB_PRICE.cs @@ -27,5 +27,7 @@ namespace CK.SCP.Models.ScpEntity public string Extend1 { get; set; } public string Extend2 { get; set; } public string Extend3 { get; set; } + public int State { get; set; } + public decimal? VendAmt { get; set; } } } diff --git a/SCP/default.aspx b/SCP/default.aspx index a8354e6..0072930 100644 --- a/SCP/default.aspx +++ b/SCP/default.aspx @@ -111,10 +111,10 @@ for (var i = 0; obj.options.length; i++) { - if ('0210' == obj.options[i].value) { + if ('CNS' == obj.options[i].value) { obj.options[i].selected = true; _factory = document.getElementById(_factoryValue); - _factory.value = '0210'; + _factory.value = 'CNS'; } }