📄 minoutconfirm.java
字号:
/******************************************************************************
* The contents of this file are subject to the Compiere License Version 1.1
* ("License"); You may not use this file except in compliance with the License
* You may obtain a copy of the License at http://www.compiere.org/license.html
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for
* the specific language governing rights and limitations under the License.
* The Original Code is Compiere ERP & CRM Smart Business Solution. The Initial
* Developer of the Original Code is Jorg Janke. Portions created by Jorg Janke
* are Copyright (C) 1999-2005 Jorg Janke.
* All parts are Copyright (C) 1999-2005 ComPiere, Inc. All Rights Reserved.
* Contributor(s): ______________________________________.
*****************************************************************************/
package org.compiere.model;
import java.io.*;
import java.math.*;
import java.sql.*;
import java.util.*;
import java.util.logging.*;
import org.compiere.process.*;
import org.compiere.util.*;
/**
* Shipment Confirmation Model
*
* @author Jorg Janke
* @version $Id: MInOutConfirm.java,v 1.22 2005/11/12 22:58:56 jjanke Exp $
*/
public class MInOutConfirm extends X_M_InOutConfirm implements DocAction
{
/**
* Create Confirmation or return existing one
* @param ship shipment
* @param confirmType confirmation type
* @param checkExisting if false, new confirmation is created
* @return Confirmation
*/
public static MInOutConfirm create (MInOut ship, String confirmType, boolean checkExisting)
{
if (checkExisting)
{
MInOutConfirm[] confirmations = ship.getConfirmations(false);
for (int i = 0; i < confirmations.length; i++)
{
MInOutConfirm confirm = confirmations[i];
if (confirm.getConfirmType().equals(confirmType))
{
s_log.info("create - existing: " + confirm);
return confirm;
}
}
}
MInOutConfirm confirm = new MInOutConfirm (ship, confirmType);
confirm.save(ship.get_TrxName());
MInOutLine[] shipLines = ship.getLines(false);
for (int i = 0; i < shipLines.length; i++)
{
MInOutLine sLine = shipLines[i];
MInOutLineConfirm cLine = new MInOutLineConfirm (confirm);
cLine.setInOutLine(sLine);
cLine.save(ship.get_TrxName());
}
s_log.info("New: " + confirm);
return confirm;
} // MInOutConfirm
/** Static Logger */
private static CLogger s_log = CLogger.getCLogger (MInOutConfirm.class);
/**************************************************************************
* Standard Constructor
* @param ctx context
* @param M_InOutConfirm_ID id
* @param trxName transaction
*/
public MInOutConfirm (Properties ctx, int M_InOutConfirm_ID, String trxName)
{
super (ctx, M_InOutConfirm_ID, trxName);
if (M_InOutConfirm_ID == 0)
{
// setConfirmType (null);
setDocAction (DOCACTION_Complete); // CO
setDocStatus (DOCSTATUS_Drafted); // DR
setIsApproved (false);
setIsCancelled (false);
setIsInDispute(false);
super.setProcessed (false);
}
} // MInOutConfirm
/**
* Load Constructor
* @param ctx context
* @param rs result set
*/
public MInOutConfirm (Properties ctx, ResultSet rs, String trxName)
{
super(ctx, rs, trxName);
} // MInOutConfirm
/**
* Parent Constructor
* @param ship shipment
* @param confirmType confirmation type
*/
public MInOutConfirm (MInOut ship, String confirmType)
{
this (ship.getCtx(), 0, ship.get_TrxName());
setClientOrg(ship);
setM_InOut_ID (ship.getM_InOut_ID());
setConfirmType (confirmType);
} // MInOutConfirm
/** Confirm Lines */
private MInOutLineConfirm[] m_lines = null;
/** Credit Memo to create */
private MInvoice m_creditMemo = null;
/** Physical Inventory to create */
private MInventory m_inventory = null;
/**
* Get Lines
* @param requery requery
* @return array of lines
*/
public MInOutLineConfirm[] getLines (boolean requery)
{
if (m_lines != null && !requery)
return m_lines;
String sql = "SELECT * FROM M_InOutLineConfirm "
+ "WHERE M_InOutConfirm_ID=?";
ArrayList<MInOutLineConfirm> list = new ArrayList<MInOutLineConfirm>();
PreparedStatement pstmt = null;
try
{
pstmt = DB.prepareStatement (sql, get_TrxName());
pstmt.setInt (1, getM_InOutConfirm_ID());
ResultSet rs = pstmt.executeQuery ();
while (rs.next ())
list.add(new MInOutLineConfirm(getCtx(), rs, get_TrxName()));
rs.close ();
pstmt.close ();
pstmt = null;
}
catch (Exception e)
{
log.log(Level.SEVERE, sql, e);
}
try
{
if (pstmt != null)
pstmt.close ();
pstmt = null;
}
catch (Exception e)
{
pstmt = null;
}
m_lines = new MInOutLineConfirm[list.size ()];
list.toArray (m_lines);
return m_lines;
} // getLines
/**
* Add to Description
* @param description text
*/
public void addDescription (String description)
{
String desc = getDescription();
if (desc == null)
setDescription(description);
else
setDescription(desc + " | " + description);
} // addDescription
/**
* Get Name of ConfirmType
* @return confirm type
*/
public String getConfirmTypeName ()
{
return MRefList.getListName (getCtx(), CONFIRMTYPE_AD_Reference_ID, getConfirmType());
} // getConfirmTypeName
/**
* String Representation
* @return info
*/
public String toString ()
{
StringBuffer sb = new StringBuffer ("MInOutConfirm[");
sb.append(get_ID()).append("-").append(getSummary())
.append ("]");
return sb.toString ();
} // toString
/**
* Get Document Info
* @return document info (untranslated)
*/
public String getDocumentInfo()
{
return Msg.getElement(getCtx(), "M_InOutConfirm_ID") + " " + getDocumentNo();
} // getDocumentInfo
/**
* Create PDF
* @return File or null
*/
public File createPDF ()
{
try
{
File temp = File.createTempFile(get_TableName()+get_ID()+"_", ".pdf");
return createPDF (temp);
}
catch (Exception e)
{
log.severe("Could not create PDF - " + e.getMessage());
}
return null;
} // getPDF
/**
* Create PDF file
* @param file output file
* @return file if success
*/
public File createPDF (File file)
{
// ReportEngine re = ReportEngine.get (getCtx(), ReportEngine.INVOICE, getC_Invoice_ID());
// if (re == null)
return null;
// return re.getPDF(file);
} // createPDF
/**
* Set Approved
* @param IsApproved approval
*/
public void setIsApproved (boolean IsApproved)
{
if (IsApproved && !isApproved())
{
int AD_User_ID = Env.getAD_User_ID(getCtx());
MUser user = MUser.get(getCtx(), AD_User_ID);
String info = user.getName()
+ ": "
+ Msg.translate(getCtx(), "IsApproved")
+ " - " + new Timestamp(System.currentTimeMillis());
addDescription(info);
}
super.setIsApproved (IsApproved);
} // setIsApproved
/**************************************************************************
* Process document
* @param processAction document action
* @return true if performed
*/
public boolean processIt (String processAction)
{
m_processMsg = null;
DocumentEngine engine = new DocumentEngine (this, getDocStatus());
return engine.processIt (processAction, getDocAction());
} // processIt
/** Process Message */
private String m_processMsg = null;
/** Just Prepared Flag */
private boolean m_justPrepared = false;
/**
* Unlock Document.
* @return true if success
*/
public boolean unlockIt()
{
log.info(toString());
setProcessing(false);
return true;
} // unlockIt
/**
* Invalidate Document
* @return true if success
*/
public boolean invalidateIt()
{
log.info(toString());
setDocAction(DOCACTION_Prepare);
return true;
} // invalidateIt
/**
* Prepare Document
* @return new status (In Progress or Invalid)
*/
public String prepareIt()
{
log.info(toString());
m_processMsg = ModelValidationEngine.get().fireDocValidate(this, ModelValidator.TIMING_BEFORE_PREPARE);
if (m_processMsg != null)
return DocAction.STATUS_Invalid;
/**
MDocType dt = MDocType.get(getCtx(), getC_DocTypeTarget_ID());
// Std Period open?
if (!MPeriod.isOpen(getCtx(), getDateAcct(), dt.getDocBaseType()))
{
m_processMsg = "@PeriodClosed@";
return DocAction.STATUS_Invalid;
}
**/
MInOutLineConfirm[] lines = getLines(true);
if (lines.length == 0)
{
m_processMsg = "@NoLines@";
return DocAction.STATUS_Invalid;
}
// Set dispute if not fully confirmed
boolean difference = false;
for (int i = 0; i < lines.length; i++)
{
if (!lines[i].isFullyConfirmed())
{
difference = true;
break;
}
}
setIsInDispute(difference);
//
m_justPrepared = true;
if (!DOCACTION_Complete.equals(getDocAction()))
setDocAction(DOCACTION_Complete);
return DocAction.STATUS_InProgress;
} // prepareIt
/**
* Approve Document
* @return true if success
*/
public boolean approveIt()
{
log.info(toString());
setIsApproved(true);
return true;
} // approveIt
/**
* Reject Approval
* @return true if success
*/
public boolean rejectIt()
{
log.info(toString());
setIsApproved(false);
return true;
} // rejectIt
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -