case 3736 prompt to save on print

This commit is contained in:
2020-04-02 00:06:07 +00:00
parent c484378c75
commit d3da5e5bf4
11 changed files with 35 additions and 6 deletions

View File

@@ -1,10 +1,14 @@
//////////////////////////////////////////////////////////
//TODO
case 3736, 3739 PO stuff
//////////////////////////////////////////////////////////
//DONE STUFF
Biz 7.6 patch 3
case 3738
case 3738 - PO Items could remain not deleted when PO closed with none received
case 3739 - PO Item quantity ordered sometimes not set correctly when PO is partially received, then closed
Windows AyaNova 7.6 patch 2
case 3736 - All main object edit forms except workorder would not prompt user to save before printing report which could result in stale values on report

View File

@@ -62,4 +62,4 @@ using System.Runtime.InteropServices;
[assembly: log4net.Config.XmlConfigurator(ConfigFile="Log4Net.config",Watch=true)]
//[assembly: log4net.Config.XmlConfigurator(Watch=true)]
[assembly: ComVisibleAttribute(false)]
[assembly: AssemblyFileVersionAttribute("7.6.1.0")]
[assembly: AssemblyFileVersionAttribute("7.6.2.0")]

View File

@@ -1549,7 +1549,10 @@ namespace AyaNova
case "REPORTLIST":
{
{
//case 3736
RecordUpdate(RecordActionType.PromptToSave);
if(Util.ReportHandleToolClickIsSummary(e.Tool))
Util.ReportHandleToolClick(e.Tool,ClientList.ReportKey,
ClientList.GetListForSingleItem(mClient.ID));

View File

@@ -1371,6 +1371,9 @@ namespace AyaNova
case "REPORTLIST":
{
//case 3736
RecordUpdate(RecordActionType.PromptToSave);
if(Util.ReportHandleToolClickIsSummary(e.Tool))
Util.ReportHandleToolClick(e.Tool,HeadOfficeList.ReportKey,
HeadOfficeList.GetListForSingleItem(mHeadOffice.ID));

View File

@@ -1091,6 +1091,9 @@ namespace AyaNova
case "REPORTLIST":
{
//case 3736
RecordUpdate(RecordActionType.PromptToSave);
if (Util.ReportHandleToolClickIsSummary(e.Tool))
Util.ReportHandleToolClick(e.Tool, PartList.ReportKey,
PartList.GetListForSingleItem(mPart.ID));

View File

@@ -564,7 +564,9 @@ namespace AyaNova
case "REPORTLIST":
{
//case 3736
RecordUpdate(RecordActionType.PromptToSave);
if(Util.ReportHandleToolClickIsSummary(e.Tool))
Util.ReportHandleToolClick(e.Tool,PartInventoryAdjustmentList.ReportKey,
PartInventoryAdjustmentList.GetListForSingleItem(this.mPartInventoryAdjustment.ID));

View File

@@ -1037,6 +1037,9 @@ namespace AyaNova
//
case "REPORTLIST":
{
//case 3736
RecordUpdate(RecordActionType.PromptToSave);
if(Util.ReportHandleToolClickIsSummary(e.Tool))
Util.ReportHandleToolClick(e.Tool,PurchaseOrderList.ReportKey,
PurchaseOrderList.GetListForSingleItem(this.mPurchaseOrder.ID));

View File

@@ -673,7 +673,9 @@ namespace AyaNova
case "REPORTLIST":
{
//case 3736
RecordUpdate(RecordActionType.PromptToSave);
if(Util.ReportHandleToolClickIsSummary(e.Tool))
Util.ReportHandleToolClick(e.Tool,PurchaseOrderReceiptList.ReportKey,
PurchaseOrderReceiptList.GetListForSingleItem(this.mPurchaseOrderReceipt.ID));

View File

@@ -1251,6 +1251,9 @@ namespace AyaNova
break;
case "REPORTLIST":
{
//case 3736
RecordUpdate(RecordActionType.PromptToSave);
if (Util.ReportHandleToolClickIsSummary(e.Tool))
Util.ReportHandleToolClick(e.Tool, UnitList.ReportKey,
UnitList.GetListForSingleItem(mUnit.ID));

View File

@@ -905,6 +905,9 @@ namespace AyaNova
break;
case "REPORTLIST":
{
//case 3736
RecordUpdate(RecordActionType.PromptToSave);
if (Util.ReportHandleToolClickIsSummary(e.Tool))
Util.ReportHandleToolClick(e.Tool, UnitModelList.ReportKey,
UnitModelList.GetListForSingleItem(mUnitModel.ID));

View File

@@ -1164,6 +1164,9 @@ namespace AyaNova
case "REPORTLIST":
{
//case 3736
RecordUpdate(RecordActionType.PromptToSave);
if(Util.ReportHandleToolClickIsSummary(e.Tool))
Util.ReportHandleToolClick(e.Tool,VendorList.ReportKey,
VendorList.GetListForSingleItem(mVendor.ID));