Search in sources :

Example 6 with MAssetAddition

use of org.compiere.model.MAssetAddition in project adempiere by adempiere.

the class A_Asset_Addition_ProcessAll method doIt.

protected String doIt() throws Exception {
    int cnt_ok = 0, cnt_err = 0;
    //
    String whereClause = "AD_Client_ID=? AND IsActive=?" + " AND " + MAssetAddition.COLUMNNAME_Processed + "=?";
    POResultSet<MAssetAddition> rs = new Query(getCtx(), MAssetAddition.Table_Name, whereClause, get_TrxName()).setParameters(new Object[] { getAD_Client_ID(), "N", "N" }).scroll();
    try {
        while (rs.hasNext()) {
            MAssetAddition a = rs.next();
            boolean ret = a.processIt(MAssetAddition.DOCACTION_Complete);
            if (ret)
                cnt_ok++;
            else
                cnt_err++;
        }
    } finally {
        rs.close();
        rs = null;
    }
    //
    return "OK/Error: " + cnt_ok + "/" + cnt_err;
}
Also used : MAssetAddition(org.compiere.model.MAssetAddition) Query(org.compiere.model.Query)

Example 7 with MAssetAddition

use of org.compiere.model.MAssetAddition in project adempiere by adempiere.

the class ImportFixedAsset method doIt.

//	prepare
/**
	 *  Perrform process.
	 *  @return Message
	 *  @throws Exception
	 */
