IsIncosistent...
This commit is contained in:
parent
66764b3dd5
commit
9731e15944
|
|
@ -34,7 +34,14 @@ namespace FruitBank.Common.Dtos
|
||||||
{
|
{
|
||||||
get => StockQuantityHistoryExt?.NetWeight;
|
get => StockQuantityHistoryExt?.NetWeight;
|
||||||
set => StockQuantityHistoryExt!.NetWeight = value;
|
set => StockQuantityHistoryExt!.NetWeight = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[NotColumn, JsonIgnore, System.Text.Json.Serialization.JsonIgnore]
|
||||||
|
public bool IsInconsistent
|
||||||
|
{
|
||||||
|
get => StockQuantityHistoryExt?.IsInconsistent ?? false;
|
||||||
|
set => StockQuantityHistoryExt!.IsInconsistent = value;
|
||||||
|
}
|
||||||
|
|
||||||
[Association(ThisKey = nameof(Id), OtherKey = nameof(StockQuantityHistoryExt.StockQuantityHistoryId), CanBeNull = true)]
|
[Association(ThisKey = nameof(Id), OtherKey = nameof(StockQuantityHistoryExt.StockQuantityHistoryId), CanBeNull = true)]
|
||||||
public StockQuantityHistoryExt? StockQuantityHistoryExt { get; set; }
|
public StockQuantityHistoryExt? StockQuantityHistoryExt { get; set; }
|
||||||
|
|
|
||||||
|
|
@ -18,6 +18,7 @@ namespace Mango.Nop.Core.Entities
|
||||||
public int StockQuantityHistoryId { get; set; }
|
public int StockQuantityHistoryId { get; set; }
|
||||||
public double? NetWeightAdjustment { get; set; }
|
public double? NetWeightAdjustment { get; set; }
|
||||||
public double? NetWeight { get; set; }
|
public double? NetWeight { get; set; }
|
||||||
|
public bool IsInconsistent { get; set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
[Table(Name = FruitBankConstClient.StockQuantityHistoryExtDbTableName)]
|
[Table(Name = FruitBankConstClient.StockQuantityHistoryExtDbTableName)]
|
||||||
|
|
@ -31,5 +32,7 @@ namespace Mango.Nop.Core.Entities
|
||||||
|
|
||||||
[Column(DataType = DataType.DecFloat, CanBeNull = true)]
|
[Column(DataType = DataType.DecFloat, CanBeNull = true)]
|
||||||
public double? NetWeight { get; set; }
|
public double? NetWeight { get; set; }
|
||||||
|
|
||||||
|
public bool IsInconsistent { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -15,6 +15,7 @@ namespace FruitBank.Common.Interfaces
|
||||||
public int? StockQuantityHistoryId { get; set; }
|
public int? StockQuantityHistoryId { get; set; }
|
||||||
public double? NetWeightAdjustment { get; set; }
|
public double? NetWeightAdjustment { get; set; }
|
||||||
public double? NetWeight { get; set; }
|
public double? NetWeight { get; set; }
|
||||||
|
public bool IsInconsistent { get; set; }
|
||||||
|
|
||||||
public StockQuantityHistoryExt? StockQuantityHistoryExt { get; set; }
|
public StockQuantityHistoryExt? StockQuantityHistoryExt { get; set; }
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -28,6 +28,7 @@
|
||||||
<DxGridDataColumn FieldName="NetWeight" Width="135" Caption="Net Weight(kg)" ReadOnly="true" />
|
<DxGridDataColumn FieldName="NetWeight" Width="135" Caption="Net Weight(kg)" ReadOnly="true" />
|
||||||
|
|
||||||
<DxGridDataColumn FieldName="Message" ReadOnly="true" />
|
<DxGridDataColumn FieldName="Message" ReadOnly="true" />
|
||||||
|
<DxGridDataColumn FieldName="IsInconsistent" Width="105" Caption="Inconsistent" ReadOnly="true" />
|
||||||
<DxGridDataColumn FieldName="CombinationId" Width="125" ReadOnly="true" Visible="false" />
|
<DxGridDataColumn FieldName="CombinationId" Width="125" ReadOnly="true" Visible="false" />
|
||||||
<DxGridDataColumn FieldName="WarehouseId" Width="125" ReadOnly="true" Visible="false" />
|
<DxGridDataColumn FieldName="WarehouseId" Width="125" ReadOnly="true" Visible="false" />
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -29,6 +29,11 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AyCode.Blazor.Models.Server
|
||||||
EndProject
|
EndProject
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AyCode.Maui.Core", "..\..\..\Aycode\Source\AyCode.Blazor\AyCode.Maui.Core\AyCode.Maui.Core.csproj", "{F7C67754-A59C-C355-2A10-C614F0585627}"
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AyCode.Maui.Core", "..\..\..\Aycode\Source\AyCode.Blazor\AyCode.Maui.Core\AyCode.Maui.Core.csproj", "{F7C67754-A59C-C355-2A10-C614F0585627}"
|
||||||
EndProject
|
EndProject
|
||||||
|
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{8EC462FD-D22E-90A8-E5CE-7E832BA40C5D}"
|
||||||
|
ProjectSection(SolutionItems) = preProject
|
||||||
|
SqlSchemaCompare_Dev_to_Prod.scmp = SqlSchemaCompare_Dev_to_Prod.scmp
|
||||||
|
EndProjectSection
|
||||||
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
Debug|Any CPU = Debug|Any CPU
|
Debug|Any CPU = Debug|Any CPU
|
||||||
|
|
|
||||||
|
|
@ -3,12 +3,12 @@
|
||||||
<Version>10</Version>
|
<Version>10</Version>
|
||||||
<SourceModelProvider>
|
<SourceModelProvider>
|
||||||
<ConnectionBasedModelProvider>
|
<ConnectionBasedModelProvider>
|
||||||
<ConnectionString>Data Source=195.26.231.218;Initial Catalog=FruitBank_DEV;Integrated Security=False;Persist Security Info=False;User ID=sa;Pooling=False;Trust Server Certificate=True</ConnectionString>
|
<ConnectionString>Data Source=195.26.231.218;Initial Catalog=FruitBank_DEV;Integrated Security=False;Persist Security Info=False;User ID=sa;Password=v6f_?xNfg9N1;Trust Server Certificate=True</ConnectionString>
|
||||||
</ConnectionBasedModelProvider>
|
</ConnectionBasedModelProvider>
|
||||||
</SourceModelProvider>
|
</SourceModelProvider>
|
||||||
<TargetModelProvider>
|
<TargetModelProvider>
|
||||||
<ConnectionBasedModelProvider>
|
<ConnectionBasedModelProvider>
|
||||||
<ConnectionString>Data Source=195.26.231.218;Initial Catalog=FruitBank_PROD;Integrated Security=False;Persist Security Info=False;User ID=sa;Pooling=False;Trust Server Certificate=True</ConnectionString>
|
<ConnectionString>Data Source=195.26.231.218;Initial Catalog=FruitBank_PROD;Integrated Security=False;Persist Security Info=False;User ID=sa;Password=v6f_?xNfg9N1;Trust Server Certificate=True</ConnectionString>
|
||||||
</ConnectionBasedModelProvider>
|
</ConnectionBasedModelProvider>
|
||||||
</TargetModelProvider>
|
</TargetModelProvider>
|
||||||
<SchemaCompareSettingsService>
|
<SchemaCompareSettingsService>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue