From 50a9a40e045bb17ce467c760dcf94f478d881624 Mon Sep 17 00:00:00 2001 From: shameem_z Date: Wed, 19 Sep 2007 12:33:52 +0000 Subject: [PATCH] Initial commit of Posterita --- posterita/src/web/jsp/admin/changeEmail.jsp | 80 +++++++ .../src/web/jsp/admin/changePassword.jsp | 79 +++++++ .../jsp/admin/checkDataIntegritySuccess.jsp | 48 ++++ .../web/jsp/admin/checkSequenceSuccess.jsp | 55 +++++ posterita/src/web/jsp/admin/createRole.jsp | 166 ++++++++++++++ posterita/src/web/jsp/admin/emailChanged.jsp | 48 ++++ posterita/src/web/jsp/admin/listRoles.jsp | 92 ++++++++ .../src/web/jsp/admin/passwordChanged.jsp | 52 +++++ posterita/src/web/jsp/admin/userDeleted.jsp | 49 +++++ posterita/src/web/jsp/admin/viewMyDetails.jsp | 138 ++++++++++++ posterita/src/web/jsp/admin/viewRole.jsp | 96 ++++++++ .../src/web/jsp/admin/viewUserDetails.jsp | 120 ++++++++++ posterita/src/web/jsp/admin/viewUsers.jsp | 110 ++++++++++ .../web/jsp/attachment/createAttachment.jsp | 87 ++++++++ .../src/web/jsp/bPartner/bPartnerCreated.jsp | 180 +++++++++++++++ .../src/web/jsp/bPartner/bPartnerDetails.jsp | 184 ++++++++++++++++ .../src/web/jsp/bPartner/createBPartner.jsp | 206 +++++++++++++++++ .../src/web/jsp/bPartner/editBPartner.jsp | 207 ++++++++++++++++++ .../src/web/jsp/bPartner/viewBPartner.jsp | 185 ++++++++++++++++ .../web/jsp/bPartner/viewDealersDetail.jsp | 79 +++++++ 20 files changed, 2261 insertions(+) create mode 100644 posterita/src/web/jsp/admin/changeEmail.jsp create mode 100644 posterita/src/web/jsp/admin/changePassword.jsp create mode 100644 posterita/src/web/jsp/admin/checkDataIntegritySuccess.jsp create mode 100644 posterita/src/web/jsp/admin/checkSequenceSuccess.jsp create mode 100644 posterita/src/web/jsp/admin/createRole.jsp create mode 100644 posterita/src/web/jsp/admin/emailChanged.jsp create mode 100644 posterita/src/web/jsp/admin/listRoles.jsp create mode 100644 posterita/src/web/jsp/admin/passwordChanged.jsp create mode 100644 posterita/src/web/jsp/admin/userDeleted.jsp create mode 100644 posterita/src/web/jsp/admin/viewMyDetails.jsp create mode 100644 posterita/src/web/jsp/admin/viewRole.jsp create mode 100644 posterita/src/web/jsp/admin/viewUserDetails.jsp create mode 100644 posterita/src/web/jsp/admin/viewUsers.jsp create mode 100644 posterita/src/web/jsp/attachment/createAttachment.jsp create mode 100644 posterita/src/web/jsp/bPartner/bPartnerCreated.jsp create mode 100644 posterita/src/web/jsp/bPartner/bPartnerDetails.jsp create mode 100644 posterita/src/web/jsp/bPartner/createBPartner.jsp create mode 100644 posterita/src/web/jsp/bPartner/editBPartner.jsp create mode 100644 posterita/src/web/jsp/bPartner/viewBPartner.jsp create mode 100644 posterita/src/web/jsp/bPartner/viewDealersDetail.jsp diff --git a/posterita/src/web/jsp/admin/changeEmail.jsp b/posterita/src/web/jsp/admin/changeEmail.jsp new file mode 100644 index 0000000000..4e8dd54e03 --- /dev/null +++ b/posterita/src/web/jsp/admin/changeEmail.jsp @@ -0,0 +1,80 @@ +<%-- + * Product: Posterita Web-Based POS and Adempiere Plugin + * Copyright (C) 2007 Posterita Ltd + * This file is part of POSterita + * + * POSterita is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * + * @author tamak +--%> + +<%@ page import="org.posterita.Constants" %> +<%@ page import="org.posterita.user.*" %> + +<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html"%> +<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic"%> +<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean"%> +<%@ taglib uri="/WEB-INF/struts-tiles.tld" prefix="tiles"%> +<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %> + + + + + + + + + + <%@ include file="/jsp/include/tabTop.jsp" %><%@ include file="/jsp/include/tabBottom.jsp" %> + + + + + + + + +
+ +
+ + + + + + <%@ include file="/jsp/include/errors.jsp" %> + + + + + + + + + + + + + + +
+ +
+ +
+ +
+ + <%@ include file="/jsp/include/footerTableBottom.jsp" %> \ No newline at end of file diff --git a/posterita/src/web/jsp/admin/changePassword.jsp b/posterita/src/web/jsp/admin/changePassword.jsp new file mode 100644 index 0000000000..34360a7031 --- /dev/null +++ b/posterita/src/web/jsp/admin/changePassword.jsp @@ -0,0 +1,79 @@ +<%-- + * Product: Posterita Web-Based POS and Adempiere Plugin + * Copyright (C) 2007 Posterita Ltd + * This file is part of POSterita + * + * POSterita is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * + * @author tamak +--%> + +<%@ page import="org.posterita.Constants" %> +<%@ page import="org.posterita.user.*" %> + +<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html"%> +<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic"%> +<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean"%> +<%@ taglib uri="/WEB-INF/struts-tiles.tld" prefix="tiles"%> + + + + + + + + + +<%@ include file="/jsp/include/tabTop.jsp" %><%@ include file="/jsp/include/tabBottom.jsp" %> + + + + + + + + +
+ +
+ + + + + + <%@ include file="/jsp/include/errors.jsp" %> + + + + + + + + + + + + + + +
+ +
+ +
+
+ + <%@ include file="/jsp/include/footerTableBottom.jsp" %> + \ No newline at end of file diff --git a/posterita/src/web/jsp/admin/checkDataIntegritySuccess.jsp b/posterita/src/web/jsp/admin/checkDataIntegritySuccess.jsp new file mode 100644 index 0000000000..4159b268d2 --- /dev/null +++ b/posterita/src/web/jsp/admin/checkDataIntegritySuccess.jsp @@ -0,0 +1,48 @@ +<%-- + * Product: Posterita Web-Based POS and Adempiere Plugin + * Copyright (C) 2007 Posterita Ltd + * This file is part of POSterita + * + * POSterita is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * + * @author Alok +--%> + +<%@ page import="org.posterita.user.*" %> + +<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html"%> +<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic"%> +<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean"%> +<%@ taglib uri="/WEB-INF/struts-tiles.tld" prefix="tiles"%> + + + + + + + + + + + + + + +
+
+ +
+
+<%@ include file="/jsp/include/footerTableBottom.jsp" %> \ No newline at end of file diff --git a/posterita/src/web/jsp/admin/checkSequenceSuccess.jsp b/posterita/src/web/jsp/admin/checkSequenceSuccess.jsp new file mode 100644 index 0000000000..ca460fc900 --- /dev/null +++ b/posterita/src/web/jsp/admin/checkSequenceSuccess.jsp @@ -0,0 +1,55 @@ +<%-- + * Product: Posterita Web-Based POS and Adempiere Plugin + * Copyright (C) 2007 Posterita Ltd + * This file is part of POSterita + * + * POSterita is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * + * @author Alok +--%> + + +<%@ page import="org.posterita.Constants" %> +<%@ page import="org.posterita.user.*" %> +<%@ page import="org.posterita.beans.*" %> +<%@ page import="org.posterita.struts.pos.CashBookAction" %> + + +<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html"%> +<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic"%> +<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean"%> +<%@ taglib uri="/WEB-INF/struts-tiles.tld" prefix="tiles"%> +<%@ taglib uri="/WEB-INF/fmt.tld" prefix="fmt" %> + + + + + +Update Sequence +<%@ include file="/jsp/include/posHeader.jsp" %> +<%@ include file="/jsp/include/errors.jsp" %> + + + + + + + +
+ The sequences have been updated successfully +
+ + +<%@ include file="/jsp/include/posFooter.jsp" %> \ No newline at end of file diff --git a/posterita/src/web/jsp/admin/createRole.jsp b/posterita/src/web/jsp/admin/createRole.jsp new file mode 100644 index 0000000000..7997601fb0 --- /dev/null +++ b/posterita/src/web/jsp/admin/createRole.jsp @@ -0,0 +1,166 @@ +<%-- + * Product: Posterita Web-Based POS and Adempiere Plugin + * Copyright (C) 2007 Posterita Ltd + * This file is part of POSterita + * + * POSterita is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * + * @author praveen +--%> + + +<%@ page import="org.posterita.Constants" %> +<%@ page import="org.posterita.user.*" %> +<%@ page import="org.posterita.beans.UDIBean" %> +<%@ page import="org.posterita.core.MenuItem" %> + + +<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html"%> +<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic"%> +<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean"%> +<%@ taglib uri="/WEB-INF/struts-tiles.tld" prefix="tiles"%> + + + + + + + + + +<%@ include file="/jsp/include/tabTop.jsp" %><%@ include file="/jsp/include/tabBottom.jsp" %> + + + + + + + + + + +
+ +
+ <%@ include file="/jsp/include/errors.jsp" %> + + + + + + + + + + + <%-- + + + + + --%> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Can Create Order + + +
+ Can Alter Order + + +
+ Can View Order + + +
+

