|
@@ -7,6 +7,7 @@ import java.sql.Connection;
|
|
|
import java.sql.DriverManager;
|
|
|
import java.sql.PreparedStatement;
|
|
|
import java.sql.ResultSet;
|
|
|
+import java.text.SimpleDateFormat;
|
|
|
import java.util.*;
|
|
|
import java.io.IOException;
|
|
|
import java.io.UnsupportedEncodingException;
|
|
@@ -446,6 +447,7 @@ public class FbsWorkingStatisticsController {
|
|
|
|
|
|
if(entity.getState().equals("1")){
|
|
|
//把数据传入u8数据库
|
|
|
+
|
|
|
}
|
|
|
|
|
|
res.setCode("0");
|
|
@@ -454,6 +456,17 @@ public class FbsWorkingStatisticsController {
|
|
|
return new ResponseEntity<ResHttpStatus>(res, HttpStatus.OK);
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+ public void saveU8(FbsWorkingStatistics entity,FbsWorkshopDispatchList workshopDispatchList){
|
|
|
+ Map<String,Object> map=new HashMap<>();
|
|
|
+ map.put("CVOUCHCODE",entity.getOrderNumber());//单号
|
|
|
+ Date date=new Date();
|
|
|
+ SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
|
|
|
+ map.put("DDATE",sdf.format(date));//入库日期
|
|
|
+
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* 通过人员编码查询人员信息
|
|
|
* @param userId
|