roo00 6 lat temu
rodzic
commit
61fad11285

+ 0 - 2
o2server/x_processplatform_assemble_surface/src/main/java/com/x/processplatform/assemble/surface/jaxrs/data/ActionUpdateWithWorkSection.java

@@ -40,11 +40,9 @@ class ActionUpdateWithWorkSection extends BaseAction {
 				throw new ExceptionWorkAccessDenied(effectivePerson.getDistinguishedName(), work.getTitle(),
 						work.getId());
 			}
-			System.out.println("11111!!!!!!!!!!!!!!!!!!!!!!!!!!!!!surface ActionUpdateWithWorkSection");
 			Wo wo = ThisApplication.context().applications().putQuery(x_processplatform_service_processing.class,
 					Applications.joinQueryUri("data", "section", "work", work.getId()), jsonElement, work.getJob())
 					.getData(Wo.class);
-			System.out.println("8888!!!!!!!!!!!!!!!!!!!!!!!!!!!!!surface ActionUpdateWithWorkSection");
 			result.setData(wo);
 			return result;
 		}

+ 0 - 5
o2server/x_processplatform_service_processing/src/main/java/com/x/processplatform/service/processing/jaxrs/data/ActionUpdateWithWorkSection.java

@@ -43,11 +43,9 @@ class ActionUpdateWithWorkSection extends BaseAction {
 			if (null == work) {
 				throw new ExceptionEntityNotExist(id, Work.class);
 			}
-			System.out.println("3333!!!!!!!!!!!!!!!!!!!!!!!!!!!!!processing ActionUpdateWithWorkSection");
 			Callable<String> callable = new Callable<String>() {
 				public String call() throws Exception {
 					/* 进行区段数据合并 */
-					System.out.println("5555!!!!!!!!!!!!!!!!!!!!!!!!!!!!!processing call");
 					SectionData sectionData = gson.fromJson(jsonElement, SectionData.class);
 					JsonElement merged;
 					if (sectionData.hasSection()) {
@@ -66,13 +64,10 @@ class ActionUpdateWithWorkSection extends BaseAction {
 					updateTitleSerial(business, work, merged);
 					updateData(business, work, merged);
 					/* updateTitleSerial 和 updateData 方法内进行了提交 */
-					System.out.println("6666!!!!!!!!!!!!!!!!!!!!!!!!!!!!!processing call");
 					return "";
 				}
 			};
-			System.out.println("4444!!!!!!!!!!!!!!!!!!!!!!!!!!!!!processing call");
 			ExecutorServiceFactory.get(work.getJob()).submit(callable).get();
-			System.out.println("7777!!!!!!!!!!!!!!!!!!!!!!!!!!!!!processing call");
 
 			Wo wo = new Wo();
 			wo.setId(work.getId());

+ 0 - 1
o2server/x_processplatform_service_processing/src/main/java/com/x/processplatform/service/processing/jaxrs/data/DataAction.java

@@ -853,7 +853,6 @@ public class DataAction extends StandardJaxrsAction {
 		ActionResult<ActionUpdateWithWorkSection.Wo> result = new ActionResult<>();
 		EffectivePerson effectivePerson = this.effectivePerson(request);
 		try {
-			System.out.println("2222!!!!!!!!!!!!!!!!!!!!!!!!!!!!!processing DataAction:updateWithWorkSection");
 			result = new ActionUpdateWithWorkSection().execute(effectivePerson, id, jsonElement);
 		} catch (Exception e) {
 			logger.error(e, effectivePerson, request, jsonElement);