antes de sin conexion
This commit is contained in:
@@ -5,8 +5,8 @@ namespace Rs_system.Models;
|
|||||||
|
|
||||||
public enum TipoMovimientoContable
|
public enum TipoMovimientoContable
|
||||||
{
|
{
|
||||||
Ingreso,
|
Ingreso = 1,
|
||||||
Egreso
|
Egreso = 2
|
||||||
}
|
}
|
||||||
|
|
||||||
[Table("contabilidad_registros")]
|
[Table("contabilidad_registros")]
|
||||||
|
|||||||
@@ -99,8 +99,8 @@
|
|||||||
<td><input type="date" class="form-control form-control-sm row-fecha" value="@item.Fecha.ToString("yyyy-MM-dd")" @(Model.Cerrado ? "disabled" : "") /></td>
|
<td><input type="date" class="form-control form-control-sm row-fecha" value="@item.Fecha.ToString("yyyy-MM-dd")" @(Model.Cerrado ? "disabled" : "") /></td>
|
||||||
<td>
|
<td>
|
||||||
<select class="form-select form-select-sm row-tipo" @(Model.Cerrado ? "disabled" : "") onchange="updateTotals()">
|
<select class="form-select form-select-sm row-tipo" @(Model.Cerrado ? "disabled" : "") onchange="updateTotals()">
|
||||||
<!option value="1" @(item.Tipo == TipoMovimientoContable.Ingreso ? "selected" : "")>Ingreso (+)</!option>
|
<option value="1" selected="@(item.Tipo == TipoMovimientoContable.Ingreso)">Ingreso (+)</option>
|
||||||
<!option value="0" @(item.Tipo == TipoMovimientoContable.Egreso ? "selected" : "")>Egreso (-)</!option>
|
<option value="2" selected="@(item.Tipo == TipoMovimientoContable.Egreso)">Egreso (-)</option>
|
||||||
</select>
|
</select>
|
||||||
</td>
|
</td>
|
||||||
<td><input type="text" class="form-control form-control-sm row-descripcion" value="@item.Descripcion" placeholder="Motivo del movimiento..." @(Model.Cerrado ? "disabled" : "") /></td>
|
<td><input type="text" class="form-control form-control-sm row-descripcion" value="@item.Descripcion" placeholder="Motivo del movimiento..." @(Model.Cerrado ? "disabled" : "") /></td>
|
||||||
@@ -151,7 +151,7 @@
|
|||||||
<td>
|
<td>
|
||||||
<select class="form-select form-select-sm row-tipo" onchange="updateTotals()">
|
<select class="form-select form-select-sm row-tipo" onchange="updateTotals()">
|
||||||
<option value="1">Ingreso (+)</option>
|
<option value="1">Ingreso (+)</option>
|
||||||
<option value="0">Egreso (-)</option>
|
<option value="2">Egreso (-)</option>
|
||||||
</select>
|
</select>
|
||||||
</td>
|
</td>
|
||||||
<td><input type="text" class="form-control form-control-sm row-descripcion" value="" placeholder="Motivo del movimiento..." /></td>
|
<td><input type="text" class="form-control form-control-sm row-descripcion" value="" placeholder="Motivo del movimiento..." /></td>
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
@@ -15,7 +15,7 @@ using System.Reflection;
|
|||||||
[assembly: System.Reflection.AssemblyCompanyAttribute("RS_system")]
|
[assembly: System.Reflection.AssemblyCompanyAttribute("RS_system")]
|
||||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+0a4c756479ff6d53fcf26ddccd18fdd64a07c2f6")]
|
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+1784131456f11aa7351eef9061c1354519f67545")]
|
||||||
[assembly: System.Reflection.AssemblyProductAttribute("RS_system")]
|
[assembly: System.Reflection.AssemblyProductAttribute("RS_system")]
|
||||||
[assembly: System.Reflection.AssemblyTitleAttribute("RS_system")]
|
[assembly: System.Reflection.AssemblyTitleAttribute("RS_system")]
|
||||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
a52affd2506f3cdbc9cb36fe76b525426724cc22cc4e60ef2470282155247555
|
0c9f7ccc95584dd75dafc3cf1c7a4bb9a06235cda706237be23d01c5759bf731
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user