Topic: Why Layout Changed in Customer Transaction Inquiry

Earlier we had this Layout in Customer Transaction Inquiry that was very helpful but this has been changed in FA24. No Upper section appears now if we select any customer.

Can any one share whats the logic behind that?

Post's attachments

Customer_Txns_2.3.jpg 61.6 kb, file has never been downloaded. 

You don't have the permssions to download the attachments of this post.
www.boxygen.pk

Re: Why Layout Changed in Customer Transaction Inquiry

The customer summary was just occupying top space which was re-allocated for more records below. wink

Post's attachments

FA24_Txns_Views.zip 42.2 kb, 2 downloads since 2017-11-01 

You don't have the permssions to download the attachments of this post.

Re: Why Layout Changed in Customer Transaction Inquiry

Yes, you are right. There is a bug in line 173 of sales/inquiry/customer_inquiry.php which is:

if ($_POST['customer_id'] != ALL_TEXT && $_POST['filterType'] == '2')

and it should be:

if ($_POST['customer_id'] != "" && $_POST['customer_id'] != ALL_TEXT)

There is no use in checking for filterType=2 (Unsettled Transactions) to deny display of summary info of customer. Reverting it to the sane code as in FA 2.3 rectifies it as above.

Yes the same exists in line 156 in purchasing/inquiry/supplier_inquiry.php:

if ($_POST['supplier_id'] != ALL_TEXT && $_POST['filterType'] == '2')

and it should be:

if (($_POST['supplier_id'] != "") && ($_POST['supplier_id'] != ALL_TEXT))

@joe: can commit it.

Post's attachments

Cust_Supp_Inquiry_Fixes.zip 61.5 kb, 3 downloads since 2017-11-01 

You don't have the permssions to download the attachments of this post.

Re: Why Layout Changed in Customer Transaction Inquiry

Great Thanks

www.boxygen.pk

Re: Why Layout Changed in Customer Transaction Inquiry

Fixed. Repo updated.

/Joe