コード例 #1
0
        protected async void GridDeleteButtonClick(MouseEventArgs args, TblSoOrderDetail data)
        {
            try
            {
                var otErpDeleteTblSoOrderDetailResult = await OtErp.DeleteTblSoOrderDetail(data.SODetail_SEQ);

                if (otErpDeleteTblSoOrderDetailResult != null)
                {
                    grid0.Reload();
                }
            }
            catch (Exception otErpDeleteTblSoOrderDetailException)
            {
                NotificationService.Notify(NotificationSeverity.Error, $"Error", $"Unable to delete TblSoOrderDetail");
            }
        }