@if (Model.PosData.Count == 0)
{
Product Information
@if (!string.IsNullOrEmpty(Model.TypedMetadata.ItemCode))
{
Item code |
@Model.TypedMetadata.ItemCode |
}
@if (!string.IsNullOrEmpty(Model.TypedMetadata.ItemDesc))
{
Item Description |
@Model.TypedMetadata.ItemDesc |
}
Price |
@Model.Fiat |
@if (Model.TaxIncluded is not null)
{
Tax Included |
@Model.TaxIncluded |
}
}
@if (Model.TypedMetadata.BuyerName is not null ||
Model.TypedMetadata.BuyerEmail is not null ||
Model.TypedMetadata.BuyerPhone is not null ||
Model.TypedMetadata.BuyerAddress1 is not null ||
Model.TypedMetadata.BuyerAddress2 is not null ||
Model.TypedMetadata.BuyerCity is not null ||
Model.TypedMetadata.BuyerState is not null ||
Model.TypedMetadata.BuyerCountry is not null ||
Model.TypedMetadata.BuyerZip is not null
)
{
Buyer Information
@if (Model.TypedMetadata.BuyerName is not null)
{
Name |
@Model.TypedMetadata.BuyerName |
}
@if (Model.TypedMetadata.BuyerEmail is not null)
{
Email |
@Model.TypedMetadata.BuyerEmail
|
}
@if (Model.TypedMetadata.BuyerPhone is not null)
{
Phone |
@Model.TypedMetadata.BuyerPhone |
}
@if (Model.TypedMetadata.BuyerAddress1 is not null)
{
Address 1 |
@Model.TypedMetadata.BuyerAddress1 |
}
@if (Model.TypedMetadata.BuyerAddress2 is not null)
{
Address 2 |
@Model.TypedMetadata.BuyerAddress2 |
}
@if (Model.TypedMetadata.BuyerCity is not null)
{
City |
@Model.TypedMetadata.BuyerCity |
}
@if (Model.TypedMetadata.BuyerState is not null)
{
State |
@Model.TypedMetadata.BuyerState |
}
@if (Model.TypedMetadata.BuyerCountry is not null)
{
Country |
@Model.TypedMetadata.BuyerCountry |
}
@if (Model.TypedMetadata.BuyerZip is not null)
{
Zip |
@Model.TypedMetadata.BuyerZip |
}
}
@if (Model.PosData.Count != 0)
{
Product information
@if (!string.IsNullOrEmpty(Model.TypedMetadata.ItemCode))
{
Item code |
@Model.TypedMetadata.ItemCode |
}
@if (!string.IsNullOrEmpty(Model.TypedMetadata.ItemDesc))
{
Item Description |
@Model.TypedMetadata.ItemDesc |
}
Price |
@Model.Fiat |
Tax included |
@Model.TaxIncluded |
}