fix visualizzaizone button simulazione in elenco offerte
fix stored calcoli
This commit is contained in:
@@ -97,8 +97,8 @@ namespace C2P.WebUserControls
|
||||
{
|
||||
lbOpen.CssClass = baseCss + "success";
|
||||
lbDuplicate.CssClass = baseCss + "warning";
|
||||
lbSimulate.CssClass = baseCss + "danger";
|
||||
lbPrint.CssClass = baseCss + "info";
|
||||
lbSimulate.CssClass = baseCss + "danger";
|
||||
|
||||
// cerco riga selezionata...
|
||||
CheckBox chkBox;
|
||||
@@ -112,6 +112,11 @@ namespace C2P.WebUserControls
|
||||
CodQuote = grView.SelectedDataKey["CodQuote"].ToString();
|
||||
QuoteRev = grView.SelectedDataKey["QuoteRev"].ToString();
|
||||
}
|
||||
// solo se riga corrente è tipo "Q"
|
||||
if (QuoteType != "Q")
|
||||
{
|
||||
lbSimulate.CssClass = lbSimulate.CssClass + " disabled";
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
|
||||
@@ -65,8 +65,8 @@ namespace C2P.WebUserControls
|
||||
// intercetto ed annullo l'insert
|
||||
e.Cancel = true;
|
||||
|
||||
// cultura...
|
||||
CultureInfo cultura = new CultureInfo("en-US");
|
||||
//// cultura...
|
||||
//CultureInfo cultura = new CultureInfo("en-US");
|
||||
|
||||
// recupero ultima riga pre-update...
|
||||
DS_Quotes.QuoteFull_QRow rigaPre = DtProxy.man.taQFQ.getLast()[0];
|
||||
@@ -76,9 +76,12 @@ namespace C2P.WebUserControls
|
||||
string CodClient = e.InputParameters["CodClient"].ToString();
|
||||
string CodItem = e.InputParameters["CodItem"].ToString();
|
||||
string RawMat = e.InputParameters["RawMat"].ToString();
|
||||
decimal RawMatCost = Convert.ToDecimal(e.InputParameters["RawMatCost"], cultura);
|
||||
decimal RawMatExtraCost = Convert.ToDecimal(e.InputParameters["RawMatExtraCost"], cultura);
|
||||
int BatchQty = Convert.ToInt32(e.InputParameters["BatchQty"], cultura);
|
||||
decimal RawMatCost = Convert.ToDecimal(e.InputParameters["RawMatCost"]);
|
||||
decimal RawMatExtraCost = Convert.ToDecimal(e.InputParameters["RawMatExtraCost"]);
|
||||
int BatchQty = Convert.ToInt32(e.InputParameters["BatchQty"]);
|
||||
//decimal RawMatCost = Convert.ToDecimal(e.InputParameters["RawMatCost"], cultura);
|
||||
//decimal RawMatExtraCost = Convert.ToDecimal(e.InputParameters["RawMatExtraCost"], cultura);
|
||||
//int BatchQty = Convert.ToInt32(e.InputParameters["BatchQty"], cultura);
|
||||
string CodInco = e.InputParameters["CodInco"].ToString();
|
||||
string Note = e.InputParameters["Note"].ToString();
|
||||
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
+2
-2
@@ -5,7 +5,7 @@
|
||||
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: AssemblyVersion("0.8.80.173")]
|
||||
[assembly: AssemblyFileVersion("0.8.80.173")]
|
||||
[assembly: AssemblyVersion("0.8.83.176")]
|
||||
[assembly: AssemblyFileVersion("0.8.83.176")]
|
||||
[assembly: AssemblyCopyright("Proxima & Steamware © 2013-2014")]
|
||||
[assembly: AssemblyCompany("Steamware")]
|
||||
|
||||
+2
-2
@@ -6,8 +6,8 @@
|
||||
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: AssemblyVersion("0.8.80.<#= this.RevisionNumber #>")]
|
||||
[assembly: AssemblyFileVersion("0.8.80.<#= this.RevisionNumber #>")]
|
||||
[assembly: AssemblyVersion("0.8.83.<#= this.RevisionNumber #>")]
|
||||
[assembly: AssemblyFileVersion("0.8.83.<#= this.RevisionNumber #>")]
|
||||
[assembly: AssemblyCopyright("Proxima & Steamware © 2013-<#= DateTime.Now.Year #>")]
|
||||
[assembly: AssemblyCompany("Steamware")]
|
||||
<#+
|
||||
|
||||
Reference in New Issue
Block a user