+ Available Menus +
+
+ + + + + + + + + + + + + + + + + +
+ +
        + + + +
+
+
+ + Clear All + + + Select All + + + + +
+ +
+
+ + + +<%@ include file="/jsp/include/footerTableBottom.jsp" %> \ No newline at end of file diff --git a/posterita/src/web/jsp/admin/emailChanged.jsp b/posterita/src/web/jsp/admin/emailChanged.jsp new file mode 100644 index 0000000000..0a13ee080c --- /dev/null +++ b/posterita/src/web/jsp/admin/emailChanged.jsp @@ -0,0 +1,48 @@ +<%-- + * Product: Posterita Web-Based POS and Adempiere Plugin + * Copyright (C) 2007 Posterita Ltd + * This file is part of POSterita + * + * POSterita is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * + * @author tamak +--%> + + +<%@ page import="org.posterita.Constants" %> +<%@ page import="org.posterita.user.*" %> + + +<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html"%> +<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic"%> +<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean"%> +<%@ taglib uri="/WEB-INF/struts-tiles.tld" prefix="tiles"%> +<%@ taglib uri="/WEB-INF/posterita.tld" prefix="posterita"%> + + + + + + <%@ include file="/jsp/include/tabTop.jsp" %><%@ include file="/jsp/include/tabBottom.jsp" %> + + + + + +
+ +
+ +<%@ include file="/jsp/include/footerTableBottom.jsp" %> \ No newline at end of file diff --git a/posterita/src/web/jsp/admin/listRoles.jsp b/posterita/src/web/jsp/admin/listRoles.jsp new file mode 100644 index 0000000000..9dbb4cf645 --- /dev/null +++ b/posterita/src/web/jsp/admin/listRoles.jsp @@ -0,0 +1,92 @@ +<%-- + * Product: Posterita Web-Based POS and Adempiere Plugin + * Copyright (C) 2007 Posterita Ltd + * This file is part of POSterita + * + * POSterita is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * + * @author Praveen +--%> + + +<%@ page import="org.posterita.Constants" %> +<%@ page import="org.posterita.user.*" %> +<%@ page import="org.posterita.beans.*" %> + +<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html"%> +<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic"%> +<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean"%> +<%@ taglib uri="/WEB-INF/struts-tiles.tld" prefix="tiles"%> + + + + + + + + + + + <%@ include file="/jsp/include/tabTop.jsp" %><%@ include file="/jsp/include/tabBottom.jsp" %> + + + + + + + + + + + +
+ +
+ <%@ include file="/jsp/include/errors.jsp" %> + +
+ Add Record +
+ + + + + + + + + + + + + + + + + + +
 