protected String doIt() throws java.lang.Exception {
    StringBuffer sql = null;
    int no = 0;
    if (p_AD_Client_ID == 0)
        p_AD_Client_ID = Env.getAD_Client_ID(getCtx());
    String sqlCheck = " AND AD_Client_ID=" + p_AD_Client_ID;
    //	Delete Old Imported
    if (p_DeleteOldImported) {
        sql = new StringBuffer("DELETE " + X_I_FixedAsset.Table_Name + " WHERE I_IsImported='Y'").append(sqlCheck);
        no = DB.executeUpdateEx(sql.toString(), get_TrxName());
        log.fine("Delete Old Imported =" + no);
    }
    //	Set Client, Org, IsActive, Created/Updated
    sql = new StringBuffer("UPDATE " + MIFixedAsset.Table_Name + " " + "SET AD_Client_ID = COALESCE (AD_Client_ID,").append(p_AD_Client_ID).append(")," + " AD_Org_ID = COALESCE (AD_Org_ID,").append(p_AD_Org_ID).append(")," + " IsActive = COALESCE (IsActive, 'Y')," + " Created = COALESCE (Created, SysDate)," + " CreatedBy = COALESCE (CreatedBy, 0)," + " Updated = COALESCE (Updated, SysDate)," + " UpdatedBy = COALESCE (UpdatedBy, 0)," + " I_ErrorMsg = ' '," + " I_IsImported = 'N' " + "WHERE I_IsImported<>'Y' OR I_IsImported IS NULL");
    no = DB.executeUpdate(sql.toString(), get_TrxName());
    log.info("Reset=" + no);
    //Goodwill
    sql = new StringBuffer("UPDATE " + MIFixedAsset.Table_Name + " ifa " + "SET AD_Org_ID=(SELECT MAX(AD_Org_ID) FROM AD_Org org" + " WHERE ifa.OrgValue=org.Value AND org.IsSummary='N' AND org.AD_Client_ID=ifa.AD_Client_ID) " + "WHERE (AD_Org_ID IS NULL OR AD_Org_ID=0) AND OrgValue IS NOT NULL" + " AND I_IsImported<>'Y'").append(sqlCheck);
    no = DB.executeUpdate(sql.toString(), get_TrxName());
    log.fine("Set Organization from Value=" + no);
    //end Goodwill
    // Check if Org is Null or 0
    sql = new StringBuffer("UPDATE " + MIFixedAsset.Table_Name + " ifa " + "SET I_IsImported='E', I_ErrorMsg=I_ErrorMsg||'ERR=Invalid Org, '" + "WHERE (AD_Org_ID IS NULL OR AD_Org_ID=0" + " OR EXISTS (SELECT * FROM AD_Org oo WHERE ifa.AD_Org_ID=oo.AD_Org_ID AND (oo.IsSummary='Y' OR oo.IsActive='N')))" + " AND I_IsImported<>'Y'").append(sqlCheck);
    no = DB.executeUpdate(sql.toString(), get_TrxName());
    if (no != 0)
        log.warning("Invalid Org=" + no);
    // Check if Name is Null
    sql = new StringBuffer("UPDATE " + MIFixedAsset.Table_Name + " ifa " + "SET I_IsImported='E', I_ErrorMsg=I_ErrorMsg||'ERR=Name Is Mandatory, '" + "WHERE Name IS NULL AND I_IsImported<>'Y'").append(sqlCheck);
    no = DB.executeUpdate(sql.toString(), get_TrxName());
    if (no != 0)
        log.warning("Invalid Name=" + no);
    // Asset Group From Value
    sql = new StringBuffer("UPDATE " + MIFixedAsset.Table_Name + " ifa " + "SET A_Asset_Group_ID=(SELECT MAX(A_Asset_Group_ID) FROM A_Asset_Group t" + " WHERE ifa.A_Asset_Group_Value=t.Name AND ifa.AD_Client_ID=t.AD_Client_ID) " + "WHERE A_Asset_Group_ID IS NULL AND A_Asset_Group_Value IS NOT NULL" + " AND I_IsImported<>'Y'").append(sqlCheck);
    no = DB.executeUpdate(sql.toString(), get_TrxName());
    log.fine("Set Asset Group from Value=" + no);
    // Check if Asset Group Have Asset Group Acct Record
    sql = new StringBuffer("UPDATE " + MIFixedAsset.Table_Name + " ifa " + "SET I_IsImported='E', I_ErrorMsg=I_ErrorMsg||'ERR=Asset Group Doesnt Have Asset Group Acct Record, ' " + //@win change to AND from OR
    "WHERE A_Asset_Group_ID IS NOT NULL AND A_Asset_Group_ID>0 " + //@win change to AND from OR
    "AND NOT EXISTS (SELECT 1 FROM A_Asset_Group_Acct aga WHERE ifa.A_Asset_Group_ID=aga.A_Asset_Group_ID) " + "AND I_IsImported<>'Y'").append(sqlCheck);
    no = DB.executeUpdate(sql.toString(), get_TrxName());
    if (no != 0)
        log.warning("Invalid Asset Group=" + no);
    // Asset Type From Value
    /* commented by @win
		sql = new StringBuffer ("UPDATE "+MIFixedAsset.Table_Name+" ifa "
			  + "SET A_Asset_Type_ID=(SELECT MAX(A_Asset_Type_ID) FROM A_Asset_Type t"
			  + " WHERE ifa.A_Asset_Type_Value=t.Value AND ifa.AD_Client_ID=t.AD_Client_ID) "
			  + "WHERE A_Asset_Type_ID IS NULL AND A_Asset_Type_Value IS NOT NULL"
			  + " AND I_IsImported<>'Y'").append (sqlCheck);
		no = DB.executeUpdate(sql.toString(), get_TrxName());
		log.fine("Set Asset Type from Value=" + no);
		*/
    // BP From Value
    sql = new StringBuffer("UPDATE " + MIFixedAsset.Table_Name + " ifa " + "SET C_BPartnerSR_ID=(SELECT MAX(C_BPartner_ID) FROM C_BPartner t" + " WHERE ifa.BPartner_Value=t.Value AND ifa.AD_Client_ID=t.AD_Client_ID) " + "WHERE C_BPartnerSR_ID IS NULL AND BPartner_Value IS NOT NULL" + " AND I_IsImported<>'Y'").append(sqlCheck);
    no = DB.executeUpdate(sql.toString(), get_TrxName());
    log.fine("Set BP from Value=" + no);
    // City From Value
    sql = new StringBuffer("UPDATE " + MIFixedAsset.Table_Name + " ifa " + "SET C_City_ID=(SELECT MAX(C_City_ID) FROM C_City t" + " WHERE ifa.C_City_Value=t.Name AND ifa.AD_Client_ID=t.AD_Client_ID) " + "WHERE C_City_ID IS NULL AND C_City_Value IS NOT NULL" + " AND I_IsImported<>'Y'").append(sqlCheck);
    no = DB.executeUpdate(sql.toString(), get_TrxName());
    log.fine("Set City from Value=" + no);
    // Product 
    sql = new StringBuffer("UPDATE " + MIFixedAsset.Table_Name + " ifa " + "SET M_Product_ID=(SELECT MAX(M_Product_ID) FROM M_Product t" + " WHERE ifa.ProductValue=t.Value AND ifa.AD_Client_ID=t.AD_Client_ID) " + "WHERE M_Product_ID IS NULL AND ProductValue IS NOT NULL" + " AND I_IsImported<>'Y'").append(sqlCheck);
    no = DB.executeUpdate(sql.toString(), get_TrxName());
    log.fine("Set Product from Value=" + no);
    sql = new StringBuffer("UPDATE " + MIFixedAsset.Table_Name + " ifa " + "SET I_IsImported='E', I_ErrorMsg=I_ErrorMsg||'ERR=Invalid Product, ' " + "WHERE M_Product_ID IS NULL AND ProductValue IS NOT NULL" + " AND I_IsImported<>'Y'").append(sqlCheck);
    no = DB.executeUpdate(sql.toString(), get_TrxName());
    if (no != 0)
        log.warning("Invalid Product=" + no);
    // Check if Product using Product Category has A Asset Category Set
    sql = new StringBuffer("UPDATE " + MIFixedAsset.Table_Name + " ifa " + "SET I_IsImported='E', I_ErrorMsg=I_ErrorMsg||'ERR=Product Using Product Category Without Asset Group Defined, ' " + "WHERE EXISTS (SELECT 1 FROM M_Product p " + "JOIN M_Product_Category pc ON p.M_Product_Category_ID=pc.M_Product_Category_ID " + "WHERE ifa.M_Product_ID=p.M_Product_ID " + "AND (pc.A_Asset_Group_ID=0 OR pc.A_Asset_Group_ID IS NULL)) " + "AND I_IsImported<>'Y'").append(sqlCheck);
    no = DB.executeUpdate(sql.toString(), get_TrxName());
    if (no != 0)
        log.warning("Invalid Product Category=" + no);
    // Locator From Value
    sql = new StringBuffer("UPDATE " + MIFixedAsset.Table_Name + " ifa " + "SET M_Locator_ID=(SELECT MAX(M_Locator_ID) FROM M_Locator t" + " WHERE ifa.LocatorValue=t.Value AND ifa.AD_Client_ID=t.AD_Client_ID) " + "WHERE M_Locator_ID IS NULL AND LocatorValue IS NOT NULL" + " AND I_IsImported<>'Y'").append(sqlCheck);
    no = DB.executeUpdate(sql.toString(), get_TrxName());
    log.fine("Set Locator from Value=" + no);
    //Goodwill
    //Check current period, 0 means the asset is fully depreciated
    sql = new StringBuffer("UPDATE " + MIFixedAsset.Table_Name + " " + "SET I_IsImported='E', I_ErrorMsg=I_ErrorMsg||'ERR=Invalid Current Period, ' " + "WHERE a_current_period < 0 OR a_current_period > uselifemonths" + " AND I_IsImported<>'Y'").append(sqlCheck);
    no = DB.executeUpdate(sql.toString(), get_TrxName());
    if (no != 0)
        log.warning("Invalid Current Period=" + no);
    //Asset cost must not be null, 0, or negative numbers
    sql = new StringBuffer("UPDATE " + MIFixedAsset.Table_Name + " " + "SET I_IsImported='E', I_ErrorMsg=I_ErrorMsg ||'ERR=Invalid Asset Cost, ' " + "WHERE a_asset_cost < 1 AND I_IsImported<>'Y'").append(sqlCheck);
    no = DB.executeUpdate(sql.toString(), get_TrxName());
    if (no != 0)
        log.warning("Invalid Asset Cost=" + no);
    double toleranceAmt = MSysConfig.getDoubleValue("TOLERANCE_AMT", 1, 0, 0);
    sql = new StringBuffer("UPDATE " + MIFixedAsset.Table_Name + " " + "SET I_IsImported='E', I_ErrorMsg=I_ErrorMsg||'ERR=Invalid Accumulated Depreciation, ' " + "WHERE ABS(((a_asset_cost / uselifemonths) * (a_current_period - 1)) - a_accumulated_depr) > " + BigDecimal.valueOf(toleranceAmt) + //Goodwill - no toleranceAmt check on fully depreciated asset (current period = 0)
    " AND I_IsImported<>'Y' AND a_current_period <> 0").append(sqlCheck);
    no = DB.executeUpdate(sql.toString(), get_TrxName());
    if (no != 0)
        log.warning("Invalid Accumulated Depreciation=" + no);
    if (p_IsValidateOnly)
        return "Data Was Validated";
    int cnt_ok = 0;
    int cnt_err = 0;
    String whereClause = "NVL(I_IsImported,'N')='N'" + sqlCheck;
    POResultSet<X_I_FixedAsset> rs = new Query(getCtx(), X_I_FixedAsset.Table_Name, whereClause, get_TrxName()).scroll();
    try {
        while (rs.hasNext()) {
            X_I_FixedAsset xfa = rs.next();
            MIFixedAsset ifa = new MIFixedAsset(getCtx(), xfa.getI_FixedAsset_ID(), get_TrxName());
            try {
                MAssetAddition assetAdd = MAssetAddition.createAsset(ifa);
                if (assetAdd == null) {
                    ifa.setI_ErrorMsg("Failed Create Assets");
                    cnt_err++;
                    assetAdd = null;
                    continue;
                }
                //	assetAdd.getA_Asset().setA_Asset_Group_ID(p_A_Asset_Group_ID);
                if (p_DateAcct != null)
                    assetAdd.setDateAcct(p_DateAcct);
                assetAdd.saveEx();
                //Process Asset Addition Based on Document Action
                if (!assetAdd.processIt(ifa.getDocAction())) {
                    ifa.setI_ErrorMsg("Failed Process Asset Addition");
                    cnt_err++;
                    assetAdd = null;
                    continue;
                }
                assetAdd.saveEx();
                //Goodwill - Set asset properties is imported on fully depreciated status
                if (ifa.getA_Current_Period() == 0) {
                    MAsset asset = new MAsset(getCtx(), assetAdd.getA_Asset_ID(), get_TrxName());
                    asset.setUseLifeYears(0);
                    asset.setUseLifeMonths(0);
                    asset.setLifeUseUnits(0);
                    asset.setUseUnits(0);
                    asset.saveEx();
                }
                //Goodwill - End set
                ifa.setI_IsImported(true);
                ifa.setI_ErrorMsg(null);
                ifa.setA_Asset_ID(assetAdd.getA_Asset_ID());
                ifa.setProcessed(true);
                ifa.saveEx();
                cnt_ok++;
            } catch (Exception e) {
                ifa.setI_ErrorMsg(e.getLocalizedMessage());
                cnt_err++;
                ifa.saveEx();
            }
        }
    } finally {
        DB.close(rs);
        rs = null;
        // Goodwill
        //	Set Error to indicator to not imported
        sql = new StringBuffer("UPDATE I_FixedAsset " + "SET I_IsImported='N', Updated=SysDate " + "WHERE I_IsImported<>'Y'").append(sqlCheck);
        no = DB.executeUpdate(sql.toString(), get_TrxName());
        addLog(0, null, new BigDecimal(no), "@Errors@");
        addLog(0, null, new BigDecimal(cnt_ok), "@A_Asset_ID@: @Inserted@");
        addLog(0, null, new BigDecimal(cnt_err), "@A_Asset_ID@: @Failed@");
    }
    return "";
}
Also used : MAssetAddition(org.compiere.model.MAssetAddition) X_I_FixedAsset(org.compiere.model.X_I_FixedAsset) Query(org.compiere.model.Query) MIFixedAsset(org.compiere.model.MIFixedAsset) MAsset(org.compiere.model.MAsset) BigDecimal(java.math.BigDecimal)

