1

(15 replies, posted in Accounts Receivable)

Hi Elax,

I happened to check forum today after many days.
I have loaded the module in my local instance.
Will be using it. A quick review gave me good feel.

I don't know wheather I should be discussing following part here -
Could you please help to remove an issue in reporting module ?
Issue is - When we take Excel report. In OOCalc (May be Ms Excel too) report files show up without borders but in preview and print, borders are visible. So reports are not printed properly. If you can give it a look, it would be nice.

Thanks

2

(15 replies, posted in Accounts Receivable)

Hi Elax,

I checked the module and amazed by it's implementation.
Hats off to you ! smile

I am wondering with you such great programming skills, have you developed other modules to make FA more productive ? Something like serialized inventory, POS etc.

Thanks

3

(12 replies, posted in Wish List)

Hi,

Like Batch Sales Invoice, Batch delivery is also needed.
Many times delivery against multiple sales orders is done practically.
If this can be done, multiple delivery notes for single delivery can be avoided.

Thanks

4

(10 replies, posted in Items and Inventory)

Hi Janusz,

Can you please enlighten me too about this though mail ?

Thanks,

Any update on this ?

6

(15 replies, posted in Accounts Receivable)

Hi elax,

I have recently created a module that can import CSV to sales order form.
It will not directly post the sales order, rather it will import items through CSV and show a pre-filled Sales Order form.
Which you may check, select customer and set other details properly before confirming the order.

Since I am away, I will be posting this module to FA admins for review soon.

It has a TODO : Check item is salable
Also this feature needs to have a 2 lines added in FA core file - sales_order_entry.php

Thanks

Hi Joe,

similar to following code in view_receipt.php
display_allocations_from(PT_CUSTOMER, $receipt['debtor_no'], ST_CUSTPAYMENT, $trans_id, $receipt['Total']);

we can add
display_allocations_to(PT_CUSTOMER, $receipt['debtor_no'], ST_SALESINVOICE, $trans_id, $receipt['Total']);

custalloc_db.inc has function get_allocatable_to_cust_transactions similarly we can write function get_allocatable_FROM_cust_transactions
as below -

function get_allocatable_from_cust_transactions($customer_id, $trans_no=null, $type=null)
{
    if ($trans_no != null and $type != null)
    {
        $sql = get_alloc_trans_sql("amt", "trans.trans_no = alloc.trans_no_from
            AND trans.type = alloc.trans_type_from
            AND alloc.trans_no_to=".db_escape($trans_no)."
            AND alloc.trans_type_to=".db_escape($type)."
            AND trans.debtor_no=".db_escape($customer_id),
            "".TB_PREF."cust_allocations as alloc");
    }
    else
    {
        $sql = get_alloc_trans_sql(null, "round(ov_amount+ov_gst+ov_freight+ov_freight_tax+ov_discount-alloc,6) > 0
            AND trans.type <> " . ST_CUSTPAYMENT . "
            AND trans.type <> " . ST_BANKDEPOSIT . "
            AND trans.type <> " . ST_CUSTCREDIT . "
            AND trans.type <> " . ST_CUSTDELIVERY . "
            AND trans.debtor_no=".db_escape($customer_id));
    }

    return db_query($sql." ORDER BY trans_no", "Cannot retreive alloc to transactions");
}

Hope I am clear enough. smile

Thanks

Hi,

Currently the customer/supplier payment entry shows its allocations to invoices.
But in reverse way, the invoice is allocated by which payment entry is not displayed.

Sometimes finding such details are required. Displaying them on 'view' pages of invoices and credit notes will be helpful.

Thanks,

Hi Janusz,

Regarding : Timeout on long processing like backup/restore enlarged to 10min

I had made changes as per the changelog in inserts.js and utils.js
also removed old files from js_cache to get new settings work.

Still the progress bar goes off after 60Sec.
and backup does not take place.

I need to extend time for backup and reports too.

Thanks

10

(2 replies, posted in Reporting)

Thanks Janusz,
That worked.

11

(2 replies, posted in Reporting)

Curious on the case when report file i.e. pdf of excel gets heavy like 20MB. How can we compress/"zip" the pdf or xls report file on server and take it as output i.e. .zip or .gz file so download bandwidth can be reduced and user will have to wait for lesser time.

Hi Tclim,

FA developers and many other members have taken months of efforts on FA for improving it and making it useful for them and ALL.
All these contributions have been GPL.

Thanks

13

(4 replies, posted in Items and Inventory)

Hi chvypwrd,

I am unable to reproduce the issue of negative cost .
Could you please provide a case if possible ?

Thanks

Displaying balances on payment/transfers forms similar as credit amount implemented on sales/purchase documents.

It will help users in order to understand current balance and avoid duplicate entries/wrong entries.

15

(0 replies, posted in Wish List)

Currently we have reports module enabled to display reports as PDF and Excel/OOcalc.
Is it possible to implement sending report as email?

This should submit report as a cron job so user need not wait on form, also bigger report can be handled in background.

Hi,

We need to control not allowing the sale invoice of the previous date.

Example. lf sale invoice of 110 is of 10.12.2010 then No. 111 should be of 10.12.2010 or after 10.12.2010; but it should not allow for date 9.12.2010.

Thanks

17

(29 replies, posted in Wish List)

Sorry wrong place.

Is there any progress on this topic.
This is a required feature

Hi Joe,

We really need to redesign it to get it more professional. I hope that we can make some kind of developers talk regarding this.

Agreed !

Meanwhile -
I am doing an attempt to accept the service item itself as BOM with Std Cost.
Also need to do some other costing improvements.

Will send code for your review once completed.

Thanks,

Hi Joe,

In that case, I am not clear about what is actual usage/advantage of applying service items on BOM?

Thanks,

Hi Joe,

Thanks. How do we apply cost regarding the service item as Costed BOM does not reflect any price ?
Am I missing something ?

Thanks

Can we add service items on BOM ?

Thanks

Hi,

When the database is quite large, while using the native backup and restore facility, it fails saying maximum execution time is exceeded. Since this time can not be increased to very high limit, we would need to have some provision of interrupt of query by some limit.

Same problem happen in case of reports which have quite huge data.

Can we make some provision similar to that of PhpMyAdmin - 'Partial Import/Partial Export'

What we need is workaround/solution - how to tackle the situation where we "really" need more time for execution ?

Thanks,

23

(7 replies, posted in Accounts Payable)

Hi Gatson, if I am getting u correct -

You may manually apply the tax using tax gl item.
Here tax will not be auto calculated.

Hi Joe,

Thanks for the reply but creating a different item may not give proper inventory and it would be difficult to create BOM.

Thanks

Hi,

Sometimes we have to buy the item which we normally manufacture.
We are not able to place PO for these items ?

Is there any reason for putting this restriction ?

Thanks,