+ + <%-- + ">Edit + --%> + ">View + <%--">Delete--%> +
+
+ + + +<%@ include file="/jsp/include/footerTableBottom.jsp" %> diff --git a/posterita/src/web/jsp/admin/passwordChanged.jsp b/posterita/src/web/jsp/admin/passwordChanged.jsp new file mode 100644 index 0000000000..aeffa1b345 --- /dev/null +++ b/posterita/src/web/jsp/admin/passwordChanged.jsp @@ -0,0 +1,52 @@ +<%-- + * Product: Posterita Web-Based POS and Adempiere Plugin + * Copyright (C) 2007 Posterita Ltd + * This file is part of POSterita + * + * POSterita is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * + * @author tamak +--%> + + +<%@ page import="org.posterita.Constants" %> +<%@ page import="org.posterita.user.*" %> + + +<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html"%> +<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic"%> +<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean"%> +<%@ taglib uri="/WEB-INF/struts-tiles.tld" prefix="tiles"%> +<%@ taglib uri="/WEB-INF/posterita.tld" prefix="posterita"%> + + + Change password + + + + + + <%@ include file="/jsp/include/errors.jsp"%> + + + + + +
+ +
+ + +<%@ include file="/jsp/include/tshirtFooter.jsp"%> diff --git a/posterita/src/web/jsp/admin/userDeleted.jsp b/posterita/src/web/jsp/admin/userDeleted.jsp new file mode 100644 index 0000000000..19ff9c5030 --- /dev/null +++ b/posterita/src/web/jsp/admin/userDeleted.jsp @@ -0,0 +1,49 @@ +<%-- + * Product: Posterita Web-Based POS and Adempiere Plugin + * Copyright (C) 2007 Posterita Ltd + * This file is part of POSterita + * + * POSterita is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * + * @author tamak +--%> + +<%@ page import="org.posterita.user.*" %> + +<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html"%> +<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic"%> +<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean"%> +<%@ taglib uri="/WEB-INF/struts-tiles.tld" prefix="tiles"%> + + + + + + + + + + + + + + +
+
+ +
+
+ + <%@ include file="/jsp/include/footerTableBottom.jsp" %> \ No newline at end of file diff --git a/posterita/src/web/jsp/admin/viewMyDetails.jsp b/posterita/src/web/jsp/admin/viewMyDetails.jsp new file mode 100644 index 0000000000..cccf499f12 --- /dev/null +++ b/posterita/src/web/jsp/admin/viewMyDetails.jsp @@ -0,0 +1,138 @@ +<%-- + * Product: Posterita Web-Based POS and Adempiere Plugin + * Copyright (C) 2007 Posterita Ltd + * This file is part of POSterita + * + * POSterita is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * + * @author tamak +--%> + +<%@ page import="org.posterita.user.*" %> +<%@ page import="org.posterita.beans.UDIBean" %> + +<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html"%> +<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic"%> +<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean"%> +<%@ taglib uri="/WEB-INF/struts-tiles.tld" prefix="tiles"%> +<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %> + + + + + + + + + + + + + + + + + + +
+ <%@ include file="/jsp/include/tabTop.jsp" %><%@ include file="/jsp/include/tabBottom.jsp" %> +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +

