727 lines
39 KiB
XML
727 lines
39 KiB
XML
<UserControl x:Class="DM_Weight.Views.AddReportDate"
|
|
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
|
|
xmlns:pagination="clr-namespace:DM_Weight.Components.pagination"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:local="clr-namespace:DM_Weight.Views"
|
|
xmlns:i="http://schemas.microsoft.com/xaml/behaviors"
|
|
xmlns:prism="http://prismlibrary.com/"
|
|
mc:Ignorable="d" >
|
|
<Grid>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="9*" />
|
|
<!--<ColumnDefinition Width="5*" />-->
|
|
</Grid.ColumnDefinitions>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="5*"/>
|
|
<RowDefinition Height="3*"/>
|
|
</Grid.RowDefinitions>
|
|
<Grid Margin="0 6 0 6" Grid.Row="0">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="1.5*" />
|
|
<ColumnDefinition Width="1.5*" />
|
|
<ColumnDefinition Width="2*" />
|
|
<ColumnDefinition Width="5*"/>
|
|
</Grid.ColumnDefinitions>
|
|
<DatePicker
|
|
Grid.Column="0"
|
|
SelectedDate="{Binding StartDate, TargetNullValue=''}"
|
|
Margin="6 0 0 0"
|
|
materialDesign:HintAssist.Hint="开始时间"
|
|
Style="{StaticResource MaterialDesignOutlinedDatePicker}"
|
|
/>
|
|
<DatePicker
|
|
Grid.Column="1"
|
|
SelectedDate="{Binding EndDate}"
|
|
Margin="6 0 0 0"
|
|
materialDesign:HintAssist.Hint="结束时间"
|
|
Style="{StaticResource MaterialDesignOutlinedDatePicker}"
|
|
/>
|
|
<StackPanel Grid.Column="3" Orientation="Horizontal" HorizontalAlignment="Right">
|
|
<Button
|
|
Margin="0 0 6 0"
|
|
VerticalAlignment="Center"
|
|
Style="{StaticResource MaterialDesignOutlinedLightButton}"
|
|
ToolTip="导出" Command="{Binding Download}">
|
|
<StackPanel Orientation="Horizontal">
|
|
<materialDesign:PackIcon Kind="download" />
|
|
<TextBlock Text="导出报表" />
|
|
</StackPanel>
|
|
</Button>
|
|
</StackPanel>
|
|
</Grid>
|
|
<!--<Grid Grid.Column="0">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition />
|
|
<RowDefinition Height="Auto" />
|
|
</Grid.RowDefinitions>
|
|
|
|
<Grid Margin="0 6 0 6" Grid.Row="0">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="110" />
|
|
<ColumnDefinition Width="180" />
|
|
<ColumnDefinition />
|
|
</Grid.ColumnDefinitions>
|
|
<ComboBox
|
|
Grid.Column="0"
|
|
Margin="6 0 0 0"
|
|
Style="{StaticResource MaterialDesignOutlinedComboBox}"
|
|
SelectedItem="{Binding SelectedItem}"
|
|
DisplayMemberPath="Name"
|
|
ItemsSource="{Binding Selects}"
|
|
/>
|
|
<TextBox
|
|
Grid.Column="1"
|
|
Text="{Binding SearchValue}"
|
|
materialDesign:HintAssist.Hint="{Binding SelectedItem.Name}"
|
|
Margin="6 0 0 0"
|
|
Style="{StaticResource MaterialDesignOutlinedTextBox}"/>
|
|
|
|
<StackPanel Grid.Column="2" Orientation="Horizontal" HorizontalAlignment="Right">
|
|
|
|
<Button
|
|
Margin="0 0 6 0"
|
|
VerticalAlignment="Center"
|
|
Style="{StaticResource MaterialDesignOutlinedLightButton}"
|
|
ToolTip="刷新" Command="{Binding Query}">
|
|
<materialDesign:PackIcon
|
|
Kind="Refresh" />
|
|
</Button>
|
|
</StackPanel>
|
|
|
|
|
|
</Grid>
|
|
<ListView
|
|
Grid.Row="1"
|
|
ItemsSource="{Binding DrugInfos}"
|
|
SelectedItem="{Binding SelectedDrug}"
|
|
materialDesign:ListViewAssist.HeaderRowBackground="#31ccec"
|
|
materialDesign:DataGridAssist.ColumnHeaderPadding="10"
|
|
materialDesign:ListViewAssist.ListViewItemPadding="13">
|
|
<ListView.Resources>
|
|
<Style TargetType="{x:Type GridViewColumnHeader}" BasedOn="{StaticResource {x:Type GridViewColumnHeader}}">
|
|
<Setter Property="Foreground" Value="White" />
|
|
</Style>
|
|
</ListView.Resources>
|
|
<ListView.View>
|
|
<GridView>
|
|
-->
|
|
<!--<GridViewColumn
|
|
Header="药品编码"
|
|
DisplayMemberBinding="{Binding DrugId}"/>-->
|
|
<!--
|
|
<GridViewColumn
|
|
Header="药品名称"
|
|
DisplayMemberBinding="{Binding DrugName}"/>
|
|
<GridViewColumn
|
|
Header="规格"
|
|
DisplayMemberBinding="{Binding DrugSpec}"
|
|
/>
|
|
<GridViewColumn
|
|
Header="厂家"
|
|
DisplayMemberBinding="{Binding Manufactory}"
|
|
/>
|
|
<GridViewColumn
|
|
Header="拼音码"
|
|
DisplayMemberBinding="{Binding PyCode}"
|
|
/>
|
|
<GridViewColumn
|
|
Header="单位"
|
|
DisplayMemberBinding="{Binding PackUnit}"
|
|
/>
|
|
<GridViewColumn
|
|
Header="基数"
|
|
DisplayMemberBinding="{Binding drugBase.BaseQuantity}"
|
|
/>
|
|
</GridView>
|
|
</ListView.View>
|
|
</ListView>
|
|
<pagination:Pagination Grid.Row="2"
|
|
CurrentPage="{Binding PageNum}"
|
|
PageSize="{Binding PageSize}"
|
|
TotalPages="{Binding TotalCount}"
|
|
InfoTextIsEnabel="True"
|
|
/>
|
|
</Grid>-->
|
|
<!--<materialDesign:Card Grid.Column="1" Margin="6" Grid.Row="1">
|
|
<TabControl HorizontalContentAlignment="Center" Style="{StaticResource MaterialDesignFilledTabControl}">
|
|
<TabItem Header="录入报表数据">
|
|
<Grid Margin="6">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="Auto"/>
|
|
</Grid.RowDefinitions>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="3*"/>
|
|
<ColumnDefinition Width="3*"/>
|
|
<ColumnDefinition Width="3*"/>
|
|
</Grid.ColumnDefinitions>
|
|
<ComboBox
|
|
Margin="6" Grid.ColumnSpan="3"
|
|
materialDesign:HintAssist.Hint="药品名称/拼音码"
|
|
Style="{StaticResource MaterialDesignOutlinedComboBox}"
|
|
IsEditable="True"
|
|
ItemsSource="{Binding DrugInfos}"
|
|
SelectedItem="{Binding SelectedDrug}"
|
|
DisplayMemberPath="drug_name_spec" IsEnabled="True" IsTextSearchEnabled="False" KeyUp="ComboBox_KeyUp"
|
|
/>
|
|
<DatePicker
|
|
Grid.Row="1" Grid.Column="0"
|
|
SelectedDate="{Binding RejReport.SendDate,UpdateSourceTrigger=PropertyChanged}"
|
|
SelectedDateFormat="Short"
|
|
Margin="6 0 0 0"
|
|
materialDesign:HintAssist.Hint="发药时间"
|
|
Style="{StaticResource MaterialDesignOutlinedDatePicker}" />
|
|
<ComboBox
|
|
Margin="8 8 8 0"
|
|
Grid.Row="1" Grid.Column="1"
|
|
Style="{StaticResource MaterialDesignOutlinedComboBox}"
|
|
materialDesign:HintAssist.Hint="发药者"
|
|
ItemsSource="{Binding SendUserList}"
|
|
SelectedValue="{Binding SendUser}"
|
|
DisplayMemberPath="Nickname"/>
|
|
<ComboBox
|
|
Margin="8 8 8 0"
|
|
Grid.Row="1" Grid.Column="2"
|
|
Style="{StaticResource MaterialDesignOutlinedComboBox}"
|
|
materialDesign:HintAssist.Hint="领药者"
|
|
ItemsSource="{Binding SendUserCheckList}"
|
|
SelectedValue="{Binding SendUserCheck}"
|
|
DisplayMemberPath="Nickname"/>
|
|
<TextBox
|
|
Grid.Row="2" Grid.Column="0"
|
|
Text="{Binding RejReport.RealNum, UpdateSourceTrigger=PropertyChanged}"
|
|
materialDesign:HintAssist.Hint="实发数"
|
|
Margin="12 6"
|
|
Style="{StaticResource MaterialDesignOutlinedTextBox}"/>
|
|
|
|
-->
|
|
<!--<StackPanel Grid.Row="5" Orientation="Horizontal" HorizontalAlignment="Center" Margin="12">
|
|
<Button Margin="6" Content="保存" Command="{Binding AddSendReportDateCommand}" />
|
|
-->
|
|
<!--<Button Margin="6" Content="修改" Command="{Binding EditDrugCommand}"/>-->
|
|
<!--
|
|
</StackPanel>-->
|
|
<!--
|
|
|
|
|
|
<DatePicker
|
|
Grid.Row="3" Grid.Column="0"
|
|
SelectedDate="{Binding RejReport.ReturnTime,UpdateSourceTrigger=PropertyChanged}"
|
|
SelectedDateFormat="Short"
|
|
Margin="6 0 0 0"
|
|
materialDesign:HintAssist.Hint="还药时间"
|
|
Style="{StaticResource MaterialDesignOutlinedDatePicker}" />
|
|
<ComboBox
|
|
Margin="8 8 8 0"
|
|
Grid.Row="3" Grid.Column="1"
|
|
Style="{StaticResource MaterialDesignOutlinedComboBox}"
|
|
materialDesign:HintAssist.Hint="还药者"
|
|
ItemsSource="{Binding ReturnUserList}"
|
|
SelectedValue="{Binding ReturnUser}"
|
|
DisplayMemberPath="Nickname"/>
|
|
<ComboBox
|
|
Margin="8 8 8 0"
|
|
Grid.Row="3" Grid.Column="2"
|
|
Style="{StaticResource MaterialDesignOutlinedComboBox}"
|
|
materialDesign:HintAssist.Hint="接收者"
|
|
ItemsSource="{Binding ReturnUserCheckList}"
|
|
SelectedValue="{Binding ReturnUserCheck}"
|
|
DisplayMemberPath="Nickname"/>
|
|
<TextBox
|
|
Grid.Row="4" Grid.Column="0"
|
|
Text="{Binding RejReport.InfactNum, UpdateSourceTrigger=PropertyChanged}"
|
|
materialDesign:HintAssist.Hint="实物数"
|
|
Margin="12 6"
|
|
Style="{StaticResource MaterialDesignOutlinedTextBox}"/>
|
|
<TextBox
|
|
Grid.Row="4" Grid.Column="1"
|
|
Text="{Binding RejReport.EmptyNum, UpdateSourceTrigger=PropertyChanged}"
|
|
materialDesign:HintAssist.Hint="空安瓿"
|
|
Margin="12 6"
|
|
Style="{StaticResource MaterialDesignOutlinedTextBox}"/>
|
|
|
|
-->
|
|
<!--<StackPanel Grid.Row="6" Orientation="Horizontal" HorizontalAlignment="Center" Margin="12">
|
|
<Button Margin="6" Content="保存" Command="{Binding AddReturnReportDateCommand}" />
|
|
-->
|
|
<!--<Button Margin="6" Content="修改" Command="{Binding EditDrugCommand}"/>-->
|
|
<!--
|
|
</StackPanel>-->
|
|
|
|
<!--<DatePicker
|
|
Grid.Row="4" Grid.Column="2"
|
|
SelectedDate="{Binding RejReport.ReturnTime,UpdateSourceTrigger=PropertyChanged}"
|
|
SelectedDateFormat="Short"
|
|
Margin="6 0 0 0"
|
|
materialDesign:HintAssist.Hint="日期"
|
|
Style="{StaticResource MaterialDesignOutlinedDatePicker}" />-->
|
|
<!--
|
|
<ComboBox
|
|
Margin="8 8 8 0"
|
|
Grid.Row="5" Grid.Column="0"
|
|
Style="{StaticResource MaterialDesignOutlinedComboBox}"
|
|
materialDesign:HintAssist.Hint="补充者"
|
|
ItemsSource="{Binding AddUserList}"
|
|
SelectedValue="{Binding AddUser}"
|
|
DisplayMemberPath="Nickname"/>
|
|
<ComboBox
|
|
Margin="8 8 8 0"
|
|
Grid.Row="5" Grid.Column="1"
|
|
Style="{StaticResource MaterialDesignOutlinedComboBox}"
|
|
materialDesign:HintAssist.Hint="核对者"
|
|
ItemsSource="{Binding AddUserCheckList}"
|
|
SelectedValue="{Binding AddUserCheck}"
|
|
DisplayMemberPath="Nickname"/>
|
|
<TextBox
|
|
Grid.Row="5" Grid.Column="2"
|
|
Text="{Binding RejReport.UseBottle, UpdateSourceTrigger=PropertyChanged}"
|
|
materialDesign:HintAssist.Hint="安瓿"
|
|
Margin="12 6"
|
|
Style="{StaticResource MaterialDesignOutlinedTextBox}"/>
|
|
<TextBox
|
|
Grid.Row="6" Grid.Column="0"
|
|
Text="{Binding RejReport.UseOrderNo, UpdateSourceTrigger=PropertyChanged}"
|
|
materialDesign:HintAssist.Hint="处方"
|
|
Margin="12 6"
|
|
Style="{StaticResource MaterialDesignOutlinedTextBox}"/>
|
|
<TextBox
|
|
Grid.Row="6" Grid.Column="1"
|
|
Text="{Binding RejReport.UseAdd, UpdateSourceTrigger=PropertyChanged}"
|
|
materialDesign:HintAssist.Hint="补充"
|
|
Margin="12 6"
|
|
Style="{StaticResource MaterialDesignOutlinedTextBox}"/>
|
|
<StackPanel Grid.Row="10" Grid.ColumnSpan="3" Orientation="Horizontal" HorizontalAlignment="Center" Margin="12">
|
|
<Button Margin="7" Content="保存" Command="{Binding AddReportDateCommand}" />
|
|
-->
|
|
<!--<Button Margin="6" Content="修改" Command="{Binding EditDrugCommand}"/>-->
|
|
<!--
|
|
</StackPanel>
|
|
</Grid>
|
|
</TabItem>
|
|
</TabControl>
|
|
</materialDesign:Card>-->
|
|
|
|
<!--<ScrollViewer Grid.Row="1" Margin="6">
|
|
<ItemsControl
|
|
ItemsSource="{Binding DrugInfos}"
|
|
Grid.IsSharedSizeScope="True">
|
|
<ItemsControl.ItemTemplate>
|
|
<DataTemplate>
|
|
<Grid>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="200"/>
|
|
<ColumnDefinition/>
|
|
</Grid.ColumnDefinitions>
|
|
<Border BorderBrush="White" BorderThickness="1">
|
|
<StackPanel Orientation="Horizontal" Background="#31ccec" Grid.Column="0">
|
|
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition/>
|
|
<RowDefinition/>
|
|
<RowDefinition/>
|
|
</Grid.RowDefinitions>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="200"/>
|
|
</Grid.ColumnDefinitions>
|
|
<TextBlock TextWrapping="Wrap" Grid.Row="0" HorizontalAlignment="Center" VerticalAlignment="Center" Padding="0 10 0 0 " Text="{Binding DrugName}"/>
|
|
|
|
<TextBlock TextWrapping="Wrap" Grid.Row="1" HorizontalAlignment="Center" VerticalAlignment="Center" Padding="0 0 0 1 " Text="{Binding DrugSpec}"/>
|
|
|
|
</Grid>
|
|
|
|
|
|
</StackPanel>
|
|
</Border>
|
|
<DataGrid
|
|
Margin="0"
|
|
Grid.Column="1"
|
|
materialDesign:DataGridAssist.ColumnHeaderPadding="15"
|
|
ItemsSource="{Binding report}"
|
|
materialDesign:DataGridAssist.EnableEditBoxAssist="False"
|
|
materialDesign:DataGridAssist.CellPadding="13"
|
|
SelectionUnit="Cell"
|
|
CanUserAddRows="False"
|
|
AutoGenerateColumns="False">
|
|
<DataGrid.Resources>
|
|
<Style TargetType="{x:Type DataGridColumnHeader}" BasedOn="{StaticResource MaterialDesignDataGridColumnHeader}">
|
|
<Setter Property="Background" Value="#31ccec" />
|
|
<Setter Property="Foreground" Value="white" />
|
|
<Setter Property="Height" Value="56" />
|
|
<Setter Property="BorderBrush" Value="white"/>
|
|
<Setter Property="BorderThickness" Value="0.6"/>
|
|
<Setter Property="HorizontalContentAlignment" Value="Center"/>
|
|
|
|
</Style>
|
|
<Style TargetType="{x:Type DataGridCell}" BasedOn="{StaticResource MaterialDesignDataGridCell}">
|
|
<Style.Triggers>
|
|
<Trigger Property="IsReadOnly" Value="True">
|
|
<Setter Property="BorderBrush" Value="Transparent" />
|
|
<Setter Property="HorizontalAlignment" Value="Center"/>
|
|
</Trigger>
|
|
</Style.Triggers>
|
|
</Style>
|
|
</DataGrid.Resources>
|
|
<DataGrid.Columns>
|
|
<DataGridTemplateColumn Width="100" Header="实发数">
|
|
<DataGridTemplateColumn.CellTemplate>
|
|
<DataTemplate>
|
|
<TextBox Style="{StaticResource MaterialDesignDataGridTextColumnEditingStyle}">
|
|
<TextBox.Text>
|
|
<Binding Path="RealNum" Mode="TwoWay" UpdateSourceTrigger="PropertyChanged">
|
|
|
|
</Binding>
|
|
</TextBox.Text>
|
|
</TextBox>
|
|
</DataTemplate>
|
|
</DataGridTemplateColumn.CellTemplate>
|
|
</DataGridTemplateColumn>
|
|
|
|
<DataGridTemplateColumn Width="100" Header="实物数">
|
|
<DataGridTemplateColumn.CellTemplate>
|
|
<DataTemplate>
|
|
<TextBox Style="{StaticResource MaterialDesignDataGridTextColumnEditingStyle}">
|
|
<TextBox.Text>
|
|
<Binding Path="InfactNum" Mode="TwoWay" UpdateSourceTrigger="PropertyChanged">
|
|
|
|
</Binding>
|
|
</TextBox.Text>
|
|
</TextBox>
|
|
</DataTemplate>
|
|
</DataGridTemplateColumn.CellTemplate>
|
|
</DataGridTemplateColumn>
|
|
<DataGridTemplateColumn Width="100" Header="空安瓿">
|
|
<DataGridTemplateColumn.CellTemplate>
|
|
<DataTemplate>
|
|
<TextBox Style="{StaticResource MaterialDesignDataGridTextColumnEditingStyle}">
|
|
<TextBox.Text>
|
|
<Binding Path="EmptyNum" Mode="TwoWay" UpdateSourceTrigger="PropertyChanged">
|
|
|
|
</Binding>
|
|
</TextBox.Text>
|
|
</TextBox>
|
|
</DataTemplate>
|
|
</DataGridTemplateColumn.CellTemplate>
|
|
</DataGridTemplateColumn>
|
|
<DataGridTemplateColumn Width="100" Header="还药时间">
|
|
<DataGridTemplateColumn.CellTemplate>
|
|
<DataTemplate>
|
|
<DatePicker
|
|
Grid.Row="3" Grid.Column="0"
|
|
SelectedDate="{Binding ReturnTime,UpdateSourceTrigger=PropertyChanged}"
|
|
SelectedDateFormat="Short"
|
|
Margin="6 0 0 0"
|
|
materialDesign:HintAssist.Hint="还药时间"
|
|
Style="{StaticResource MaterialDesignOutlinedDatePicker}" />
|
|
</DataTemplate>
|
|
</DataGridTemplateColumn.CellTemplate>
|
|
</DataGridTemplateColumn>
|
|
<DataGridTemplateColumn Width="150" IsReadOnly="True" Header="还药者">
|
|
<DataGridTemplateColumn.CellTemplate>
|
|
<DataTemplate>
|
|
<ComboBox
|
|
Style="{StaticResource MaterialDesignDataGridComboBox}"
|
|
ItemsSource="{Binding ReturnUser}"
|
|
SelectedItem="{Binding drugManuNo,UpdateSourceTrigger=PropertyChanged}"
|
|
DisplayMemberPath="ManuNo"
|
|
IsEnabled="{Binding Quantity,Converter={StaticResource QuantityCountConverter}}">
|
|
|
|
|
|
</ComboBox>
|
|
</DataTemplate>
|
|
</DataGridTemplateColumn.CellTemplate>
|
|
</DataGridTemplateColumn>
|
|
<DataGridTemplateColumn Width="150" IsReadOnly="True" Header="接收者">
|
|
<DataGridTemplateColumn.CellTemplate>
|
|
<DataTemplate>
|
|
<ComboBox
|
|
Style="{StaticResource MaterialDesignDataGridComboBox}"
|
|
ItemsSource="{Binding ReturnReceiveUser}"
|
|
SelectedItem="{Binding drugManuNo,UpdateSourceTrigger=PropertyChanged}"
|
|
DisplayMemberPath="ManuNo"
|
|
IsEnabled="{Binding Quantity,Converter={StaticResource QuantityCountConverter}}">
|
|
</ComboBox>
|
|
</DataTemplate>
|
|
</DataGridTemplateColumn.CellTemplate>
|
|
</DataGridTemplateColumn>
|
|
<DataGridTemplateColumn Width="100" Header="安瓿">
|
|
<DataGridTemplateColumn.CellTemplate>
|
|
<DataTemplate>
|
|
<TextBox Style="{StaticResource MaterialDesignDataGridTextColumnEditingStyle}">
|
|
<TextBox.Text>
|
|
<Binding Path="UseBottle" Mode="TwoWay" UpdateSourceTrigger="PropertyChanged">
|
|
|
|
</Binding>
|
|
</TextBox.Text>
|
|
</TextBox>
|
|
</DataTemplate>
|
|
</DataGridTemplateColumn.CellTemplate>
|
|
</DataGridTemplateColumn>
|
|
<DataGridTemplateColumn Width="100" Header="处方">
|
|
<DataGridTemplateColumn.CellTemplate>
|
|
<DataTemplate>
|
|
<TextBox Style="{StaticResource MaterialDesignDataGridTextColumnEditingStyle}">
|
|
<TextBox.Text>
|
|
<Binding Path="UseOrderNo" Mode="TwoWay" UpdateSourceTrigger="PropertyChanged">
|
|
<Binding.ValidationRules>
|
|
<ExceptionValidationRule />
|
|
</Binding.ValidationRules>
|
|
</Binding>
|
|
</TextBox.Text>
|
|
</TextBox>
|
|
</DataTemplate>
|
|
</DataGridTemplateColumn.CellTemplate>
|
|
</DataGridTemplateColumn>
|
|
<DataGridTemplateColumn Width="100" Header="补充">
|
|
<DataGridTemplateColumn.CellTemplate>
|
|
<DataTemplate>
|
|
<TextBox Style="{StaticResource MaterialDesignDataGridTextColumnEditingStyle}">
|
|
<TextBox.Text>
|
|
<Binding Path="UseAdd" Mode="TwoWay" UpdateSourceTrigger="PropertyChanged">
|
|
<Binding.ValidationRules>
|
|
<ExceptionValidationRule />
|
|
</Binding.ValidationRules>
|
|
</Binding>
|
|
</TextBox.Text>
|
|
</TextBox>
|
|
</DataTemplate>
|
|
</DataGridTemplateColumn.CellTemplate>
|
|
</DataGridTemplateColumn>
|
|
<DataGridTemplateColumn Width="150" IsReadOnly="True" Header="补充者">
|
|
<DataGridTemplateColumn.CellTemplate>
|
|
<DataTemplate>
|
|
<ComboBox
|
|
Style="{StaticResource MaterialDesignDataGridComboBox}"
|
|
ItemsSource="{Binding ReturnReceiveUser}"
|
|
SelectedItem="{Binding drugManuNo,UpdateSourceTrigger=PropertyChanged}"
|
|
DisplayMemberPath="ManuNo"
|
|
IsEnabled="{Binding Quantity,Converter={StaticResource QuantityCountConverter}}">
|
|
|
|
|
|
</ComboBox>
|
|
</DataTemplate>
|
|
</DataGridTemplateColumn.CellTemplate>
|
|
</DataGridTemplateColumn>
|
|
<DataGridTemplateColumn Width="150" IsReadOnly="True" Header="核对者">
|
|
<DataGridTemplateColumn.CellTemplate>
|
|
<DataTemplate>
|
|
<ComboBox
|
|
Style="{StaticResource MaterialDesignDataGridComboBox}"
|
|
ItemsSource="{Binding ReturnReceiveUser}"
|
|
SelectedItem="{Binding drugManuNo,UpdateSourceTrigger=PropertyChanged}"
|
|
DisplayMemberPath="ManuNo"
|
|
IsEnabled="{Binding Quantity,Converter={StaticResource QuantityCountConverter}}">
|
|
</ComboBox>
|
|
</DataTemplate>
|
|
</DataGridTemplateColumn.CellTemplate>
|
|
</DataGridTemplateColumn>
|
|
</DataGrid.Columns>
|
|
</DataGrid>
|
|
</Grid>
|
|
</DataTemplate>
|
|
</ItemsControl.ItemTemplate>
|
|
</ItemsControl>
|
|
</ScrollViewer>-->
|
|
<DataGrid
|
|
Padding="0 6 0 0"
|
|
Grid.Row="1"
|
|
materialDesign:DataGridAssist.ColumnHeaderPadding="15"
|
|
ItemsSource="{Binding RejectionReportList}"
|
|
materialDesign:DataGridAssist.EnableEditBoxAssist="False"
|
|
materialDesign:DataGridAssist.CellPadding="13"
|
|
SelectionUnit="Cell"
|
|
CanUserAddRows="False"
|
|
AutoGenerateColumns="False">
|
|
<DataGrid.Resources>
|
|
<Style TargetType="{x:Type DataGridColumnHeader}" BasedOn="{StaticResource MaterialDesignDataGridColumnHeader}">
|
|
<Setter Property="Background" Value="#31ccec" />
|
|
<Setter Property="Foreground" Value="white" />
|
|
<Setter Property="Height" Value="56" />
|
|
<Setter Property="BorderBrush" Value="white"/>
|
|
<Setter Property="BorderThickness" Value="0.6"/>
|
|
<Setter Property="HorizontalContentAlignment" Value="Center"/>
|
|
|
|
</Style>
|
|
<Style TargetType="{x:Type DataGridCell}" BasedOn="{StaticResource MaterialDesignDataGridCell}">
|
|
<Style.Triggers>
|
|
<Trigger Property="IsReadOnly" Value="True">
|
|
<Setter Property="BorderBrush" Value="Transparent" />
|
|
<Setter Property="HorizontalAlignment" Value="Center"/>
|
|
</Trigger>
|
|
</Style.Triggers>
|
|
</Style>
|
|
</DataGrid.Resources>
|
|
<DataGrid.Columns>
|
|
<DataGridTextColumn Width="181"
|
|
Binding="{Binding DrugName}"
|
|
Header="药品信息"
|
|
IsReadOnly="True"
|
|
ElementStyle="{StaticResource MaterialDesignDataGridTextColumnStyle}"/>
|
|
<DataGridTextColumn Width="100"
|
|
Binding="{Binding DrugSpec}"
|
|
Header="规格"
|
|
IsReadOnly="True"
|
|
ElementStyle="{StaticResource MaterialDesignDataGridTextColumnStyle}"/>
|
|
<DataGridTextColumn Width="100"
|
|
Binding="{Binding BaseNum}"
|
|
Header="总基数"
|
|
IsReadOnly="True"
|
|
ElementStyle="{StaticResource MaterialDesignDataGridTextColumnStyle}"/>
|
|
<DataGridTemplateColumn Width="100" Header="实发数">
|
|
<DataGridTemplateColumn.CellTemplate>
|
|
<DataTemplate>
|
|
<TextBox Style="{StaticResource MaterialDesignDataGridTextColumnEditingStyle}">
|
|
<TextBox.Text>
|
|
<Binding Path="RealNum" Mode="TwoWay" UpdateSourceTrigger="PropertyChanged">
|
|
</Binding>
|
|
</TextBox.Text>
|
|
</TextBox>
|
|
</DataTemplate>
|
|
</DataGridTemplateColumn.CellTemplate>
|
|
</DataGridTemplateColumn>
|
|
<DataGridTemplateColumn Width="100" Header="实物数">
|
|
<DataGridTemplateColumn.CellTemplate>
|
|
<DataTemplate>
|
|
<TextBox Style="{StaticResource MaterialDesignDataGridTextColumnEditingStyle}">
|
|
<TextBox.Text>
|
|
<Binding Path="InfactNum" Mode="TwoWay" UpdateSourceTrigger="PropertyChanged">
|
|
</Binding>
|
|
</TextBox.Text>
|
|
</TextBox>
|
|
</DataTemplate>
|
|
</DataGridTemplateColumn.CellTemplate>
|
|
</DataGridTemplateColumn>
|
|
<DataGridTemplateColumn Width="100" Header="空安瓿">
|
|
<DataGridTemplateColumn.CellTemplate>
|
|
<DataTemplate>
|
|
<TextBox Style="{StaticResource MaterialDesignDataGridTextColumnEditingStyle}">
|
|
<TextBox.Text>
|
|
<Binding Path="EmptyNum" Mode="TwoWay" UpdateSourceTrigger="PropertyChanged">
|
|
</Binding>
|
|
</TextBox.Text>
|
|
</TextBox>
|
|
</DataTemplate>
|
|
</DataGridTemplateColumn.CellTemplate>
|
|
</DataGridTemplateColumn>
|
|
<!--<DataGridTemplateColumn Width="100" Header="还药时间">
|
|
<DataGridTemplateColumn.CellTemplate>
|
|
<DataTemplate>
|
|
<TextBox Style="{StaticResource MaterialDesignDataGridTextColumnEditingStyle}">
|
|
<TextBox.Text>
|
|
<Binding Path="ReturnTime" Mode="TwoWay" UpdateSourceTrigger="PropertyChanged">
|
|
</Binding>
|
|
</TextBox.Text>
|
|
</TextBox>
|
|
</DataTemplate>
|
|
</DataGridTemplateColumn.CellTemplate>
|
|
</DataGridTemplateColumn>-->
|
|
</DataGrid.Columns>
|
|
</DataGrid>
|
|
<Grid Grid.Row="2" Margin="0 6 0 6">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="2*" />
|
|
<ColumnDefinition Width="2*" />
|
|
<ColumnDefinition Width="2*" />
|
|
<ColumnDefinition Width="2*" />
|
|
<ColumnDefinition Width="*" />
|
|
</Grid.ColumnDefinitions>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="3*"/>
|
|
<RowDefinition Height="3*"/>
|
|
<RowDefinition Height="3*"/>
|
|
</Grid.RowDefinitions>
|
|
<DatePicker Grid.Row="0"
|
|
Grid.Column="0"
|
|
SelectedDate="{Binding SendDate, TargetNullValue=''}"
|
|
Margin="6 0 0 0"
|
|
materialDesign:HintAssist.Hint="发药时间"
|
|
Style="{StaticResource MaterialDesignOutlinedDatePicker}"
|
|
/>
|
|
<ComboBox
|
|
Margin="8 8 8 0"
|
|
Grid.Row="0" Grid.Column="1"
|
|
Style="{StaticResource MaterialDesignOutlinedComboBox}"
|
|
materialDesign:HintAssist.Hint="发药者"
|
|
ItemsSource="{Binding SendUserList}"
|
|
SelectedValue="{Binding SendUser}"
|
|
DisplayMemberPath="Nickname"/>
|
|
<ComboBox
|
|
Margin="8 8 8 0"
|
|
Grid.Row="0" Grid.Column="2"
|
|
Style="{StaticResource MaterialDesignOutlinedComboBox}"
|
|
materialDesign:HintAssist.Hint="领药者"
|
|
ItemsSource="{Binding SendUserCheckList}"
|
|
SelectedValue="{Binding SendUserCheck}"
|
|
DisplayMemberPath="Nickname"/>
|
|
|
|
<!--<DatePicker Grid.Row="1"
|
|
Grid.Column="1"
|
|
SelectedDate="{Binding SendDate, TargetNullValue=''}"
|
|
Margin="6 0 0 0"
|
|
materialDesign:HintAssist.Hint="还药时间"
|
|
Style="{StaticResource MaterialDesignOutlinedDatePicker}"
|
|
/>-->
|
|
<TextBox Grid.Row="1"
|
|
Grid.Column="0"
|
|
Text="{Binding ReturnTime}"
|
|
materialDesign:HintAssist.Hint="还药时间"
|
|
Margin="6 0 0 0"
|
|
Style="{StaticResource MaterialDesignOutlinedTextBox}"/>
|
|
<ComboBox
|
|
Margin="8 8 8 0"
|
|
Grid.Row="1" Grid.Column="1"
|
|
Style="{StaticResource MaterialDesignOutlinedComboBox}"
|
|
materialDesign:HintAssist.Hint="还药者"
|
|
ItemsSource="{Binding ReturnUserList}"
|
|
SelectedValue="{Binding ReturnUser}"
|
|
DisplayMemberPath="Nickname"/>
|
|
<ComboBox
|
|
Margin="8 8 8 0"
|
|
Grid.Row="1" Grid.Column="2"
|
|
Style="{StaticResource MaterialDesignOutlinedComboBox}"
|
|
materialDesign:HintAssist.Hint="接收者"
|
|
ItemsSource="{Binding ReturnUserCheckList}"
|
|
SelectedValue="{Binding ReturnUserCheck}"
|
|
DisplayMemberPath="Nickname"/>
|
|
<ComboBox
|
|
Margin="8 8 8 0"
|
|
Grid.Row="2" Grid.Column="0"
|
|
Style="{StaticResource MaterialDesignOutlinedComboBox}"
|
|
materialDesign:HintAssist.Hint="补充者"
|
|
ItemsSource="{Binding AddUserList}"
|
|
SelectedValue="{Binding AddUser}"
|
|
DisplayMemberPath="Nickname"/>
|
|
<ComboBox
|
|
Margin="8 8 8 0"
|
|
Grid.Row="2" Grid.Column="1"
|
|
Style="{StaticResource MaterialDesignOutlinedComboBox}"
|
|
materialDesign:HintAssist.Hint="核对者"
|
|
ItemsSource="{Binding AddUserCheckList}"
|
|
SelectedValue="{Binding AddUserCheck}"
|
|
DisplayMemberPath="Nickname"/>
|
|
<StackPanel Grid.Row="1" Grid.ColumnSpan="3" Grid.Column="3" Margin="8" Orientation="Horizontal" HorizontalAlignment="Left">
|
|
<Button Width="100"
|
|
Margin="0 0 6 0"
|
|
VerticalAlignment="Center"
|
|
Style="{StaticResource MaterialDesignOutlinedLightButton}"
|
|
Content="保存" Command="{Binding AddReportDateCommand}">
|
|
</Button>
|
|
</StackPanel>
|
|
</Grid>
|
|
</Grid>
|
|
</UserControl>
|