Minor Typo fixes.
This commit is contained in:
parent
c27e82b821
commit
80a785f8f3
|
@ -28,7 +28,7 @@ import org.compiere.model.MJournalLine;
|
||||||
import org.compiere.util.Env;
|
import org.compiere.util.Env;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Post Invoice Documents.
|
* Post GL Journal Documents.
|
||||||
* <pre>
|
* <pre>
|
||||||
* Table: GL_Journal (224)
|
* Table: GL_Journal (224)
|
||||||
* Document Types: GLJ
|
* Document Types: GLJ
|
||||||
|
@ -47,7 +47,7 @@ public class Doc_GLJournal extends Doc
|
||||||
protected Doc_GLJournal (MAcctSchema[] ass, ResultSet rs, String trxName)
|
protected Doc_GLJournal (MAcctSchema[] ass, ResultSet rs, String trxName)
|
||||||
{
|
{
|
||||||
super(ass, MJournal.class, rs, null, trxName);
|
super(ass, MJournal.class, rs, null, trxName);
|
||||||
} // Foc_GL_Journal
|
} // Doc_GL_Journal
|
||||||
|
|
||||||
/** Posting Type */
|
/** Posting Type */
|
||||||
private String m_PostingType = null;
|
private String m_PostingType = null;
|
||||||
|
|
|
@ -345,7 +345,7 @@ public class MCostQueue extends X_M_CostQueue
|
||||||
} // MCostQueue
|
} // MCostQueue
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Load Cosntructor
|
* Load Constructor
|
||||||
* @param ctx context
|
* @param ctx context
|
||||||
* @param rs result set
|
* @param rs result set
|
||||||
* @param trxName trx
|
* @param trxName trx
|
||||||
|
|
|
@ -80,7 +80,7 @@ public class MInOut extends X_M_InOut implements DocAction
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Create Meader
|
// Create Header
|
||||||
MInOut retValue = new MInOut (order, 0, movementDate);
|
MInOut retValue = new MInOut (order, 0, movementDate);
|
||||||
retValue.setDocAction(complete ? DOCACTION_Complete : DOCACTION_Prepare);
|
retValue.setDocAction(complete ? DOCACTION_Complete : DOCACTION_Prepare);
|
||||||
|
|
||||||
|
@ -737,7 +737,7 @@ public class MInOut extends X_M_InOut implements DocAction
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set Processed.
|
* Set Processed.
|
||||||
* Propergate to Lines/Taxes
|
* Propagate to Lines/Taxes
|
||||||
* @param processed processed
|
* @param processed processed
|
||||||
*/
|
*/
|
||||||
public void setProcessed (boolean processed)
|
public void setProcessed (boolean processed)
|
||||||
|
@ -1649,7 +1649,8 @@ public class MInOut extends X_M_InOut implements DocAction
|
||||||
if (product != null && line.getM_AttributeSetInstance_ID() == 0)
|
if (product != null && line.getM_AttributeSetInstance_ID() == 0)
|
||||||
{
|
{
|
||||||
//Validate Transaction
|
//Validate Transaction
|
||||||
if (getMovementType().compareTo(MInOut.MOVEMENTTYPE_CustomerReturns) == 0 || getMovementType().compareTo(MInOut.MOVEMENTTYPE_VendorReceipts) == 0 )
|
if (getMovementType().compareTo(MInOut.MOVEMENTTYPE_CustomerReturns) == 0
|
||||||
|
|| getMovementType().compareTo(MInOut.MOVEMENTTYPE_VendorReceipts) == 0 )
|
||||||
{
|
{
|
||||||
MAttributeSetInstance asi = null;
|
MAttributeSetInstance asi = null;
|
||||||
//auto balance negative on hand
|
//auto balance negative on hand
|
||||||
|
|
|
@ -295,7 +295,7 @@ public class MInOutLine extends X_M_InOutLine
|
||||||
*/
|
*/
|
||||||
public void setM_Locator_ID(BigDecimal Qty)
|
public void setM_Locator_ID(BigDecimal Qty)
|
||||||
{
|
{
|
||||||
// Locator esatblished
|
// Locator established
|
||||||
if (getM_Locator_ID() != 0)
|
if (getM_Locator_ID() != 0)
|
||||||
return;
|
return;
|
||||||
// No Product
|
// No Product
|
||||||
|
|
|
@ -98,7 +98,7 @@ public class MInOutLineMA extends X_M_InOutLineMA
|
||||||
} // MInOutLineMA
|
} // MInOutLineMA
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Load Cosntructor
|
* Load Constructor
|
||||||
* @param ctx context
|
* @param ctx context
|
||||||
* @param rs result set
|
* @param rs result set
|
||||||
* @param trxName trx
|
* @param trxName trx
|
||||||
|
|
Loading…
Reference in New Issue