+ +

+
+
+ +
+
+ + + <%@ include file="/jsp/include/footerTableBottom.jsp" %> \ No newline at end of file diff --git a/posterita/src/web/jsp/admin/viewRole.jsp b/posterita/src/web/jsp/admin/viewRole.jsp new file mode 100644 index 0000000000..adc2f66e82 --- /dev/null +++ b/posterita/src/web/jsp/admin/viewRole.jsp @@ -0,0 +1,96 @@ +<%-- + * Product: Posterita Web-Based POS and Adempiere Plugin + * Copyright (C) 2007 Posterita Ltd + * This file is part of POSterita + * + * POSterita is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * + * @author Praveen +--%> + + +<%@ page import="org.posterita.Constants" %> +<%@ page import="org.posterita.user.*" %> +<%@ page import="org.compiere.model.MOrg" %> + +<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html"%> +<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean"%> +<%@ taglib uri="/WEB-INF/struts-tiles.tld" prefix="tiles"%> +<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic"%> +<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %> + + + + + + <%@ include file="/jsp/include/tabTop.jsp" %>View Role<%@ include file="/jsp/include/tabBottom.jsp" %> + + + + + + + + +
+ +
+ <%@ include file="/jsp/include/errors.jsp" %> + + + + + + + + + + + + + + +
Role Name :

Menus
+ + + + + + + + + + + + + + + + +
+ +
        + +
