Merge branch 'main' of https://git.aycode.com/Adam/FruitBankHybridApp
This commit is contained in:
commit
575bf21da6
|
|
@ -20,7 +20,7 @@
|
||||||
<MgGridWithInfoPanel ShowInfoPanel="@IsMasterGrid">
|
<MgGridWithInfoPanel ShowInfoPanel="@IsMasterGrid">
|
||||||
<GridContent>
|
<GridContent>
|
||||||
<GridProductDto @ref="Grid" DataSource="ProductDtos" CssClass="@GridCss" AutoSaveLayoutName="GridProductDtoTemplate"
|
<GridProductDto @ref="Grid" DataSource="ProductDtos" CssClass="@GridCss" AutoSaveLayoutName="GridProductDtoTemplate"
|
||||||
Logger="_logger" SignalRClient="FruitBankSignalRClient">
|
Logger="_logger" SignalRClient="FruitBankSignalRClient" Caption="Termék(ek)">
|
||||||
<Columns>
|
<Columns>
|
||||||
<MgGridDataColumn FieldName="Id" SortIndex="0" SortOrder="GridColumnSortOrder.Ascending"
|
<MgGridDataColumn FieldName="Id" SortIndex="0" SortOrder="GridColumnSortOrder.Ascending"
|
||||||
UrlLink=@(FruitBankConstClient.BaseUrl + "/Admin/Product/Edit/{Id}") />
|
UrlLink=@(FruitBankConstClient.BaseUrl + "/Admin/Product/Edit/{Id}") />
|
||||||
|
|
|
||||||
|
|
@ -73,8 +73,8 @@ public class FruitBankGridBase<TDataItem> : MgGridBase<SignalRDataSourceObservab
|
||||||
AutoCollapseDetailRow = true;
|
AutoCollapseDetailRow = true;
|
||||||
AutoExpandAllGroupRows = false;
|
AutoExpandAllGroupRows = false;
|
||||||
|
|
||||||
PagerVisible = IsMasterGrid;
|
PagerVisible = true;//IsMasterGrid;
|
||||||
PageSize = IsMasterGrid ? (SizeMode == DevExpress.Blazor.SizeMode.Small ? 23 : 15) : 50;
|
PageSize = IsMasterGrid ? (SizeMode == DevExpress.Blazor.SizeMode.Small ? 20 : 15) : 10;
|
||||||
|
|
||||||
AllowColumnReorder = true;
|
AllowColumnReorder = true;
|
||||||
AllowGroup = IsMasterGrid;
|
AllowGroup = IsMasterGrid;
|
||||||
|
|
|
||||||
|
|
@ -22,7 +22,6 @@
|
||||||
Logger="_logger"
|
Logger="_logger"
|
||||||
CssClass="@GridCss"
|
CssClass="@GridCss"
|
||||||
ValidationEnabled="false"
|
ValidationEnabled="false"
|
||||||
ShowInfoPanel="true"
|
|
||||||
OnGridFocusedRowChanged="Grid_FocusedRowChanged">
|
OnGridFocusedRowChanged="Grid_FocusedRowChanged">
|
||||||
<Columns>
|
<Columns>
|
||||||
<DxGridDataColumn FieldName="Id" SortIndex="0" SortOrder="GridColumnSortOrder.Descending" ReadOnly="true" />
|
<DxGridDataColumn FieldName="Id" SortIndex="0" SortOrder="GridColumnSortOrder.Descending" ReadOnly="true" />
|
||||||
|
|
|
||||||
|
|
@ -23,7 +23,9 @@
|
||||||
</BeforeColumnsTemplate> *@
|
</BeforeColumnsTemplate> *@
|
||||||
|
|
||||||
<AfterColumnsTemplate Context="ctx">
|
<AfterColumnsTemplate Context="ctx">
|
||||||
@if (ctx is { IsEditMode: false, DataItem: ShippingDocument doc })
|
@if (ctx.DataItem is not ShippingDocument && ctx.DataItem is not ShippingItem) return;
|
||||||
|
|
||||||
|
@if (ctx is { DataItem: ShippingDocument doc, IsEditMode: false })
|
||||||
{
|
{
|
||||||
<table class="table table-sm table-bordered table-striped" style="margin-top: 35px;">
|
<table class="table table-sm table-bordered table-striped" style="margin-top: 35px;">
|
||||||
<colgroup>
|
<colgroup>
|
||||||
|
|
@ -68,16 +70,16 @@
|
||||||
</tr>
|
</tr>
|
||||||
</tfoot>
|
</tfoot>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
<MgLazyLoadContent @ref="_lazyContentRef"
|
|
||||||
MinHeight="800px"
|
|
||||||
RootMargin="50px"
|
|
||||||
OnContentVisible="OnPdfContainerVisibleAsync"
|
|
||||||
ContainerStyle="margin-top: 30px;">
|
|
||||||
<div id="pdfContainer" style="width: 100%; height: 800px; overflow-y: auto;">
|
|
||||||
</div>
|
|
||||||
</MgLazyLoadContent>
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
<MgLazyLoadContent @ref="_lazyContentRef"
|
||||||
|
MinHeight="800px"
|
||||||
|
RootMargin="50px"
|
||||||
|
OnContentVisible="OnPdfContainerVisibleAsync"
|
||||||
|
ContainerStyle="margin-top: 30px;">
|
||||||
|
<div id="pdfContainer" style="width: 100%; height: 800px; overflow-y: auto;">
|
||||||
|
</div>
|
||||||
|
</MgLazyLoadContent>
|
||||||
</AfterColumnsTemplate>
|
</AfterColumnsTemplate>
|
||||||
|
|
||||||
@* <FooterTemplate Context="ctx">
|
@* <FooterTemplate Context="ctx">
|
||||||
|
|
@ -108,10 +110,12 @@
|
||||||
|
|
||||||
private async Task OnDataItemChangedAsync(object? dataItem)
|
private async Task OnDataItemChangedAsync(object? dataItem)
|
||||||
{
|
{
|
||||||
|
@if (dataItem is not ShippingDocument && dataItem is not ShippingItem) return;
|
||||||
|
|
||||||
// Store the PDF to render
|
// Store the PDF to render
|
||||||
_randomPdf = _pdfFiles[Random.Shared.Next(_pdfFiles.Length)];
|
_randomPdf = _pdfFiles[Random.Shared.Next(_pdfFiles.Length)];
|
||||||
_currentPdfToRender = $"_content/FruitBankHybrid.Shared/uploads/{_randomPdf}";
|
_currentPdfToRender = $"_content/FruitBankHybrid.Shared/uploads/{_randomPdf}";
|
||||||
|
|
||||||
// If MgLazyLoadContent is already visible, render the PDF immediately
|
// If MgLazyLoadContent is already visible, render the PDF immediately
|
||||||
if (_lazyContentRef is { IsVisible: true })
|
if (_lazyContentRef is { IsVisible: true })
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -47,7 +47,9 @@ public class MgGridBase : DxGrid, IMgGridBase
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
public bool IsFullscreen => false;
|
public bool IsFullscreen => false;
|
||||||
|
|
||||||
public string LayoutStorageKey { get; }
|
public string AutomaticLayoutStorageKey => $"{AutoSaveLayoutName}_Master_AutoSave_{LoggedInModel.CustomerDto?.Id ?? 0}";
|
||||||
|
|
||||||
|
private string UserLayoutStorageKey => AutomaticLayoutStorageKey.Replace("_AutoSave_", "_UserSave_");
|
||||||
|
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
public void ToggleFullscreen()
|
public void ToggleFullscreen()
|
||||||
|
|
@ -141,8 +143,8 @@ public class MgGridBase : DxGrid, IMgGridBase
|
||||||
AutoCollapseDetailRow = true;
|
AutoCollapseDetailRow = true;
|
||||||
AutoExpandAllGroupRows = false;
|
AutoExpandAllGroupRows = false;
|
||||||
|
|
||||||
PagerVisible = IsMasterGrid;
|
PagerVisible = true; //IsMasterGrid;
|
||||||
PageSize = IsMasterGrid ? (SizeMode == DevExpress.Blazor.SizeMode.Small ? 23 : 15) : 50;
|
PageSize = IsMasterGrid ? (SizeMode == DevExpress.Blazor.SizeMode.Small ? 20 : 15) : 10;
|
||||||
|
|
||||||
AllowColumnReorder = true;
|
AllowColumnReorder = true;
|
||||||
AllowGroup = IsMasterGrid;
|
AllowGroup = IsMasterGrid;
|
||||||
|
|
@ -204,12 +206,12 @@ public class MgGridBase : DxGrid, IMgGridBase
|
||||||
|
|
||||||
async Task Grid_LayoutAutoLoading(GridPersistentLayoutEventArgs e)
|
async Task Grid_LayoutAutoLoading(GridPersistentLayoutEventArgs e)
|
||||||
{
|
{
|
||||||
e.Layout = await LoadLayoutFromLocalStorageAsync($"{AutoSaveLayoutName}_AutoSave_{LoggedInModel.CustomerDto?.Id ?? 0}");
|
e.Layout = await LoadLayoutFromLocalStorageAsync(AutomaticLayoutStorageKey);
|
||||||
}
|
}
|
||||||
|
|
||||||
private async Task Grid_LayoutAutoSaving(GridPersistentLayoutEventArgs e)
|
private async Task Grid_LayoutAutoSaving(GridPersistentLayoutEventArgs e)
|
||||||
{
|
{
|
||||||
await SaveLayoutToLocalStorageAsync(e.Layout, $"{AutoSaveLayoutName}_AutoSave_{LoggedInModel.CustomerDto?.Id ?? 0}");
|
await SaveLayoutToLocalStorageAsync(e.Layout, AutomaticLayoutStorageKey);
|
||||||
}
|
}
|
||||||
|
|
||||||
async Task<GridPersistentLayout?> LoadLayoutFromLocalStorageAsync(string localStorageKey)
|
async Task<GridPersistentLayout?> LoadLayoutFromLocalStorageAsync(string localStorageKey)
|
||||||
|
|
@ -227,6 +229,7 @@ public class MgGridBase : DxGrid, IMgGridBase
|
||||||
|
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
async Task SaveLayoutToLocalStorageAsync(GridPersistentLayout layout, string localStorageKey)
|
async Task SaveLayoutToLocalStorageAsync(GridPersistentLayout layout, string localStorageKey)
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
|
|
@ -243,54 +246,49 @@ public class MgGridBase : DxGrid, IMgGridBase
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
await JSRuntime.InvokeVoidAsync("localStorage.removeItem", AutoSaveLayoutName);
|
await JSRuntime.InvokeVoidAsync("localStorage.removeItem", AutomaticLayoutStorageKey);
|
||||||
}
|
}
|
||||||
catch
|
catch
|
||||||
{
|
{
|
||||||
// Mute exceptions for the server prerender stage
|
// Mute exceptions for the server prerender stage
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
async Task ReloadPageButton_ClickAsync()
|
|
||||||
|
/// <inheritdoc />
|
||||||
|
public async Task SaveUserLayoutAsync()
|
||||||
{
|
{
|
||||||
await JSRuntime.InvokeVoidAsync("location.reload");
|
var layout = SaveLayout();
|
||||||
|
await SaveLayoutToLocalStorageAsync(layout, UserLayoutStorageKey);
|
||||||
}
|
}
|
||||||
async Task ResetLayoutButton_ClickAsync()
|
|
||||||
|
/// <inheritdoc />
|
||||||
|
public async Task LoadUserLayoutAsync()
|
||||||
|
{
|
||||||
|
var layout = await LoadLayoutFromLocalStorageAsync(UserLayoutStorageKey);
|
||||||
|
if (layout != null)
|
||||||
|
{
|
||||||
|
LoadLayout(layout);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <inheritdoc />
|
||||||
|
public async Task ResetLayoutAsync()
|
||||||
{
|
{
|
||||||
await RemoveLayoutFromLocalStorageAsync();
|
await RemoveLayoutFromLocalStorageAsync();
|
||||||
await JSRuntime.InvokeVoidAsync("location.reload");
|
await JSRuntime.InvokeVoidAsync("location.reload");
|
||||||
}
|
}
|
||||||
//public RenderFragment AddCommandColumn()
|
|
||||||
//{
|
|
||||||
// RenderFragment columns = b =>
|
|
||||||
// {
|
|
||||||
// if (!IsMasterGrid)
|
|
||||||
// {
|
|
||||||
// b.OpenComponent(0, typeof(DxGridCommandColumn));
|
|
||||||
// b.CloseComponent();
|
|
||||||
// }
|
|
||||||
// };
|
|
||||||
|
|
||||||
// this.Columns.ApplyChain(x) = AddCommandColumn();
|
/// <inheritdoc />
|
||||||
|
public async Task<bool> HasUserLayoutAsync()
|
||||||
// return columns;
|
{
|
||||||
//}
|
try
|
||||||
|
{
|
||||||
//private RenderFragment BuildColumnsGrid()
|
var value = await JSRuntime.InvokeAsync<string>("localStorage.getItem", UserLayoutStorageKey);
|
||||||
//{
|
return !string.IsNullOrWhiteSpace(value);
|
||||||
// PropertyInfo[] props = DataSource.FirstOrDefault().GetType().GetProperties();
|
}
|
||||||
// RenderFragment columns = b =>
|
catch
|
||||||
// {
|
{
|
||||||
// foreach (var prop in props)
|
return false;
|
||||||
// {
|
}
|
||||||
// if (prop.PropertyType == typeof(string))
|
}
|
||||||
// {
|
|
||||||
|
|
||||||
// b.OpenComponent(0, typeof(DxGridDataColumn));
|
|
||||||
// b.AddAttribute(0, "FieldName", prop.Name);
|
|
||||||
// b.CloseComponent();
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// };
|
|
||||||
// return columns;
|
|
||||||
//}
|
|
||||||
}
|
}
|
||||||
|
|
@ -161,10 +161,16 @@ h1:focus {
|
||||||
.grid-chevron-up,
|
.grid-chevron-up,
|
||||||
.grid-chevron-down,
|
.grid-chevron-down,
|
||||||
.grid-column-chooser,
|
.grid-column-chooser,
|
||||||
|
.grid-layout,
|
||||||
|
.grid-layout-load,
|
||||||
|
.grid-layout-save,
|
||||||
|
.grid-layout-reset,
|
||||||
.grid-export,
|
.grid-export,
|
||||||
.grid-export-xlsx,
|
.grid-export-xlsx,
|
||||||
.grid-export-pdf,
|
.grid-export-pdf,
|
||||||
.grid-refresh {
|
.grid-refresh,
|
||||||
|
.grid-fullscreen,
|
||||||
|
.grid-fullscreen-exit {
|
||||||
display: inline-flex;
|
display: inline-flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
|
@ -178,10 +184,16 @@ h1:focus {
|
||||||
.grid-chevron-up::before,
|
.grid-chevron-up::before,
|
||||||
.grid-chevron-down::before,
|
.grid-chevron-down::before,
|
||||||
.grid-column-chooser::before,
|
.grid-column-chooser::before,
|
||||||
|
.grid-layout::before,
|
||||||
|
.grid-layout-load::before,
|
||||||
|
.grid-layout-save::before,
|
||||||
|
.grid-layout-reset::before,
|
||||||
.grid-export::before,
|
.grid-export::before,
|
||||||
.grid-export-xlsx::before,
|
.grid-export-xlsx::before,
|
||||||
.grid-export-pdf::before,
|
.grid-export-pdf::before,
|
||||||
.grid-refresh::before {
|
.grid-refresh::before,
|
||||||
|
.grid-fullscreen::before,
|
||||||
|
.grid-fullscreen-exit::before {
|
||||||
content: "";
|
content: "";
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
width: 1.25rem;
|
width: 1.25rem;
|
||||||
|
|
@ -268,6 +280,42 @@ h1:focus {
|
||||||
-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpolyline points='23 4 23 10 17 10'/%3E%3Cpolyline points='1 20 1 14 7 14'/%3E%3Cpath d='M3.51 9a9 9 0 0 1 14.85-3.36L23 10M1 14l4.64 4.36A9 9 0 0 0 20.49 15'/%3E%3C/svg%3E");
|
-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpolyline points='23 4 23 10 17 10'/%3E%3Cpolyline points='1 20 1 14 7 14'/%3E%3Cpath d='M3.51 9a9 9 0 0 1 14.85-3.36L23 10M1 14l4.64 4.36A9 9 0 0 0 20.49 15'/%3E%3C/svg%3E");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Layout icon (sliders/settings) */
|
||||||
|
.grid-layout::before {
|
||||||
|
mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cline x1='4' y1='21' x2='4' y2='14'/%3E%3Cline x1='4' y1='10' x2='4' y2='3'/%3E%3Cline x1='12' y1='21' x2='12' y2='12'/%3E%3Cline x1='12' y1='8' x2='12' y2='3'/%3E%3Cline x1='20' y1='21' x2='20' y2='16'/%3E%3Cline x1='20' y1='12' x2='20' y2='3'/%3E%3Cline x1='1' y1='14' x2='7' y2='14'/%3E%3Cline x1='9' y1='8' x2='15' y2='8'/%3E%3Cline x1='17' y1='16' x2='23' y2='16'/%3E%3C/svg%3E");
|
||||||
|
-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cline x1='4' y1='21' x2='4' y2='14'/%3E%3Cline x1='4' y1='10' x2='4' y2='3'/%3E%3Cline x1='12' y1='21' x2='12' y2='12'/%3E%3Cline x1='12' y1='8' x2='12' y2='3'/%3E%3Cline x1='20' y1='21' x2='20' y2='16'/%3E%3Cline x1='20' y1='12' x2='20' y2='3'/%3E%3Cline x1='1' y1='14' x2='7' y2='14'/%3E%3Cline x1='9' y1='8' x2='15' y2='8'/%3E%3Cline x1='17' y1='16' x2='23' y2='16'/%3E%3C/svg%3E");
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Layout Load icon (folder open) */
|
||||||
|
.grid-layout-load::before {
|
||||||
|
mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z'/%3E%3C/svg%3E");
|
||||||
|
-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z'/%3E%3C/svg%3E");
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Layout Save icon (save/floppy) */
|
||||||
|
.grid-layout-save::before {
|
||||||
|
mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M19 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11l5 5v11a2 2 0 0 1-2 2z'/%3E%3Cpolyline points='17 21 17 13 7 13 7 21'/%3E%3Cpolyline points='7 3 7 8 15 8'/%3E%3C/svg%3E");
|
||||||
|
-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M19 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11l5 5v11a2 2 0 0 1-2 2z'/%3E%3Cpolyline points='17 21 17 13 7 13 7 21'/%3E%3Cpolyline points='7 3 7 8 15 8'/%3E%3C/svg%3E");
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Layout Reset icon (rotate-ccw) */
|
||||||
|
.grid-layout-reset::before {
|
||||||
|
mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpolyline points='1 4 1 10 7 10'/%3E%3Cpath d='M3.51 15a9 9 0 1 0 2.13-9.36L1 10'/%3E%3C/svg%3E");
|
||||||
|
-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpolyline points='1 4 1 10 7 10'/%3E%3Cpath d='M3.51 15a9 9 0 1 0 2.13-9.36L1 10'/%3E%3C/svg%3E");
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Fullscreen icon (maximize) */
|
||||||
|
.grid-fullscreen::before {
|
||||||
|
mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpolyline points='15 3 21 3 21 9'/%3E%3Cpolyline points='9 21 3 21 3 15'/%3E%3Cline x1='21' y1='3' x2='14' y2='10'/%3E%3Cline x1='3' y1='21' x2='10' y2='14'/%3E%3C/svg%3E");
|
||||||
|
-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpolyline points='15 3 21 3 21 9'/%3E%3Cpolyline points='9 21 3 21 3 15'/%3E%3Cline x1='21' y1='3' x2='14' y2='10'/%3E%3Cline x1='3' y1='21' x2='10' y2='14'/%3E%3C/svg%3E");
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Fullscreen Exit icon (minimize) */
|
||||||
|
.grid-fullscreen-exit::before {
|
||||||
|
mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpolyline points='4 14 10 14 10 20'/%3E%3Cpolyline points='20 10 14 10 14 4'/%3E%3Cline x1='14' y1='10' x2='21' y2='3'/%3E%3Cline x1='3' y1='21' x2='10' y2='14'/%3E%3C/svg%3E");
|
||||||
|
-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpolyline points='4 14 10 14 10 20'/%3E%3Cpolyline points='20 10 14 10 14 4'/%3E%3Cline x1='14' y1='10' x2='21' y2='3'/%3E%3Cline x1='3' y1='21' x2='10' y2='14'/%3E%3C/svg%3E");
|
||||||
|
}
|
||||||
|
|
||||||
/* ========================================
|
/* ========================================
|
||||||
MgGrid Splitter with InfoPanel
|
MgGrid Splitter with InfoPanel
|
||||||
InfoPanel sticky via JavaScript
|
InfoPanel sticky via JavaScript
|
||||||
|
|
|
||||||
|
|
@ -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;Password=v6f_?xNfg9N1;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;Pooling=False;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;Password=v6f_?xNfg9N1;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;Pooling=False;Trust Server Certificate=True</ConnectionString>
|
||||||
</ConnectionBasedModelProvider>
|
</ConnectionBasedModelProvider>
|
||||||
</TargetModelProvider>
|
</TargetModelProvider>
|
||||||
<SchemaCompareSettingsService>
|
<SchemaCompareSettingsService>
|
||||||
|
|
@ -175,6 +175,14 @@
|
||||||
<Name>IgnorePartitionSchemes</Name>
|
<Name>IgnorePartitionSchemes</Name>
|
||||||
<Value>False</Value>
|
<Value>False</Value>
|
||||||
</PropertyElementName>
|
</PropertyElementName>
|
||||||
|
<PropertyElementName>
|
||||||
|
<Name>IgnorePreDeployScript</Name>
|
||||||
|
<Value>False</Value>
|
||||||
|
</PropertyElementName>
|
||||||
|
<PropertyElementName>
|
||||||
|
<Name>IgnorePostDeployScript</Name>
|
||||||
|
<Value>False</Value>
|
||||||
|
</PropertyElementName>
|
||||||
<PropertyElementName>
|
<PropertyElementName>
|
||||||
<Name>IgnoreTablePartitionOptions</Name>
|
<Name>IgnoreTablePartitionOptions</Name>
|
||||||
<Value>False</Value>
|
<Value>False</Value>
|
||||||
|
|
@ -503,6 +511,10 @@
|
||||||
<Name>DoNotDropExternalLibraries</Name>
|
<Name>DoNotDropExternalLibraries</Name>
|
||||||
<Value>False</Value>
|
<Value>False</Value>
|
||||||
</PropertyElementName>
|
</PropertyElementName>
|
||||||
|
<PropertyElementName>
|
||||||
|
<Name>DoNotDropExternalModels</Name>
|
||||||
|
<Value>False</Value>
|
||||||
|
</PropertyElementName>
|
||||||
<PropertyElementName>
|
<PropertyElementName>
|
||||||
<Name>DoNotDropExternalStreamingJobs</Name>
|
<Name>DoNotDropExternalStreamingJobs</Name>
|
||||||
<Value>False</Value>
|
<Value>False</Value>
|
||||||
|
|
@ -763,6 +775,10 @@
|
||||||
<Name>ExcludeExternalLibraries</Name>
|
<Name>ExcludeExternalLibraries</Name>
|
||||||
<Value>False</Value>
|
<Value>False</Value>
|
||||||
</PropertyElementName>
|
</PropertyElementName>
|
||||||
|
<PropertyElementName>
|
||||||
|
<Name>ExcludeExternalModels</Name>
|
||||||
|
<Value>False</Value>
|
||||||
|
</PropertyElementName>
|
||||||
<PropertyElementName>
|
<PropertyElementName>
|
||||||
<Name>ExcludeExternalStreamingJobs</Name>
|
<Name>ExcludeExternalStreamingJobs</Name>
|
||||||
<Value>False</Value>
|
<Value>False</Value>
|
||||||
|
|
@ -939,169 +955,153 @@
|
||||||
<Filter>Equals_Objects,Not_Supported_Deploy</Filter>
|
<Filter>Equals_Objects,Not_Supported_Deploy</Filter>
|
||||||
</SchemaCompareViewSettings>
|
</SchemaCompareViewSettings>
|
||||||
<ExcludedSourceElements>
|
<ExcludedSourceElements>
|
||||||
<SelectedItem Type="Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlUser, Microsoft.Data.Tools.Schema.Sql, Version=162.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
<SelectedItem Type="Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlUser, Microsoft.Data.Tools.Schema.Sql, Version=170.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91">
|
||||||
<Name>Anata_Development_Team</Name>
|
<Name>Anata_Development_Team</Name>
|
||||||
</SelectedItem>
|
</SelectedItem>
|
||||||
<SelectedItem Type="Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlFile, Microsoft.Data.Tools.Schema.Sql, Version=162.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
<SelectedItem Type="Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlFile, Microsoft.Data.Tools.Schema.Sql, Version=170.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91">
|
||||||
<Name>TIAM_DEV_log</Name>
|
<Name>TIAM_DEV_log</Name>
|
||||||
</SelectedItem>
|
</SelectedItem>
|
||||||
<SelectedItem Type="Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlFile, Microsoft.Data.Tools.Schema.Sql, Version=162.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
<SelectedItem Type="Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlFile, Microsoft.Data.Tools.Schema.Sql, Version=170.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91">
|
||||||
<Name>TIAM_DEV</Name>
|
<Name>TIAM_DEV</Name>
|
||||||
</SelectedItem>
|
</SelectedItem>
|
||||||
<SelectedItem Type="Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlFile, Microsoft.Data.Tools.Schema.Sql, Version=162.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
<SelectedItem Type="Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlFile, Microsoft.Data.Tools.Schema.Sql, Version=170.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91">
|
||||||
<Name>TIAM_DEVRELEASE</Name>
|
<Name>TIAM_DEVRELEASE</Name>
|
||||||
</SelectedItem>
|
</SelectedItem>
|
||||||
<SelectedItem Type="Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlFile, Microsoft.Data.Tools.Schema.Sql, Version=162.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
<SelectedItem Type="Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlFile, Microsoft.Data.Tools.Schema.Sql, Version=170.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91">
|
||||||
<Name>TIAM_DEVRELEASE_log</Name>
|
<Name>TIAM_DEVRELEASE_log</Name>
|
||||||
</SelectedItem>
|
</SelectedItem>
|
||||||
<SelectedItem Type="Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlTable, Microsoft.Data.Tools.Schema.Sql, Version=162.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
<SelectedItem Type="Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlTable, Microsoft.Data.Tools.Schema.Sql, Version=170.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91">
|
||||||
<Name>dbo</Name>
|
<Name>dbo</Name>
|
||||||
<Name>Address</Name>
|
<Name>Address</Name>
|
||||||
</SelectedItem>
|
</SelectedItem>
|
||||||
<SelectedItem Type="Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlFile, Microsoft.Data.Tools.Schema.Sql, Version=162.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
<SelectedItem Type="Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlFile, Microsoft.Data.Tools.Schema.Sql, Version=170.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91">
|
||||||
<Name>FruitBank_Test_log</Name>
|
<Name>FruitBank_Test_log</Name>
|
||||||
</SelectedItem>
|
</SelectedItem>
|
||||||
<SelectedItem Type="Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlFile, Microsoft.Data.Tools.Schema.Sql, Version=162.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
<SelectedItem Type="Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlFile, Microsoft.Data.Tools.Schema.Sql, Version=170.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91">
|
||||||
<Name>FruitBank_Test</Name>
|
<Name>FruitBank_Test</Name>
|
||||||
</SelectedItem>
|
</SelectedItem>
|
||||||
<SelectedItem Type="Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlDatabaseOptions, Microsoft.Data.Tools.Schema.Sql, Version=162.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
<SelectedItem Type="Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlDatabaseOptions, Microsoft.Data.Tools.Schema.Sql, Version=170.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91">
|
||||||
<Name></Name>
|
<Name></Name>
|
||||||
</SelectedItem>
|
</SelectedItem>
|
||||||
<SelectedItem Type="Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlTable, Microsoft.Data.Tools.Schema.Sql, Version=162.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
<SelectedItem Type="Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlDefaultConstraint, Microsoft.Data.Tools.Schema.Sql, Version=170.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91">
|
||||||
<Name>dbo</Name>
|
|
||||||
<Name>fbOrderItemPallet</Name>
|
|
||||||
</SelectedItem>
|
|
||||||
<SelectedItem Type="Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlDefaultConstraint, Microsoft.Data.Tools.Schema.Sql, Version=162.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
|
||||||
<Name>dbo</Name>
|
<Name>dbo</Name>
|
||||||
<Name>DF_fbOrderItemPallet_IsValidated</Name>
|
<Name>DF_fbOrderItemPallet_IsValidated</Name>
|
||||||
</SelectedItem>
|
</SelectedItem>
|
||||||
<SelectedItem Type="Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlIndex, Microsoft.Data.Tools.Schema.Sql, Version=162.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
<SelectedItem Type="Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlIndex, Microsoft.Data.Tools.Schema.Sql, Version=170.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91">
|
||||||
<Name>dbo</Name>
|
<Name>dbo</Name>
|
||||||
<Name>fbOrderItemPallet</Name>
|
<Name>fbOrderItemPallet</Name>
|
||||||
<Name>IX_fbOrderItemPallet_OrderItemId</Name>
|
<Name>IX_fbOrderItemPallet_OrderItemId</Name>
|
||||||
</SelectedItem>
|
</SelectedItem>
|
||||||
<SelectedItem Type="Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlTable, Microsoft.Data.Tools.Schema.Sql, Version=162.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
|
||||||
<Name>dbo</Name>
|
|
||||||
<Name>fbShipping</Name>
|
|
||||||
</SelectedItem>
|
|
||||||
</ExcludedSourceElements>
|
</ExcludedSourceElements>
|
||||||
<ExcludedTargetElements>
|
<ExcludedTargetElements>
|
||||||
<SelectedItem Type="Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlTable, Microsoft.Data.Tools.Schema.Sql, Version=162.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
<SelectedItem Type="Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlTable, Microsoft.Data.Tools.Schema.Sql, Version=170.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91">
|
||||||
<Name>dbo</Name>
|
<Name>dbo</Name>
|
||||||
<Name>AvalaraItemClassification</Name>
|
<Name>AvalaraItemClassification</Name>
|
||||||
</SelectedItem>
|
</SelectedItem>
|
||||||
<SelectedItem Type="Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlPrimaryKeyConstraint, Microsoft.Data.Tools.Schema.Sql, Version=162.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
<SelectedItem Type="Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlPrimaryKeyConstraint, Microsoft.Data.Tools.Schema.Sql, Version=170.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91">
|
||||||
<Name>dbo</Name>
|
<Name>dbo</Name>
|
||||||
<Name>PK_AvalaraItemClassification</Name>
|
<Name>PK_AvalaraItemClassification</Name>
|
||||||
</SelectedItem>
|
</SelectedItem>
|
||||||
<SelectedItem Type="Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlTable, Microsoft.Data.Tools.Schema.Sql, Version=162.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
<SelectedItem Type="Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlTable, Microsoft.Data.Tools.Schema.Sql, Version=170.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91">
|
||||||
<Name>dbo</Name>
|
<Name>dbo</Name>
|
||||||
<Name>FacebookPixelConfiguration</Name>
|
<Name>FacebookPixelConfiguration</Name>
|
||||||
</SelectedItem>
|
</SelectedItem>
|
||||||
<SelectedItem Type="Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlPrimaryKeyConstraint, Microsoft.Data.Tools.Schema.Sql, Version=162.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
<SelectedItem Type="Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlPrimaryKeyConstraint, Microsoft.Data.Tools.Schema.Sql, Version=170.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91">
|
||||||
<Name>dbo</Name>
|
<Name>dbo</Name>
|
||||||
<Name>PK_FacebookPixelConfiguration</Name>
|
<Name>PK_FacebookPixelConfiguration</Name>
|
||||||
</SelectedItem>
|
</SelectedItem>
|
||||||
<SelectedItem Type="Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlTable, Microsoft.Data.Tools.Schema.Sql, Version=162.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
<SelectedItem Type="Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlTable, Microsoft.Data.Tools.Schema.Sql, Version=170.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91">
|
||||||
<Name>dbo</Name>
|
<Name>dbo</Name>
|
||||||
<Name>GoogleAuthenticatorRecord</Name>
|
<Name>GoogleAuthenticatorRecord</Name>
|
||||||
</SelectedItem>
|
</SelectedItem>
|
||||||
<SelectedItem Type="Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlPrimaryKeyConstraint, Microsoft.Data.Tools.Schema.Sql, Version=162.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
<SelectedItem Type="Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlPrimaryKeyConstraint, Microsoft.Data.Tools.Schema.Sql, Version=170.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91">
|
||||||
<Name>dbo</Name>
|
<Name>dbo</Name>
|
||||||
<Name>PK_GoogleAuthenticatorRecord</Name>
|
<Name>PK_GoogleAuthenticatorRecord</Name>
|
||||||
</SelectedItem>
|
</SelectedItem>
|
||||||
<SelectedItem Type="Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlTable, Microsoft.Data.Tools.Schema.Sql, Version=162.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
<SelectedItem Type="Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlTable, Microsoft.Data.Tools.Schema.Sql, Version=170.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91">
|
||||||
<Name>dbo</Name>
|
<Name>dbo</Name>
|
||||||
<Name>TaxTransactionLog</Name>
|
<Name>TaxTransactionLog</Name>
|
||||||
</SelectedItem>
|
</SelectedItem>
|
||||||
<SelectedItem Type="Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlPrimaryKeyConstraint, Microsoft.Data.Tools.Schema.Sql, Version=162.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
<SelectedItem Type="Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlPrimaryKeyConstraint, Microsoft.Data.Tools.Schema.Sql, Version=170.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91">
|
||||||
<Name>dbo</Name>
|
<Name>dbo</Name>
|
||||||
<Name>PK_TaxTransactionLog</Name>
|
<Name>PK_TaxTransactionLog</Name>
|
||||||
</SelectedItem>
|
</SelectedItem>
|
||||||
<SelectedItem Type="Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlView, Microsoft.Data.Tools.Schema.Sql, Version=162.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
<SelectedItem Type="Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlView, Microsoft.Data.Tools.Schema.Sql, Version=170.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91">
|
||||||
<Name>dbo</Name>
|
<Name>dbo</Name>
|
||||||
<Name>vOrder</Name>
|
<Name>vOrder</Name>
|
||||||
</SelectedItem>
|
</SelectedItem>
|
||||||
<SelectedItem Type="Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlExtendedProperty, Microsoft.Data.Tools.Schema.Sql, Version=162.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
<SelectedItem Type="Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlExtendedProperty, Microsoft.Data.Tools.Schema.Sql, Version=170.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91">
|
||||||
<Name>SqlView</Name>
|
<Name>SqlView</Name>
|
||||||
<Name>dbo</Name>
|
<Name>dbo</Name>
|
||||||
<Name>vOrder</Name>
|
<Name>vOrder</Name>
|
||||||
<Name>MS_DiagramPane1</Name>
|
<Name>MS_DiagramPane1</Name>
|
||||||
</SelectedItem>
|
</SelectedItem>
|
||||||
<SelectedItem Type="Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlExtendedProperty, Microsoft.Data.Tools.Schema.Sql, Version=162.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
<SelectedItem Type="Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlExtendedProperty, Microsoft.Data.Tools.Schema.Sql, Version=170.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91">
|
||||||
<Name>SqlView</Name>
|
<Name>SqlView</Name>
|
||||||
<Name>dbo</Name>
|
<Name>dbo</Name>
|
||||||
<Name>vOrder</Name>
|
<Name>vOrder</Name>
|
||||||
<Name>MS_DiagramPaneCount</Name>
|
<Name>MS_DiagramPaneCount</Name>
|
||||||
</SelectedItem>
|
</SelectedItem>
|
||||||
<SelectedItem Type="Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlView, Microsoft.Data.Tools.Schema.Sql, Version=162.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
<SelectedItem Type="Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlView, Microsoft.Data.Tools.Schema.Sql, Version=170.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91">
|
||||||
<Name>dbo</Name>
|
<Name>dbo</Name>
|
||||||
<Name>vOrderItem</Name>
|
<Name>vOrderItem</Name>
|
||||||
</SelectedItem>
|
</SelectedItem>
|
||||||
<SelectedItem Type="Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlExtendedProperty, Microsoft.Data.Tools.Schema.Sql, Version=162.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
<SelectedItem Type="Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlExtendedProperty, Microsoft.Data.Tools.Schema.Sql, Version=170.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91">
|
||||||
<Name>SqlView</Name>
|
<Name>SqlView</Name>
|
||||||
<Name>dbo</Name>
|
<Name>dbo</Name>
|
||||||
<Name>vOrderItem</Name>
|
<Name>vOrderItem</Name>
|
||||||
<Name>MS_DiagramPane1</Name>
|
<Name>MS_DiagramPane1</Name>
|
||||||
</SelectedItem>
|
</SelectedItem>
|
||||||
<SelectedItem Type="Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlExtendedProperty, Microsoft.Data.Tools.Schema.Sql, Version=162.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
<SelectedItem Type="Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlExtendedProperty, Microsoft.Data.Tools.Schema.Sql, Version=170.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91">
|
||||||
<Name>SqlView</Name>
|
<Name>SqlView</Name>
|
||||||
<Name>dbo</Name>
|
<Name>dbo</Name>
|
||||||
<Name>vOrderItem</Name>
|
<Name>vOrderItem</Name>
|
||||||
<Name>MS_DiagramPaneCount</Name>
|
<Name>MS_DiagramPaneCount</Name>
|
||||||
</SelectedItem>
|
</SelectedItem>
|
||||||
<SelectedItem Type="Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlView, Microsoft.Data.Tools.Schema.Sql, Version=162.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
<SelectedItem Type="Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlView, Microsoft.Data.Tools.Schema.Sql, Version=170.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91">
|
||||||
<Name>dbo</Name>
|
<Name>dbo</Name>
|
||||||
<Name>vOrderItemPallet</Name>
|
<Name>vOrderItemPallet</Name>
|
||||||
</SelectedItem>
|
</SelectedItem>
|
||||||
<SelectedItem Type="Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlExtendedProperty, Microsoft.Data.Tools.Schema.Sql, Version=162.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
<SelectedItem Type="Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlExtendedProperty, Microsoft.Data.Tools.Schema.Sql, Version=170.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91">
|
||||||
<Name>SqlView</Name>
|
<Name>SqlView</Name>
|
||||||
<Name>dbo</Name>
|
<Name>dbo</Name>
|
||||||
<Name>vOrderItemPallet</Name>
|
<Name>vOrderItemPallet</Name>
|
||||||
<Name>MS_DiagramPane1</Name>
|
<Name>MS_DiagramPane1</Name>
|
||||||
</SelectedItem>
|
</SelectedItem>
|
||||||
<SelectedItem Type="Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlExtendedProperty, Microsoft.Data.Tools.Schema.Sql, Version=162.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
<SelectedItem Type="Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlExtendedProperty, Microsoft.Data.Tools.Schema.Sql, Version=170.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91">
|
||||||
<Name>SqlView</Name>
|
<Name>SqlView</Name>
|
||||||
<Name>dbo</Name>
|
<Name>dbo</Name>
|
||||||
<Name>vOrderItemPallet</Name>
|
<Name>vOrderItemPallet</Name>
|
||||||
<Name>MS_DiagramPaneCount</Name>
|
<Name>MS_DiagramPaneCount</Name>
|
||||||
</SelectedItem>
|
</SelectedItem>
|
||||||
<SelectedItem Type="Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlView, Microsoft.Data.Tools.Schema.Sql, Version=162.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
<SelectedItem Type="Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlView, Microsoft.Data.Tools.Schema.Sql, Version=170.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91">
|
||||||
<Name>dbo</Name>
|
<Name>dbo</Name>
|
||||||
<Name>vProduct</Name>
|
<Name>vProduct</Name>
|
||||||
</SelectedItem>
|
</SelectedItem>
|
||||||
<SelectedItem Type="Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlExtendedProperty, Microsoft.Data.Tools.Schema.Sql, Version=162.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
<SelectedItem Type="Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlExtendedProperty, Microsoft.Data.Tools.Schema.Sql, Version=170.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91">
|
||||||
<Name>SqlView</Name>
|
<Name>SqlView</Name>
|
||||||
<Name>dbo</Name>
|
<Name>dbo</Name>
|
||||||
<Name>vProduct</Name>
|
<Name>vProduct</Name>
|
||||||
<Name>MS_DiagramPane1</Name>
|
<Name>MS_DiagramPane1</Name>
|
||||||
</SelectedItem>
|
</SelectedItem>
|
||||||
<SelectedItem Type="Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlExtendedProperty, Microsoft.Data.Tools.Schema.Sql, Version=162.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
<SelectedItem Type="Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlExtendedProperty, Microsoft.Data.Tools.Schema.Sql, Version=170.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91">
|
||||||
<Name>SqlView</Name>
|
<Name>SqlView</Name>
|
||||||
<Name>dbo</Name>
|
<Name>dbo</Name>
|
||||||
<Name>vProduct</Name>
|
<Name>vProduct</Name>
|
||||||
<Name>MS_DiagramPaneCount</Name>
|
<Name>MS_DiagramPaneCount</Name>
|
||||||
</SelectedItem>
|
</SelectedItem>
|
||||||
<SelectedItem Type="Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlTable, Microsoft.Data.Tools.Schema.Sql, Version=162.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
<SelectedItem Type="Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlTable, Microsoft.Data.Tools.Schema.Sql, Version=170.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91">
|
||||||
<Name>dbo</Name>
|
<Name>dbo</Name>
|
||||||
<Name>Address</Name>
|
<Name>Address</Name>
|
||||||
</SelectedItem>
|
</SelectedItem>
|
||||||
<SelectedItem Type="Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlDatabaseOptions, Microsoft.Data.Tools.Schema.Sql, Version=162.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
<SelectedItem Type="Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlDatabaseOptions, Microsoft.Data.Tools.Schema.Sql, Version=170.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91">
|
||||||
<Name></Name>
|
<Name></Name>
|
||||||
</SelectedItem>
|
</SelectedItem>
|
||||||
<SelectedItem Type="Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlTable, Microsoft.Data.Tools.Schema.Sql, Version=162.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
<SelectedItem Type="Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlDefaultConstraint, Microsoft.Data.Tools.Schema.Sql, Version=170.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91">
|
||||||
<Name>dbo</Name>
|
|
||||||
<Name>fbOrderItemPallet</Name>
|
|
||||||
</SelectedItem>
|
|
||||||
<SelectedItem Type="Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlDefaultConstraint, Microsoft.Data.Tools.Schema.Sql, Version=162.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
|
||||||
<Name>dbo</Name>
|
<Name>dbo</Name>
|
||||||
<Name>DF_fbOrderItemPallet_IsAudited</Name>
|
<Name>DF_fbOrderItemPallet_IsAudited</Name>
|
||||||
</SelectedItem>
|
</SelectedItem>
|
||||||
<SelectedItem Type="Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlTable, Microsoft.Data.Tools.Schema.Sql, Version=162.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
<SelectedItem Type="Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlDefaultConstraint, Microsoft.Data.Tools.Schema.Sql, Version=170.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91">
|
||||||
<Name>dbo</Name>
|
|
||||||
<Name>fbShipping</Name>
|
|
||||||
</SelectedItem>
|
|
||||||
<SelectedItem Type="Microsoft.Data.Tools.Schema.Sql.SchemaModel.SqlDefaultConstraint, Microsoft.Data.Tools.Schema.Sql, Version=162.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
|
||||||
<Name>dbo</Name>
|
<Name>dbo</Name>
|
||||||
<Name>DF_fbShipping_IsAllMeasured</Name>
|
<Name>DF_fbShipping_IsAllMeasured</Name>
|
||||||
</SelectedItem>
|
</SelectedItem>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue