From b2e12659d90c8b1b5f951a9f6966a60ca1807e2c Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Thu, 2 Aug 2007 05:19:11 +0000 Subject: [PATCH] FR [ 1754879 ] Enhancements on sending e-mail --- client/src/org/compiere/apps/EMailDialog.java | 86 ++++++++++++++++--- migration/330-trunk/005_FR_1754879.sql | 13 +++ .../330-trunk/postgresql/005_FR_1754879.sql | 13 +++ 3 files changed, 98 insertions(+), 14 deletions(-) create mode 100644 migration/330-trunk/005_FR_1754879.sql create mode 100644 migration/330-trunk/postgresql/005_FR_1754879.sql diff --git a/client/src/org/compiere/apps/EMailDialog.java b/client/src/org/compiere/apps/EMailDialog.java index 3a60ec785a..b9fa002d3c 100644 --- a/client/src/org/compiere/apps/EMailDialog.java +++ b/client/src/org/compiere/apps/EMailDialog.java @@ -13,7 +13,7 @@ * For the text or an alternative of this public license, you may reach us * * ComPiere, Inc., 2620 Augustine Dr. #245, Santa Clara, CA 95054, USA * * or via info@compiere.org or http://www.compiere.org/license.html * - * Contributor(s): phib - fixing bug [ 1568765 ] Close email dialog button broken * + * Contributor(s): * *****************************************************************************/ package org.compiere.apps; @@ -36,6 +36,11 @@ import org.compiere.util.*; * * globalqss: integrate phib fixing bug reported here * http://sourceforge.net/tracker/index.php?func=detail&aid=1568765&group_id=176962&atid=879332 + * + * phib - fixing bug [ 1568765 ] Close email dialog button broken + * + * globalqss - Carlos Ruiz - implement CC - FR [ 1754879 ] Enhancements on sending e-mail + * */ public class EMailDialog extends CDialog implements ActionListener, VetoableChangeListener @@ -96,6 +101,8 @@ public class EMailDialog extends CDialog "EMail IS NOT NULL"); fUser = new VLookup ("AD_User_ID", false, false, true, lookup); fUser.addVetoableChangeListener(this); + fCcUser = new VLookup ("AD_User_ID", false, false, true, lookup); + fCcUser.addVetoableChangeListener(this); jbInit(); } catch(Exception ex) @@ -114,8 +121,11 @@ public class EMailDialog extends CDialog private MUser m_from = null; /** Primary Recipient */ private MUser m_user = null; + /** Cc Recipient */ + private MUser m_ccuser = null; // private String m_to; + private String m_cc; private String m_subject; private String m_message; /** File to be optionally attached */ @@ -129,10 +139,13 @@ public class EMailDialog extends CDialog private GridBagLayout headerLayout = new GridBagLayout(); private CTextField fFrom = new CTextField(20); private CTextField fTo = new CTextField(20); + private CTextField fCc = new CTextField(20); private VLookup fUser = null; + private VLookup fCcUser = null; private CTextField fSubject = new CTextField(40); private CLabel lFrom = new CLabel(); private CLabel lTo = new CLabel(); + private CLabel lCc = new CLabel(); private CLabel lSubject = new CLabel(); private CLabel lAttachment = new CLabel(); private CTextField fAttachment = new CTextField(40); @@ -147,6 +160,7 @@ public class EMailDialog extends CDialog { lFrom.setText(Msg.getMsg(Env.getCtx(), "From") + ":"); lTo.setText(Msg.getMsg(Env.getCtx(), "To") + ":"); + lCc.setText(Msg.getMsg(Env.getCtx(), "Cc") + ":"); lSubject.setText(Msg.getMsg(Env.getCtx(), "Subject") + ":"); lAttachment.setText(Msg.getMsg(Env.getCtx(), "Attachment") + ":"); fFrom.setReadWrite(false); @@ -170,15 +184,21 @@ public class EMailDialog extends CDialog ,GridBagConstraints.EAST, GridBagConstraints.HORIZONTAL, new Insets(0, 0, 0, 10), 0, 0)); headerPanel.add(fTo, new GridBagConstraints(1, 2, 1, 1, 0.0, 0.0 ,GridBagConstraints.WEST, GridBagConstraints.HORIZONTAL, new Insets(0, 0, 0, 10), 0, 0)); + headerPanel.add(lCc, new GridBagConstraints(0, 3, 1, 1, 0.0, 0.0 + ,GridBagConstraints.EAST, GridBagConstraints.NONE, new Insets(0, 10, 0, 5), 0, 0)); + headerPanel.add(fCcUser, new GridBagConstraints(1, 3, 1, 1, 0.0, 0.0 + ,GridBagConstraints.EAST, GridBagConstraints.HORIZONTAL, new Insets(0, 0, 0, 10), 0, 0)); + headerPanel.add(fCc, new GridBagConstraints(1, 4, 1, 1, 0.0, 0.0 + ,GridBagConstraints.WEST, GridBagConstraints.HORIZONTAL, new Insets(0, 0, 0, 10), 0, 0)); - headerPanel.add(lSubject, new GridBagConstraints(0, 3, 1, 1, 0.0, 0.0 + headerPanel.add(lSubject, new GridBagConstraints(0, 6, 1, 1, 0.0, 0.0 ,GridBagConstraints.EAST, GridBagConstraints.NONE, new Insets(5, 10, 0, 5), 0, 0)); - headerPanel.add(fSubject, new GridBagConstraints(1, 3, 1, 1, 0.0, 0.0 + headerPanel.add(fSubject, new GridBagConstraints(1, 6, 1, 1, 0.0, 0.0 ,GridBagConstraints.WEST, GridBagConstraints.HORIZONTAL, new Insets(5, 0, 0, 10), 1, 0)); - headerPanel.add(lAttachment, new GridBagConstraints(0, 4, 1, 1, 0.0, 0.0 + headerPanel.add(lAttachment, new GridBagConstraints(0, 7, 1, 1, 0.0, 0.0 ,GridBagConstraints.EAST, GridBagConstraints.NONE, new Insets(5, 10, 0, 5), 0, 0)); - headerPanel.add(fAttachment, new GridBagConstraints(1, 4, 1, 1, 0.0, 0.0 + headerPanel.add(fAttachment, new GridBagConstraints(1, 7, 1, 1, 0.0, 0.0 ,GridBagConstraints.WEST, GridBagConstraints.HORIZONTAL, new Insets(5, 0, 0, 10), 1, 0)); mainPanel.add(fMessage, BorderLayout.CENTER); @@ -212,6 +232,15 @@ public class EMailDialog extends CDialog fTo.setText(m_to); } // setTo + /** + * Set CC Address + */ + public void setCc(String newCc) + { + m_cc = newCc; + fCc.setText(m_cc); + } // setCc + /** * Get Address */ @@ -221,6 +250,15 @@ public class EMailDialog extends CDialog return m_to; } // getTo + /** + * Get CC Address + */ + public String getCc() + { + m_cc = fCc.getText(); + return m_cc; + } // getCc + /** * Set Sender */ @@ -337,6 +375,13 @@ public class EMailDialog extends CDialog { while (st.hasMoreTokens()) email.addTo(st.nextToken()); + // cc + StringTokenizer stcc = new StringTokenizer(getCc(), " ,;", false); + String cc = stcc.nextToken(); + if (cc != null && cc.length() > 0) + email.addCc(cc); + while (stcc.hasMoreTokens()) + email.addCc(stcc.nextToken()); // Attachment if (m_attachFile != null && m_attachFile.exists()) email.addAttachment(m_attachFile); @@ -371,17 +416,30 @@ public class EMailDialog extends CDialog public void vetoableChange (PropertyChangeEvent evt) throws PropertyVetoException { + VLookup source = (VLookup) evt.getSource(); Object value = evt.getNewValue(); log.info("Value=" + value); - if (value == null) - fTo.setText(""); - if (value instanceof Integer) - { - int AD_User_ID = ((Integer)value).intValue(); - m_user = MUser.get(Env.getCtx(), AD_User_ID); - fTo.setValue(m_user.getEMail()); + if (source.equals(fUser)) { + // fUser + if (value == null) + fTo.setText(""); + if (value instanceof Integer) + { + int AD_User_ID = ((Integer)value).intValue(); + m_user = MUser.get(Env.getCtx(), AD_User_ID); + fTo.setValue(m_user.getEMail()); + } + } else { + // fCcUser + if (value == null) + fCc.setText(""); + if (value instanceof Integer) + { + int AD_User_ID = ((Integer)value).intValue(); + m_ccuser = MUser.get(Env.getCtx(), AD_User_ID); + fCc.setValue(m_ccuser.getEMail()); + } } } // vetoableChange -} // VEMailDialog - +} // VEMailDialog \ No newline at end of file diff --git a/migration/330-trunk/005_FR_1754879.sql b/migration/330-trunk/005_FR_1754879.sql new file mode 100644 index 0000000000..9c2c5f6f8e --- /dev/null +++ b/migration/330-trunk/005_FR_1754879.sql @@ -0,0 +1,13 @@ +INSERT INTO AD_MESSAGE + (ad_message_id, ad_client_id, ad_org_id, isactive, + created, createdby, + updated, updatedby, + VALUE, msgtext, msgtype, entitytype + ) + VALUES (50018, 0, 0, 'Y', + TO_DATE ('08/02/2007 00:15:12', 'MM/DD/YYYY HH24:MI:SS'), 100, + TO_DATE ('08/02/2007 00:15:12', 'MM/DD/YYYY HH24:MI:SS'), 100, + 'CC', 'CC', 'M', 'D' + ); + +COMMIT ; diff --git a/migration/330-trunk/postgresql/005_FR_1754879.sql b/migration/330-trunk/postgresql/005_FR_1754879.sql new file mode 100644 index 0000000000..f080f79220 --- /dev/null +++ b/migration/330-trunk/postgresql/005_FR_1754879.sql @@ -0,0 +1,13 @@ +INSERT INTO AD_MESSAGE + (ad_message_id, ad_client_id, ad_org_id, isactive, + created, createdby, + updated, updatedby, + VALUE, msgtext, msgtype, entitytype + ) + VALUES (50018, 0, 0, 'Y', + TO_TIMESTAMP ('08/02/2007 00:15:12', 'MM/DD/YYYY HH24:MI:SS'), 100, + TO_TIMESTAMP ('08/02/2007 00:15:12', 'MM/DD/YYYY HH24:MI:SS'), 100, + 'CC', 'CC', 'M', 'D' + ); + +COMMIT ;