Revisión | 54 (tree) |
---|---|
Tiempo | 2022-02-01 21:42:42 |
Autor | hemaxvi_soft |
Cambios
-Modifiacion del metodo guardar, el campo fecha.
@@ -319,3 +319,4 @@ | ||
319 | 319 | C:\HemaxviSoft\Proyectos\SVN\hemaxvisoft\softloans\obj\Debug\SoftLoteria.dll |
320 | 320 | C:\HemaxviSoft\Proyectos\SVN\hemaxvisoft\softloans\obj\Debug\SoftLoteria.pdb |
321 | 321 | C:\Users\Lenovo\source\Workspaces\HemaxviSoft\softloans\obj\Debug\SoftLoans.csprojAssemblyReference.cache |
322 | +C:\HemaxviSoft\Proyectos\SVN\hemaxvisoft\softloans\obj\Debug\SoftLoans.csproj.AssemblyReference.cache |
@@ -836,7 +836,7 @@ | ||
836 | 836 | loandetailsEntity.Interest = loansEntity.PercentInterest; |
837 | 837 | loandetailsEntity.CapitalBalance = decimal.Parse(item.Cells[4].Text); |
838 | 838 | loandetailsEntity.InterestBalance = decimal.Parse(item.Cells[3].Text); |
839 | - loandetailsEntity.Date = loansEntity.Date; | |
839 | + loandetailsEntity.Date = DateTime.Parse(item.Cells[1].Text); | |
840 | 840 | loandetailsEntity.Status = true; |
841 | 841 | loandetailsDAL.Insert(loandetailsEntity, loginDAL); |
842 | 842 |