Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Since there are more than 100 issue, categorization of the same is in-progress. For the time being please refer to the resolved notes under: - Resolved Issues - Research and Development - Confluence (atlassian.net)

This document contains the Bug fix description of Aptify 7.0 release and is divided into below categories:

Table of Contents
maxLevel2

Business Application Improvements

...

Renewed Memberships that are Cancelled Do Not Update Subscription Status

In Aptify Web, when a renewed membership order was cancelled and the cancelled order was shipped, the subscription status showed as "Active" instead of "Cancelled”. This issue has been addressed in release 7.0.

(Issue 6723)

Product Pricing issue

In Aptify Web, there was an issue with the product pricing while creating a new order record. The product pricing was not getting picked correctly as per the person’s member type. This issue has been resolved.

...

In previous versions of Aptify, there was a possibility of duplicate GL entries getting generated in specific scenario while placing orders, or while doing payments and scheduling transactions. This issue has been corrected by adding checks at database level. Below SQLs avoid generation of duplicate GL entries.

Code Block
--ScheduledTransaction Unique Constraint
Use APTIFY
GO
ALTER TABLE ScheduledTransaction
ADD CONSTRAINT UC_ScheduledTransactionDetails UNIQUE
(ScheduledDate,ScheduledTransactionGroupID,Description);
GO

--OrderGLEntry Unique Constraint
Use APTIFY
GO
ALTER TABLE OrderGLEntry
ADD CONSTRAINT UC_OrderGLEntryDetails UNIQUE
(OrderID,GLAccount,DebitAmount,CreditAmount,IsCustom);
GO

--PaymentGLEntry Unique Constraint
Use APTIFY
GO
ALTER TABLE PaymentGLEntry
ADD CONSTRAINT UC_PaymentGLEntryDetails UNIQUE
(PaymentID,GLAccount,DebitAmount,CreditAmount,IsCustom);
GO

(Issue 5660)

BluePay Merchant Accounts Set to AuthCapture Can't Create Saved Payment Methods

...

(Issue 6722)

Orders Do Not Auto Ship

...

Record changes on order after being shipped

In Aptify Web, there was an issue with the when a user created an Order for products which did not require fulfillment checkbox to be selected, the Order did not auto ship as expected. Instead, a confirmation window appeared with a prompt message. This behavior has been corrected.

(Issue 6729)

Record changes on order after being shipped

In Aptify Web, there was an issue with the orders that had CC reference transaction and unselected Save for Future Use option. When such an order was closed and reopened without making any changes, a prompt appeared for changing the reference transaction number to blank. This issue has been resolved, now the prompt message does not appear until the user has made any changes to taken order.

...

Order Uses Single AR GL Instead of Separate AR GLs

In earlier versions of Aptify Web and Desktop there was an issue for the following scenario. For an order with two products that are linked to two separate Organizations, each with a different Accounts Receivable GL, the order incorrectly generated a single GL Entry for the FIRST product listed on the order, rather than two separate GL Entries. This issue has been addressed.

(Issue 6731)

Blue Pay Cash Control Batch

...

Pinned Views Load Undefined


(Issue 6678)

(Issue 6679)

Delete Operations from certain Lists/Views spins the Aptify

In Aptify Web, when a record was deleted from a Persons or Company List, or from Committee view, Aptify showed the spinning icon and became unresponsive. Further, the record was deleted from Aptify Web list but not from Desktop. This behavior has been corrected.

(Issue 6701