📄 vassignment.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 Business Solution
* The Initial Developer of the Original Code is Jorg Janke and ComPiere, Inc.
* Portions created by Jorg Janke are Copyright (C) 1999-2002 Jorg Janke, parts
* created by ComPiere are Copyright (C) ComPiere, Inc.; All Rights Reserved.
* Contributor(s): ______________________________________.
*****************************************************************************/
package org.compiere.grid.ed;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import java.beans.*;
import java.sql.*;
import java.util.*;
import java.text.*;
import org.compiere.apps.*;
import org.compiere.model.*;
import org.compiere.util.*;
import org.compiere.swing.*;
import org.compiere.plaf.*;
import org.compiere.apps.search.*;
/**
* Resource Assignment Entry
*
* @author Jorg Janke
* @version $Id: VAssignment.java,v 1.11 2003/03/19 06:44:52 jjanke Exp $
*/
public class VAssignment extends JComponent
implements VEditor, ActionListener
{
/**
* IDE Constructor
*/
public VAssignment()
{
this (false, false, true);
} // VAssigment
/**
* Create Resource Assigment.
* <pre>
* Resource DateTimeFrom Qty UOM Button
* </pre>
* @param mandatory mandatory
* @param isReadOnly read only
* @param isUpdateable updateable
*/
public VAssignment (boolean mandatory, boolean isReadOnly, boolean isUpdateable)
{
LookAndFeel.installBorder(this, "TextField.border");
this.setLayout(new BorderLayout());
// Size
this.setPreferredSize(m_text.getPreferredSize());
int height = m_text.getPreferredSize().height;
// *** Text ***
m_text.setEditable(false);
m_text.setFocusable(false);
m_text.setBorder(null);
m_text.setHorizontalAlignment(JTextField.LEADING);
// Background
setMandatory(mandatory);
this.add(m_text, BorderLayout.CENTER);
// *** Button ***
m_button.setIcon(Env.getImageIcon("Assignment10.gif"));
m_button.setMargin(new Insets(0, 0, 0, 0));
m_button.setPreferredSize(new Dimension(height, height));
m_button.addActionListener(this);
m_button.setFocusable(true);
this.add(m_button, BorderLayout.EAST);
// Prefereed Size
this.setPreferredSize(this.getPreferredSize()); // causes r/o to be the same length
// ReadWrite
if (isReadOnly || !isUpdateable)
setReadWrite(false);
else
setReadWrite(true);
// Popup
m_text.addMouseListener(new VAssignment_mouseAdapter(this));
menuEditor = new JMenuItem(Msg.getMsg(Env.getCtx(), "InfoResource"), Env.getImageIcon("Zoom16.gif"));
menuEditor.addActionListener(this);
popupMenu.add(menuEditor);
} // VAssignment
/** Data Value */
private Object m_value = null;
/** Get Info */
private PreparedStatement m_pstmt = null;
/** The Text Field */
private JTextField m_text = new JTextField (VLookup.DISPLAY_LENGTH);
/** The Button */
private CButton m_button = new CButton();
JPopupMenu popupMenu = new JPopupMenu();
private JMenuItem menuEditor;
private boolean m_readWrite;
private boolean m_mandatory;
/** The Format */
private DateFormat m_dateFormat = DisplayType.getDateFormat(DisplayType.DateTime);
private NumberFormat m_qtyFormat = DisplayType.getNumberFormat(DisplayType.Quantity);
/**
* Dispose resources
*/
public void dispose()
{
try
{
if (m_pstmt != null)
m_pstmt.close();
}
catch (Exception e)
{
Log.error("VAssignment.dispose");
}
m_text = null;
m_button = null;
} // dispose
/**
* Set Mandatory
* @param mandatory mandatory
*/
public void setMandatory (boolean mandatory)
{
m_mandatory = mandatory;
m_button.setMandatory(mandatory);
setBackground (false);
} // setMandatory
/**
* Get Mandatory
* @return mandatory
*/
public boolean isMandatory()
{
return m_mandatory;
} // isMandatory
/**
* Set ReadWrite
* @param rw read rwite
*/
public void setReadWrite (boolean rw)
{
m_readWrite = rw;
m_button.setReadWrite(rw);
setBackground (false);
} // setReadWrite
/**
* Is Read Write
* @return read write
*/
public boolean isReadWrite()
{
return m_readWrite;
} // isReadWrite
/**
* Set Foreground
* @param color color
*/
public void setForeground (Color color)
{
m_text.setForeground(color);
} // SetForeground
/**
* Set Background
* @param error Error
*/
public void setBackground (boolean error)
{
if (error)
setBackground(CompierePLAF.getFieldBackground_Error());
else if (!m_readWrite)
setBackground(CompierePLAF.getFieldBackground_Inactive());
else if (m_mandatory)
setBackground(CompierePLAF.getFieldBackground_Mandatory());
else
setBackground(CompierePLAF.getFieldBackground_Normal());
} // setBackground
/**
* Set Background
* @param color Color
*/
public void setBackground (Color color)
{
m_text.setBackground(color);
} // setBackground
/*************************************************************************/
/**
* Set/lookup Value
* @param value value
*/
public void setValue(Object value)
{
if (value == m_value)
return;
m_value = value;
int S_ResourceAssignment_ID = 0;
if (m_value != null && m_value instanceof Integer)
S_ResourceAssignment_ID = ((Integer)m_value).intValue();
// Set Empty
if (S_ResourceAssignment_ID == 0)
{
m_text.setText("");
return;
}
// Statement
if (m_pstmt == null)
m_pstmt = DB.prepareStatement("SELECT r.Name,ra.AssignDateFrom,ra.Qty,uom.UOMSymbol "
+ "FROM S_ResourceAssignment ra, S_Resource r, S_ResourceType rt, C_UOM uom "
+ "WHERE ra.S_ResourceAssignment_ID=?"
+ " AND ra.S_Resource_ID=r.S_Resource_ID"
+ " AND r.S_ResourceType_ID=rt.S_ResourceType_ID"
+ " and rt.C_UOM_ID=uom.C_UOM_ID");
//
try
{
m_pstmt.setInt(1, S_ResourceAssignment_ID);
ResultSet rs = m_pstmt.executeQuery();
if (rs.next())
{
StringBuffer sb = new StringBuffer(rs.getString(1));
sb.append(" ").append(m_dateFormat.format(rs.getTimestamp(2)))
.append(" ").append(m_qtyFormat.format(rs.getBigDecimal(3)))
.append(" ").append(rs.getString(4).trim());
m_text.setText(sb.toString());
}
else
m_text.setText("");
rs.close();
}
catch (Exception e)
{
Log.error("VAssigment.setValue", e);
}
} // setValue
/**
* Get Value
* @return value
*/
public Object getValue()
{
return m_value;
} // getValue
/**
* Get Display Value
* @return info
*/
public String getDisplay()
{
return m_text.getText();
} // getDisplay
/*************************************************************************/
/**
* Set Field - NOP
* @param mField MField
*/
public void setField(MField mField)
{
} // setField
/**
* Action Listener Interface
* @param listener listener
*/
public void addActionListener(ActionListener listener)
{
// m_text.addActionListener(listener);
} // addActionListener
/**
* Action Listener - start dialog
* @param e Event
*/
public void actionPerformed(ActionEvent e)
{
if (!m_button.isEnabled())
return;
m_button.setEnabled(false);
//
Integer oldValue = (Integer)getValue();
int S_ResourceAssignment_ID = oldValue == null ? 0 : oldValue.intValue();
MAssignment ma = new MAssignment(Env.getCtx(), S_ResourceAssignment_ID);
// Start VAssignment Dialog
if (S_ResourceAssignment_ID != 0)
{
VAssignmentDialog vad = new VAssignmentDialog (Env.getFrame(this), ma, true, true);
ma = vad.getMAssignment();
}
// Start InfoSchedule directly
else
{
InfoSchedule is = new InfoSchedule(Env.getFrame(this), ma, true);
ma = is.getMAssignment();
}
// Set Value
if (ma != null && ma.getS_ResourceAssignment_ID() != 0)
{
setValue(new Integer(ma.getS_ResourceAssignment_ID()));
try
{
fireVetoableChange("S_ResourceAssignment_ID", new Object(), getValue());
}
catch (PropertyVetoException pve)
{
Log.error("VAssignment.actionPerformed", pve);
}
}
m_button.setEnabled(true);
requestFocus();
} // actionPerformed
/**
* Property Change Listener
* @param evt event
*/
public void propertyChange (PropertyChangeEvent evt)
{
if (evt.getPropertyName().equals(org.compiere.model.MField.PROPERTY))
setValue(evt.getNewValue());
} // propertyChange
} // VAssignment
/**
* Mouse Listener
*/
final class VAssignment_mouseAdapter extends MouseAdapter
{
/**
* Constructor
* @param adaptee adaptee
*/
VAssignment_mouseAdapter(VAssignment adaptee)
{
this.adaptee = adaptee;
} // VAssignment_mouseAdapter
private VAssignment adaptee;
/**
* Mouse Listener
* @param e event
*/
public void mouseClicked(MouseEvent e)
{
// Double Click
if (e.getClickCount() > 1)
adaptee.actionPerformed(new ActionEvent(e.getSource(), e.getID(), "Mouse"));
// popup menu
if (SwingUtilities.isRightMouseButton(e))
adaptee.popupMenu.show((Component)e.getSource(), e.getX(), e.getY());
} // mouse Clicked
} // VAssignment_mouseAdapter
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -