Explorar o código

Merge branch 'wrdp' into 'develop'

Wrdp

See merge request o2oa/o2oa!2050
蔡祥熠 %!s(int64=5) %!d(string=hai) anos
pai
achega
5a59e26cc8
Modificáronse 30 ficheiros con 182 adicións e 2 borrados
  1. 12 0
      o2server/pom.xml
  2. 6 0
      o2server/x_attendance_assemble_control/pom.xml
  3. 5 0
      o2server/x_base_core_project/src/main/java/com/x/base/core/openjpa/jdbc/sql/OscarDictionary.java
  4. 6 0
      o2server/x_bbs_assemble_control/pom.xml
  5. 6 0
      o2server/x_calendar_assemble_control/pom.xml
  6. 6 0
      o2server/x_cms_assemble_control/pom.xml
  7. 6 0
      o2server/x_component_assemble_control/pom.xml
  8. 6 0
      o2server/x_console/pom.xml
  9. 6 0
      o2server/x_file_assemble_control/pom.xml
  10. 6 0
      o2server/x_general_assemble_control/pom.xml
  11. 6 0
      o2server/x_hotpic_assemble_control/pom.xml
  12. 6 0
      o2server/x_jpush_assemble_control/pom.xml
  13. 6 0
      o2server/x_meeting_assemble_control/pom.xml
  14. 6 0
      o2server/x_message_assemble_communicate/pom.xml
  15. 6 0
      o2server/x_mind_assemble_control/pom.xml
  16. 6 0
      o2server/x_organization_assemble_authentication/pom.xml
  17. 6 0
      o2server/x_organization_assemble_control/pom.xml
  18. 6 0
      o2server/x_organization_assemble_express/pom.xml
  19. 6 0
      o2server/x_organization_assemble_personal/pom.xml
  20. 6 0
      o2server/x_portal_assemble_designer/pom.xml
  21. 6 0
      o2server/x_portal_assemble_surface/pom.xml
  22. 6 0
      o2server/x_processplatform_assemble_bam/pom.xml
  23. 6 0
      o2server/x_processplatform_assemble_designer/pom.xml
  24. 6 0
      o2server/x_processplatform_assemble_surface/pom.xml
  25. 6 0
      o2server/x_processplatform_service_processing/pom.xml
  26. 6 0
      o2server/x_program_center/pom.xml
  27. 6 0
      o2server/x_query_assemble_designer/pom.xml
  28. 6 0
      o2server/x_query_assemble_surface/pom.xml
  29. 6 0
      o2server/x_query_service_processing/pom.xml
  30. 3 2
      o2web/source/x_component_process_Xform/Form.js

+ 12 - 0
o2server/pom.xml

@@ -447,6 +447,12 @@
 				<artifactId>maven-jxr-plugin</artifactId>
 				<version>2.3</version>
 			</plugin>
+			<plugin>
+				<artifactId>maven-deploy-plugin</artifactId>
+				<configuration>
+					<skip>true</skip>
+				</configuration>
+			</plugin>
 		</plugins>
 	</build>
 	<dependencyManagement>
@@ -1017,4 +1023,10 @@
 			</snapshots>
 		</repository>
 	</repositories>
+	<distributionManagement>
+		<repository>
+			<id>o2oa-release</id>
+			<url>http://maven.o2oa.net/repository/o2oa-release/</url>
+		</repository>
+	</distributionManagement>
 </project>

+ 6 - 0
o2server/x_attendance_assemble_control/pom.xml

@@ -128,6 +128,12 @@
 					</execution>
 				</executions>
 			</plugin>
+			<plugin>
+				<artifactId>maven-deploy-plugin</artifactId>
+				<configuration>
+					<skip>true</skip>
+				</configuration>
+			</plugin>
 		</plugins>
 	</build>
 </project>

+ 5 - 0
o2server/x_base_core_project/src/main/java/com/x/base/core/openjpa/jdbc/sql/OscarDictionary.java

@@ -1,5 +1,7 @@
 package com.x.base.core.openjpa.jdbc.sql;
 
+import org.apache.openjpa.jdbc.sql.BooleanRepresentation;
+import org.apache.openjpa.jdbc.sql.BooleanRepresentationFactory;
 import org.apache.openjpa.jdbc.sql.DBDictionary;
 import org.apache.openjpa.lib.util.Localizer;
 
@@ -18,6 +20,9 @@ public class OscarDictionary extends DBDictionary {
 		maxEmbeddedClobSize = -1;
 		maxEmbeddedBlobSize = -1;
 		doubleTypeName = "DOUBLE PRECISION";
+		booleanTypeName = "BOOL";
 	}
 
+	protected BooleanRepresentation booleanRepresentation = BooleanRepresentationFactory.BOOLEAN;
+
 }

+ 6 - 0
o2server/x_bbs_assemble_control/pom.xml

@@ -124,6 +124,12 @@
 					</execution>
 				</executions>
 			</plugin>
+			<plugin>
+				<artifactId>maven-deploy-plugin</artifactId>
+				<configuration>
+					<skip>true</skip>
+				</configuration>
+			</plugin>
 		</plugins>
 	</build>
 </project>

+ 6 - 0
o2server/x_calendar_assemble_control/pom.xml

@@ -124,6 +124,12 @@
 					</execution>
 				</executions>
 			</plugin>
+			<plugin>
+				<artifactId>maven-deploy-plugin</artifactId>
+				<configuration>
+					<skip>true</skip>
+				</configuration>
+			</plugin>
 		</plugins>
 	</build>
 </project>

+ 6 - 0
o2server/x_cms_assemble_control/pom.xml

@@ -144,6 +144,12 @@
 					</execution>
 				</executions>
 			</plugin>
+			<plugin>
+				<artifactId>maven-deploy-plugin</artifactId>
+				<configuration>
+					<skip>true</skip>
+				</configuration>
+			</plugin>
 		</plugins>
 	</build>
 </project>

+ 6 - 0
o2server/x_component_assemble_control/pom.xml

@@ -124,6 +124,12 @@
 					</execution>
 				</executions>
 			</plugin>
+			<plugin>
+				<artifactId>maven-deploy-plugin</artifactId>
+				<configuration>
+					<skip>true</skip>
+				</configuration>
+			</plugin>
 		</plugins>
 	</build>
 </project>

+ 6 - 0
o2server/x_console/pom.xml

@@ -107,6 +107,12 @@
 					</execution>
 				</executions>
 			</plugin>
+			<plugin>
+				<artifactId>maven-deploy-plugin</artifactId>
+				<configuration>
+					<skip>true</skip>
+				</configuration>
+			</plugin>
 		</plugins>
 	</build>
 </project>

+ 6 - 0
o2server/x_file_assemble_control/pom.xml

@@ -128,6 +128,12 @@
 					</execution>
 				</executions>
 			</plugin>
+			<plugin>
+				<artifactId>maven-deploy-plugin</artifactId>
+				<configuration>
+					<skip>true</skip>
+				</configuration>
+			</plugin>
 		</plugins>
 	</build>
 </project>

+ 6 - 0
o2server/x_general_assemble_control/pom.xml

@@ -124,6 +124,12 @@
 					</execution>
 				</executions>
 			</plugin>
+			<plugin>
+				<artifactId>maven-deploy-plugin</artifactId>
+				<configuration>
+					<skip>true</skip>
+				</configuration>
+			</plugin>
 		</plugins>
 	</build>
 </project>

+ 6 - 0
o2server/x_hotpic_assemble_control/pom.xml

@@ -136,6 +136,12 @@
 					</execution>
 				</executions>
 			</plugin>
+			<plugin>
+				<artifactId>maven-deploy-plugin</artifactId>
+				<configuration>
+					<skip>true</skip>
+				</configuration>
+			</plugin>
 		</plugins>
 	</build>
 </project>

+ 6 - 0
o2server/x_jpush_assemble_control/pom.xml

@@ -133,6 +133,12 @@
 					</execution>
 				</executions>
 			</plugin>