+
+
+
+ + + + <%@ include file="/jsp/include/footerTableBottom.jsp" %> + + + \ No newline at end of file diff --git a/posterita/src/web/jsp/admin/viewUserDetails.jsp b/posterita/src/web/jsp/admin/viewUserDetails.jsp new file mode 100644 index 0000000000..68d409baf7 --- /dev/null +++ b/posterita/src/web/jsp/admin/viewUserDetails.jsp @@ -0,0 +1,120 @@ +<%-- + * Product: Posterita Web-Based POS and Adempiere Plugin + * Copyright (C) 2007 Posterita Ltd + * This file is part of POSterita + * + * POSterita is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * + * @author tamak +--%> + + +<%@ page import="org.posterita.Constants" %> +<%@ page import="org.posterita.user.*" %> +<%@ page import="org.compiere.model.MOrg" %> + +<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html"%> +<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean"%> +<%@ taglib uri="/WEB-INF/struts-tiles.tld" prefix="tiles"%> +<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic"%> + + + + + + <%@ include file="/jsp/include/tabTop.jsp" %><%@ include file="/jsp/include/tabBottom.jsp" %> + + + + + + + + +
+ +
+ + + + + + + + + + + + <%-- + + + + + --%> + + + + + + + + + + + + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + + + + + + + + +
+ + + +
+
+
+ + <%@ include file="/jsp/include/footerTableBottom.jsp" %> + + \ No newline at end of file diff --git a/posterita/src/web/jsp/admin/viewUsers.jsp b/posterita/src/web/jsp/admin/viewUsers.jsp new file mode 100644 index 0000000000..091f0e7fe4 --- /dev/null +++ b/posterita/src/web/jsp/admin/viewUsers.jsp @@ -0,0 +1,110 @@ +<%-- + * Product: Posterita Web-Based POS and Adempiere Plugin + * Copyright (C) 2007 Posterita Ltd + * This file is part of POSterita + * + * POSterita is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * + * @author Alok +--%> + +<%@ page import="org.posterita.Constants" %> +<%@ page import="org.posterita.user.*" %> +<%@ page import="org.compiere.model.MOrg" %> + +<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html"%> +<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean"%> +<%@ taglib uri="/WEB-INF/struts-tiles.tld" prefix="tiles"%> +<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic"%> +<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %> + + + + + + <%@ include file="/jsp/include/tabTop.jsp" %><%@ include file="/jsp/include/tabBottom.jsp" %> + + + + + + + + +
+ +
+ + + + + + + + + + + + <% + String styleClass = "label"; + if ((count.intValue()%2) != 0) + styleClass = "contentname"; + %> + + + + + + + + + + + + + + +
+ + + + + Active +   + +
+ + + + + + Yes + + + No + + + "> + + +
+
+ + + + <%@ include file="/jsp/include/footerTableBottom.jsp" %> + + + \ No newline at end of file diff --git a/posterita/src/web/jsp/attachment/createAttachment.jsp b/posterita/src/web/jsp/attachment/createAttachment.jsp new file mode 100644 index 0000000000..9d84925850 --- /dev/null +++ b/posterita/src/web/jsp/attachment/createAttachment.jsp @@ -0,0 +1,87 @@ +<%-- + * Product: Posterita Web-Based POS and Adempiere Plugin + * Copyright (C) 2007 Posterita Ltd + * This file is part of POSterita + * + * POSterita is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * + * @author Praveen +--%> + +<%@ page import="org.posterita.struts.attachment.AttachmentAction" %> +<%@ page import="org.posterita.Constants" %> +<%@ page import="org.posterita.user.*" %> +<%@ page import="org.posterita.beans.UDIBean" %> + +<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html"%> +<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic"%> +<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean"%> +<%@ taglib uri="/WEB-INF/struts-tiles.tld" prefix="tiles"%> + + +<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html"%> +<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean"%> +<%@ taglib uri="/WEB-INF/struts-tiles.tld" prefix="tiles"%> +<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic"%> +<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %> + + + +Attach Logo + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ <%@ include file="/jsp/include/tabTop.jsp" %>Attach Logo<%@ include file="/jsp/include/tabBottom.jsp" %> + <%@ include file="/jsp/include/errors.jsp" %> +
+ find logo + + +
Name + +
+ + + +
+
+<%@ include file="/jsp/include/footerTableBottom.jsp" %> + + + \ No newline at end of file diff --git a/posterita/src/web/jsp/bPartner/bPartnerCreated.jsp b/posterita/src/web/jsp/bPartner/bPartnerCreated.jsp new file mode 100644 index 0000000000..128271235d --- /dev/null +++ b/posterita/src/web/jsp/bPartner/bPartnerCreated.jsp @@ -0,0 +1,180 @@ +<%-- + * Product: Posterita Web-Based POS and Adempiere Plugin + * Copyright (C) 2007 Posterita Ltd + * This file is part of POSterita + * + * POSterita is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * + * @author Praveen +--%> + +<%@ page import="org.posterita.user.*" %> +<%@ page import="org.posterita.beans.*" %> +<%@ page import ="org.posterita.Constants" %> + + +<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html"%> +<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic"%> +<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean"%> +<%@ taglib uri="/WEB-INF/struts-tiles.tld" prefix="tiles"%> +<%@ taglib uri="/WEB-INF/posterita.tld" prefix="posterita"%> +<%@ taglib uri="/WEB-INF/pos.tld" prefix="pos"%> + + + + + + +<%@ include file="/jsp/include/posHeader.jsp" %> +<%@ include file="/jsp/include/errors.jsp" %> + + + + + + + + + +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <%-- + + + + + --%> +
+ + + +   +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + Yes + + + No + +
+ + Yes + + + No + +
+ + Yes + + + No + +
+ + Yes + + + No + +
+ + + +
+
+ + +<%@ include file="/jsp/include/posFooter.jsp" %> \ No newline at end of file diff --git a/posterita/src/web/jsp/bPartner/bPartnerDetails.jsp b/posterita/src/web/jsp/bPartner/bPartnerDetails.jsp new file mode 100644 index 0000000000..b9715c06b9 --- /dev/null +++ b/posterita/src/web/jsp/bPartner/bPartnerDetails.jsp @@ -0,0 +1,184 @@ +<%-- + * Product: Posterita Web-Based POS and Adempiere Plugin + * Copyright (C) 2007 Posterita Ltd + * This file is part of POSterita + * + * POSterita is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * + * @author Praveen +--%> + + +<%@ page import="org.posterita.user.*" %> +<%@ page import="org.posterita.beans.*" %> +<%@ page import ="org.posterita.Constants" %> + + +<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html"%> +<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic"%> +<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean"%> +<%@ taglib uri="/WEB-INF/struts-tiles.tld" prefix="tiles"%> +<%@ taglib uri="/WEB-INF/posterita.tld" prefix="posterita"%> + + +<%@ include file="/jsp/include/posHeader.jsp" %> +<%@ include file="/jsp/include/errors.jsp" %> + + + + + + + + + +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + +   +
+ + + +
+ + + +
+ + + +
+ + + +
+ : + + +
+ : + + +
+ + Yes + + + No + +
+ + Yes + + + No + +
+ + Yes + + + No + +
+ + Yes + + + No + +
+ + Yes + + + No + +
+ + +
+ +
+
+ + +<%@ include file="/jsp/include/posFooter.jsp" %> \ No newline at end of file diff --git a/posterita/src/web/jsp/bPartner/createBPartner.jsp b/posterita/src/web/jsp/bPartner/createBPartner.jsp new file mode 100644 index 0000000000..572001a016 --- /dev/null +++ b/posterita/src/web/jsp/bPartner/createBPartner.jsp @@ -0,0 +1,206 @@ +<%-- + * Product: Posterita Web-Based POS and Adempiere Plugin + * Copyright (C) 2007 Posterita Ltd + * This file is part of POSterita + * + * POSterita is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * + * @author Praveen +--%> + + +<%@ page import="org.posterita.struts.bPartner.BPartnerAction" %> +<%@ page import ="org.posterita.Constants" %> + +<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html"%> +<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean"%> +<%@ taglib uri="/WEB-INF/struts-tiles.tld" prefix="tiles"%> +<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic"%> +<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %> +<%@ taglib uri="/WEB-INF/pos.tld" prefix="pos"%> + + +<%@ include file="/jsp/include/posHeader.jsp" %> +<%@ include file="/jsp/include/errors.jsp" %> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <%-- + + + + + + + + + + + + + + + + + + --%> + + + + + + +
+ * + + +
+ * + + +
+ * + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + + + + +
+ + + + + +
+ + + + + +
+ + + + + +
+ + + + + +
+   + + +   + +
+ +
+<%@ include file="/jsp/include/posFooter.jsp" %> + + + \ No newline at end of file diff --git a/posterita/src/web/jsp/bPartner/editBPartner.jsp b/posterita/src/web/jsp/bPartner/editBPartner.jsp new file mode 100644 index 0000000000..511310fba8 --- /dev/null +++ b/posterita/src/web/jsp/bPartner/editBPartner.jsp @@ -0,0 +1,207 @@ +<%-- + * Product: Posterita Web-Based POS and Adempiere Plugin + * Copyright (C) 2007 Posterita Ltd + * This file is part of POSterita + * + * POSterita is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * + * @author Praveen +--%> + + +<%@ page import="org.posterita.struts.bPartner.BPartnerAction" %> +<%@ page import ="org.posterita.Constants" %> + +<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html"%> +<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean"%> +<%@ taglib uri="/WEB-INF/struts-tiles.tld" prefix="tiles"%> +<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic"%> +<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %> +<%@ taglib uri="/WEB-INF/pos.tld" prefix="pos"%> + + + +<%@ include file="/jsp/include/posHeader.jsp" %> +<%@ include file="/jsp/include/errors.jsp" %> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <%-- + + + + + + + + + + + + + + + + + + --%> + + + + + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + + + + + +
+ + + + + +
+ + + + + +
+ + + + + +
+ + + + + +
+   + + +   + +
+ +
+ +<%@ include file="/jsp/include/posFooter.jsp" %> \ No newline at end of file diff --git a/posterita/src/web/jsp/bPartner/viewBPartner.jsp b/posterita/src/web/jsp/bPartner/viewBPartner.jsp new file mode 100644 index 0000000000..69e179a2e1 --- /dev/null +++ b/posterita/src/web/jsp/bPartner/viewBPartner.jsp @@ -0,0 +1,185 @@ +<%-- + * Product: Posterita Web-Based POS and Adempiere Plugin + * Copyright (C) 2007 Posterita Ltd + * This file is part of POSterita + * + * POSterita is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * + * @author Praveen +--%> + + +<%@ page import="org.posterita.user.*" %> +<%@ page import="org.posterita.beans.*" %> +<%@ page import ="org.posterita.Constants" %> +<%@ page import="org.compiere.model.MOrg" %> + +<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html"%> +<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean"%> +<%@ taglib uri="/WEB-INF/struts-tiles.tld" prefix="tiles"%> +<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic"%> +<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %> +<%@ taglib uri="/WEB-INF/pos.tld" prefix="pos"%> + + +<%@ include file="/jsp/include/posHeader.jsp" %> +<%@ include file="/jsp/include/errors.jsp" %> + +
+ + + + + + + +
+ + + + + +   + + + + + Add Business Partner + +
+
+ + + + + + + + + + + + + + <% + String url = "BusinessPartners.do"; + String collection = Constants.ALLBUSINESSPARTNERS; + %> + + + + <% + String styleClass = "label"; + if ((count.intValue()%2) != 0) + styleClass = "contentname"; + %> + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + +   +
+ +   + + + Yes + + + No + + + + Yes + + + No + + + + Yes + + + No + + + + Yes + + + No + + + + Yes + + + No + + + "> + View Business Partner + +   + "> + Edit Business Partner + +   + + + "> + Deactivate + + + + + "> + Activate + + +
+<%@ include file="/jsp/include/pager.jsp" %> +
+ +<%@ include file="/jsp/include/posFooter.jsp" %> + + diff --git a/posterita/src/web/jsp/bPartner/viewDealersDetail.jsp b/posterita/src/web/jsp/bPartner/viewDealersDetail.jsp new file mode 100644 index 0000000000..0d0f6726d7 --- /dev/null +++ b/posterita/src/web/jsp/bPartner/viewDealersDetail.jsp @@ -0,0 +1,79 @@ +<%-- + * Product: Posterita Web-Based POS and Adempiere Plugin + * Copyright (C) 2007 Posterita Ltd + * This file is part of POSterita + * + * POSterita is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * + * @author Praveen +--%> + +<%@ page import="org.posterita.Constants" %> +<%@ page import="org.posterita.user.*" %> +<%@ page import="org.compiere.model.MOrg" %> +<%@ page import="org.posterita.struts.bPartner.BPartnerAction" %> +<%@ page import="java.util.Calendar" %> + + +<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html"%> +<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean"%> +<%@ taglib uri="/WEB-INF/struts-tiles.tld" prefix="tiles"%> +<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic"%> +<%@ taglib uri="/WEB-INF/fmt.tld" prefix="fmt" %> + + +<%@ include file="/jsp/include/posHeader.jsp" %> +<%@ include file="/jsp/include/errors.jsp" %> + + + + + + + + + + + + <% + String styleClass = "label"; + if ((count.intValue()%2) != 0) + styleClass = "contentname"; + %> + + + + + + + + + + +
+ + + + + + + +
+ +<%@ include file="/jsp/include/posFooter.jsp" %> + + + +