新增磅单管理功能,支持免密接口和数据同步,更新相关控制器、实体和服务,优化权限管理,确保系统的灵活性和可扩展性。
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
using System.Windows.Controls;
|
||||
using System.Windows.Input;
|
||||
using YY.Admin.ViewModels.WeightRecord;
|
||||
|
||||
namespace YY.Admin.Views.WeightRecord;
|
||||
|
||||
public partial class CustomerPickerDialogView : UserControl
|
||||
{
|
||||
public CustomerPickerDialogView()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
private void CustomersGrid_MouseDoubleClick(object sender, MouseButtonEventArgs e)
|
||||
{
|
||||
if (DataContext is CustomerPickerDialogViewModel vm && vm.ConfirmCommand.CanExecute())
|
||||
vm.ConfirmCommand.Execute();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user