+			<plugin>
+				<artifactId>maven-deploy-plugin</artifactId>
+				<configuration>
+					<skip>true</skip>
+				</configuration>
+			</plugin>
 		</plugins>
 	</build>
 </project>

+ 6 - 0
o2server/x_meeting_assemble_control/pom.xml

@@ -128,6 +128,12 @@
 					</execution>
 				</executions>
 			</plugin>
+			<plugin>
+				<artifactId>maven-deploy-plugin</artifactId>
+				<configuration>
+					<skip>true</skip>
+				</configuration>
+			</plugin>
 		</plugins>
 	</build>
 </project>

+ 6 - 0
o2server/x_message_assemble_communicate/pom.xml

@@ -153,6 +153,12 @@
 					</execution>
 				</executions>
 			</plugin>
+			<plugin>
+				<artifactId>maven-deploy-plugin</artifactId>
+				<configuration>
+					<skip>true</skip>
+				</configuration>
+			</plugin>
 		</plugins>
 	</build>
 </project>

+ 6 - 0
o2server/x_mind_assemble_control/pom.xml

@@ -124,6 +124,12 @@
 					</execution>
 				</executions>
 			</plugin>
+			<plugin>
+				<artifactId>maven-deploy-plugin</artifactId>
+				<configuration>
+					<skip>true</skip>
+				</configuration>
+			</plugin>
 		</plugins>
 	</build>
 </project>

+ 6 - 0
o2server/x_organization_assemble_authentication/pom.xml

@@ -120,6 +120,12 @@
 					</execution>
 				</executions>
 			</plugin>
+			<plugin>
+				<artifactId>maven-deploy-plugin</artifactId>
+				<configuration>
+					<skip>true</skip>
+				</configuration>
+			</plugin>
 		</plugins>
 	</build>
 </project>

+ 6 - 0
o2server/x_organization_assemble_control/pom.xml

@@ -150,6 +150,12 @@
 					</execution>
 				</executions>
 			</plugin>
+			<plugin>
+				<artifactId>maven-deploy-plugin</artifactId>
+				<configuration>
+					<skip>true</skip>
+				</configuration>
+			</plugin>
 		</plugins>
 	</build>
 	<dependencyManagement>

+ 6 - 0
o2server/x_organization_assemble_express/pom.xml

@@ -116,6 +116,12 @@
 					</execution>
 				</executions>
 			</plugin>
+			<plugin>
+				<artifactId>maven-deploy-plugin</artifactId>
+				<configuration>
+					<skip>true</skip>
+				</configuration>
+			</plugin>
 		</plugins>
 	</build>
 </project>

+ 6 - 0
o2server/x_organization_assemble_personal/pom.xml

@@ -116,6 +116,12 @@
 					</execution>
 				</executions>
 			</plugin>
+			<plugin>
+				<artifactId>maven-deploy-plugin</artifactId>
+				<configuration>
+					<skip>true</skip>
+				</configuration>
+			</plugin>
 		</plugins>
 	</build>
 </project>

+ 6 - 0
o2server/x_portal_assemble_designer/pom.xml

@@ -120,6 +120,12 @@
 					</execution>
 				</executions>
 			</plugin>
+			<plugin>
+				<artifactId>maven-deploy-plugin</artifactId>
+				<configuration>
+					<skip>true</skip>
+				</configuration>
+			</plugin>
 		</plugins>
 	</build>
 </project>

+ 6 - 0
o2server/x_portal_assemble_surface/pom.xml

@@ -124,6 +124,12 @@
 					</execution>
 				</executions>
 			</plugin>
+			<plugin>
+				<artifactId>maven-deploy-plugin</artifactId>
+				<configuration>
+					<skip>true</skip>
+				</configuration>
+			</plugin>
 		</plugins>
 	</build>
 </project>

+ 6 - 0
o2server/x_processplatform_assemble_bam/pom.xml

@@ -128,6 +128,12 @@
 					</execution>
 				</executions>
 			</plugin>