Example 8 with MAssetAddition

use of org.compiere.model.MAssetAddition in project adempiere by adempiere.

the class ProjectCreateAsset method doIt.

//	prepare
/**
	 *  Perform process.
	 *  @return Message (translated text)
	 *  @throws Exception if not successful
	 */
protected String doIt() throws Exception {
    if (m_C_Project_ID == 0) {
        return "Missing Mandatory Field Value (Project)";
    }
    MProject project = new MProject(getCtx(), m_C_Project_ID, get_TrxName());
    log.info("doIt - " + project);
    // Goodwill
    if (!MProject.PROJECTCATEGORY_AssetProject.equals(project.getProjectCategory()))
        return "Project is not asset type";
    //
    MProduct product = new MProduct(getCtx(), m_Product_ID, get_TrxName());
    MProductCategory pc = MProductCategory.get(getCtx(), product.getM_Product_Category_ID());
    if (pc.getA_Asset_Group_ID() == 0) {
        return "Product is not asset type";
    }
    MAssetAddition assetAdd = MAssetAddition.createAsset(project, product);
    assetAdd.setDateAcct(m_DateTrx);
    assetAdd.setDateDoc(m_DateTrx);
    assetAdd.setM_Product_ID(m_Product_ID);
    if (m_UseLifeYears > 0) {
        assetAdd.setDeltaUseLifeYears(m_UseLifeYears);
        assetAdd.setDeltaUseLifeYears_F(m_UseLifeYears);
    }
    assetAdd.saveEx();
    if (!assetAdd.processIt(DocAction.ACTION_Complete)) {
        return "Error Process Asset Addition";
    }
    assetAdd.saveEx();
    message += ". @A_Asset_Addition_ID@ - " + assetAdd;
    return "Asset Created " + message;
}
Also used : MProduct(org.compiere.model.MProduct) MAssetAddition(org.compiere.model.MAssetAddition) MProductCategory(org.compiere.model.MProductCategory) MProject(org.compiere.model.MProject)

