Openbravo Issue Tracking System - Openbravo ERP
View Issue Details
0007465Openbravo ERP09. Financial managementpublic2009-02-02 19:202009-03-06 11:05
galderromo 
eduardo_Argal 
normalmajoralways
closedfixed 
20RedHat
2.35MP4 
2.40MP3 
No
Core
No
0007465: FACT_ACCT_RESET database procedure unposts all manual settlements when unposting one record
When having 5000 manual settlements and 5000 invoices.
If you want to unpost a manual settlement to unprocess the settlement, all the manual settlements are unposted.
Posting manual settlements with no direct accounting means changing all settlements from posted='N' to posted='Y'.
When you want to unpost a manual settlement, you just want to update posted='Y' to posted='N' so you can unprocess the settlement.
But the application unposts all the manual settlements. Although it does not change the accounting information, the accounting background process posts again all the 5000 manual settlements. So you have to wait until this are posted before the invoices get also posted.
Introduce 5 manual settlement.
Post them.
Unpost a manual settlement. Also the log says: "Success 5 updated".
Improve code at FACT_ACCT_RESET around line 220:

        v_Cmd:='UPDATE ' || Cur_Tables.TableName || ' SET Posted=''N'', Processing=''N'' WHERE AD_Client_ID=''' || Cur_Clients.AD_Client_ID
        || ''' AND (Posted=''Y'' OR Processing<>''N'' OR Processing IS NULL) AND NOT EXISTS (SELECT 1 FROM FACT_ACCT WHERE AD_TABLE_ID =''' || Cur_Tables.AD_Table_ID ||
        ''' AND RECORD_ID = ' || Cur_Tables.TableName || '_ID AND AD_CLIENT_ID =''' || Cur_Clients.AD_Client_ID || ''' )';
            -- DBMS_OUTPUT.PUT_LINE(' executing: ' || v_Cmd);

updates all the records not having accounting info at fact_acct.
No tags attached.
blocks defect 0007327 closed eduardo_Argal FACT_ACCT_RESET database procedure unposts all manual settlements when unposting one record 
Issue History
2009-02-10 10:03psarobeTypedefect => backport
2009-02-10 10:03psarobefix_in_branch => 2.40
2009-02-10 10:04psarobeAssigned Torafaroda => eduardo_Argal
2009-02-12 19:50svnbotCheckin
2009-02-12 19:50svnbotNote Added: 0013443
2009-02-12 19:50svnbotStatusscheduled => resolved
2009-02-12 19:50svnbotResolutionopen => fixed
2009-02-12 19:50svnbotsvn_revision => 13119
2009-03-03 17:31psarobeFixed in Version => 2.40MP3
2009-03-06 11:05psarobeStatusresolved => closed

Notes
(0013443)
svnbot   
2009-02-12 19:50   
Repository: openbravo
Revision: 13119
Author: eduardoargal
Date: 2009-02-12 19:50:26 +0100 (Thu, 12 Feb 2009)

Fixes bug 0007465: FACT_ACCT_RESET database procedure unposts all manual settlements when unposting one record

---
U branches/r2.40/src-db/database/model/functions/FACT_ACCT_RESET.xml
---

https://dev.openbravo.com/websvn/openbravo/?rev=13119&sc=1 [^]