+			<plugin>
+				<artifactId>maven-deploy-plugin</artifactId>
+				<configuration>
+					<skip>true</skip>
+				</configuration>
+			</plugin>
 		</plugins>
 	</build>
 </project>

+ 6 - 0
o2server/x_processplatform_assemble_designer/pom.xml

@@ -132,6 +132,12 @@
 					</execution>
 				</executions>
 			</plugin>
+			<plugin>
+				<artifactId>maven-deploy-plugin</artifactId>
+				<configuration>
+					<skip>true</skip>
+				</configuration>
+			</plugin>
 		</plugins>
 	</build>
 </project>

+ 6 - 0
o2server/x_processplatform_assemble_surface/pom.xml

@@ -147,6 +147,12 @@
 					</execution>
 				</executions>
 			</plugin>
+			<plugin>
+				<artifactId>maven-deploy-plugin</artifactId>
+				<configuration>
+					<skip>true</skip>
+				</configuration>
+			</plugin>
 		</plugins>
 	</build>
 </project>

+ 6 - 0
o2server/x_processplatform_service_processing/pom.xml

@@ -138,6 +138,12 @@
 					</execution>
 				</executions>
 			</plugin>
+			<plugin>
+				<artifactId>maven-deploy-plugin</artifactId>
+				<configuration>
+					<skip>true</skip>
+				</configuration>
+			</plugin>
 		</plugins>
 	</build>
 </project>

+ 6 - 0
o2server/x_program_center/pom.xml

@@ -151,6 +151,12 @@
 					</execution>
 				</executions>
 			</plugin>
+			<plugin>
+				<artifactId>maven-deploy-plugin</artifactId>
+				<configuration>
+					<skip>true</skip>
+				</configuration>
+			</plugin>
 		</plugins>
 	</build>
 </project>

+ 6 - 0
o2server/x_query_assemble_designer/pom.xml

@@ -144,6 +144,12 @@
 					</execution>
 				</executions>
 			</plugin>
+			<plugin>
+				<artifactId>maven-deploy-plugin</artifactId>
+				<configuration>
+					<skip>true</skip>
+				</configuration>
+			</plugin>
 		</plugins>
 	</build>
 </project>

+ 6 - 0
o2server/x_query_assemble_surface/pom.xml

@@ -144,6 +144,12 @@
 					</execution>
 				</executions>
 			</plugin>
+			<plugin>
+				<artifactId>maven-deploy-plugin</artifactId>
+				<configuration>
+					<skip>true</skip>
+				</configuration>
+			</plugin>
 		</plugins>
 	</build>
 </project>

+ 6 - 0
o2server/x_query_service_processing/pom.xml

@@ -140,6 +140,12 @@
 					</execution>
 				</executions>
 			</plugin>
+			<plugin>
+				<artifactId>maven-deploy-plugin</artifactId>
+				<configuration>
+					<skip>true</skip>
+				</configuration>
+			</plugin>
 		</plugins>
 	</build>
 </project>

+ 3 - 2
o2web/source/x_component_process_Xform/Form.js

@@ -3859,6 +3859,7 @@ MWF.xApplication.process.Xform.Form = MWF.APPForm = new Class({
         var text = "您确定要将“" + title + "”标记为已阅吗?";
 
         this.app.confirm("infor", e, "标记已阅确认", text, 300, 120, function () {
+            var confirmDlg = this;
             var read = null;
             for (var i = 0; i < _self.businessData.readList.length; i++) {
                 if (_self.businessData.readList[i].person === layout.session.user.distinguishedName) {
@@ -3876,7 +3877,7 @@ MWF.xApplication.process.Xform.Form = MWF.APPForm = new Class({
                         //移动端页面关闭
                         _self.finishOnMobile()
                     } else {
-                        this.close();
+                        confirmDlg.close();
                     }
                 }, null, read.id, read);
             } else {
@@ -3886,7 +3887,7 @@ MWF.xApplication.process.Xform.Form = MWF.APPForm = new Class({
                     //移动端页面关闭
                     _self.finishOnMobile()
                 } else {
-                    this.close();
+                    confirmDlg.close();
                 }
             }