Example 9 with MAssetAddition

use of org.compiere.model.MAssetAddition in project adempiere by adempiere.

the class A_Asset_CreateFromMatchInv method doIt.

//	prepare 
protected String doIt() throws Exception {
    MMatchInv match = new MMatchInv(getCtx(), p_M_MatchInv_ID, get_TrxName());
    if (match == null || match.get_ID() <= 0) {
        throw new AssetException("@NotFound@ @M_MatchInv_ID@=" + match + "(ID=" + p_M_MatchInv_ID + ")");
    }
    MAssetAddition assetAdd = MAssetAddition.createAsset(match);
    return "@A_Asset_Addition_ID@ - " + assetAdd;
}
Also used : AssetException(org.compiere.FA.exceptions.AssetException) MAssetAddition(org.compiere.model.MAssetAddition) MMatchInv(org.compiere.model.MMatchInv)

Aggregations

MAssetAddition (org.compiere.model.MAssetAddition)9 BigDecimal (java.math.BigDecimal)2 Query (org.compiere.model.Query)2 ArrayList (java.util.ArrayList)1 AssetException (org.compiere.FA.exceptions.AssetException)1 I_C_Project (org.compiere.model.I_C_Project)1 MAccount (org.compiere.model.MAccount)1 MAsset (org.compiere.model.MAsset)1 MIFixedAsset (org.compiere.model.MIFixedAsset)1 MMatchInv (org.compiere.model.MMatchInv)1 MProduct (org.compiere.model.MProduct)1 MProductCategory (org.compiere.model.MProductCategory)1 MProject (org.compiere.model.MProject)1 X_I_FixedAsset (org.compiere.model.X_I_FixedAsset)1