|
@@ -296,6 +296,7 @@ public class DyoaHistoryServiceImpl implements IDyoaHistoryService{
|
|
ASSETS_PRODUCTION_COLUM.put("archiveTime","saveFileDate");
|
|
ASSETS_PRODUCTION_COLUM.put("archiveTime","saveFileDate");
|
|
ASSETS_PRODUCTION_COLUM.put("finished","delivery");
|
|
ASSETS_PRODUCTION_COLUM.put("finished","delivery");
|
|
ASSETS_PRODUCTION_COLUM.put("type","productionType");
|
|
ASSETS_PRODUCTION_COLUM.put("type","productionType");
|
|
|
|
+ ASSETS_PRODUCTION_COLUM.put("createdDatetime","createProductionDate");
|
|
|
|
|
|
//财务开票字段
|
|
//财务开票字段
|
|
FINANCE_INVOICE_COLUM.put("orderId","orderFundId");
|
|
FINANCE_INVOICE_COLUM.put("orderId","orderFundId");
|
|
@@ -801,6 +802,10 @@ public class DyoaHistoryServiceImpl implements IDyoaHistoryService{
|
|
String productionType = getProductionType((String) value);
|
|
String productionType = getProductionType((String) value);
|
|
xFiled.set(assetsProduction, productionType);
|
|
xFiled.set(assetsProduction, productionType);
|
|
break;
|
|
break;
|
|
|
|
+ case "createdDatetime":
|
|
|
|
+ Timestamp ts = (Timestamp) value;
|
|
|
|
+ field.set(assetsProduction, DateUtils.dateToLocalDate(new Date(ts.getTime())));
|
|
|
|
+ break;
|
|
default:
|
|
default:
|
|
xFiled.set(assetsProduction,value);
|
|
xFiled.set(assetsProduction,value);
|
|
break;
|
|
break;
|