Add Comment to ShippingDocument
This commit is contained in:
parent
0938422103
commit
5664078ea4
|
|
@ -17,6 +17,8 @@ public class ShippingDocument : MgEntityBase, IShippingDocument
|
|||
public int TotalPallets { get; set; }
|
||||
|
||||
public bool IsAllMeasured { get; set; }
|
||||
public string Comment { get; set; }
|
||||
|
||||
|
||||
[Association(ThisKey = nameof(ShippingId), OtherKey = nameof(Shipping.Id), CanBeNull = true)]
|
||||
public Shipping? Shipping{ get; set; }
|
||||
|
|
|
|||
|
|
@ -18,6 +18,7 @@ public interface IShippingDocument: IEntityInt, ITimeStampInfo//, IMeasured
|
|||
|
||||
public bool IsAllMeasured { get; set; }
|
||||
|
||||
public string Comment { get; set; }
|
||||
public Partner? Partner { get; set; }
|
||||
public Shipping? Shipping{ get; set; }
|
||||
public List<ShippingItem>? ShippingItems { get; set; }
|
||||
|
|
|
|||
|
|
@ -32,6 +32,11 @@
|
|||
<TargetPlatformMinVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</TargetPlatformMinVersion>
|
||||
</PropertyGroup>
|
||||
|
||||
|
||||
<PropertyGroup Condition="$(TargetFramework.Contains('-android'))">
|
||||
<RunAOTCompilation>false</RunAOTCompilation>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup Condition="$(TargetFramework.Contains('-ios')) and '$(Configuration)' == 'Release'">
|
||||
<UseInterpreter>true</UseInterpreter>
|
||||
</PropertyGroup>
|
||||
|
|
|
|||
Loading…
Reference in New Issue