@ -7,6 +7,7 @@ import com.logpm.basicdata.entity.BasicdataWarehouseEntity;
import com.logpm.basicdata.service.IBasicdataCodeRecordService ;
import com.logpm.basicdata.service.IBasicdataCodeRecordService ;
import com.logpm.basicdata.service.IBasicdataCodeService ;
import com.logpm.basicdata.service.IBasicdataCodeService ;
import com.logpm.basicdata.service.IBasicdataWarehouseService ;
import com.logpm.basicdata.service.IBasicdataWarehouseService ;
import io.swagger.models.auth.In ;
import lombok.AllArgsConstructor ;
import lombok.AllArgsConstructor ;
import lombok.extern.log4j.Log4j2 ;
import lombok.extern.log4j.Log4j2 ;
import org.springblade.common.constant.CodeDesEnum ;
import org.springblade.common.constant.CodeDesEnum ;
@ -38,15 +39,16 @@ public class BasicdataCodeServiceImpl implements IBasicdataCodeService {
/ * *
/ * *
* 根据类型生成编号
* 根据类型生成编号
*
* @param type
* @param type
* @return
* @return
* /
* /
@Override
@Override
public String getCodeByType ( Integer type , String warehouseCode , String orderCode ) {
public String getCodeByType ( Integer type , String warehouseCode , String orderCode ) {
String code = null ;
String code = null ;
switch ( type ) {
switch ( type ) {
case CodeNumConstant . WAYBILL :
case CodeNumConstant . WAYBILL :
code = getWayBillNo ( type , warehouseCode ) ;
code = getWayBillNo ( type , warehouseCode ) ;
break ;
break ;
// case CodeNumConstant.ORDER:
// case CodeNumConstant.ORDER:
// break;
// break;
@ -58,11 +60,11 @@ public class BasicdataCodeServiceImpl implements IBasicdataCodeService {
// case CodeNumConstant.LOCATION:
// case CodeNumConstant.LOCATION:
// break;
// break;
case CodeNumConstant . TRAYS :
case CodeNumConstant . TRAYS :
code = generateTraysCode ( type , warehouseCode ) ;
code = generateTraysCode ( type , warehouseCode ) ;
break ;
break ;
case CodeNumConstant . PACKAGE :
case CodeNumConstant . PACKAGE :
//包件号
//包件号
code = generatePackageCode ( type , warehouseCode , orderCode ) ;
code = generatePackageCode ( type , warehouseCode , orderCode ) ;
break ;
break ;
// case CodeNumConstant.SHELF:
// case CodeNumConstant.SHELF:
// break;
// break;
@ -70,22 +72,22 @@ public class BasicdataCodeServiceImpl implements IBasicdataCodeService {
// code = generateDeliveryCustomOrder(type,warehouseCode);
// code = generateDeliveryCustomOrder(type,warehouseCode);
// break;
// break;
case CodeNumConstant . ABNORMAL_ORDER :
case CodeNumConstant . ABNORMAL_ORDER :
code = generateExOrderCode ( type , warehouseCode , orderCode ) ;
code = generateExOrderCode ( type , warehouseCode , orderCode ) ;
break ;
break ;
case CodeNumConstant . TRUNKLINEBILLLADING :
case CodeNumConstant . TRUNKLINEBILLLADING :
code = generateTrunklineBillladingCode ( type , warehouseCode , orderCode ) ;
code = generateTrunklineBillladingCode ( type , warehouseCode , orderCode ) ;
break ;
break ;
case CodeNumConstant . TRUNKLINE_CARS_LOAD :
case CodeNumConstant . TRUNKLINE_CARS_LOAD :
code = generateTrunklineCarsLineCode ( type , warehouseCode , orderCode ) ;
code = generateTrunklineCarsLineCode ( type , warehouseCode , orderCode ) ;
break ;
break ;
case CodeNumConstant . TRUNKLINE_TRIPARTITE_LOAD :
case CodeNumConstant . TRUNKLINE_TRIPARTITE_LOAD :
code = generateTrunklineTripartiteLoadCode ( type , warehouseCode , orderCode ) ;
code = generateTrunklineTripartiteLoadCode ( type , warehouseCode , orderCode ) ;
break ;
break ;
case CodeNumConstant . TRUNKLINE_LOAD_SIGN :
case CodeNumConstant . TRUNKLINE_LOAD_SIGN :
code = generateTrunklineLoadSignCode ( type , warehouseCode , orderCode ) ;
code = generateTrunklineLoadSignCode ( type , warehouseCode , orderCode ) ;
break ;
break ;
case CodeNumConstant . BALANCE_ORDER :
case CodeNumConstant . BALANCE_ORDER :
code = generateBalanceOrderCode ( type , warehouseCode , orderCode ) ;
code = generateBalanceOrderCode ( type , warehouseCode , orderCode ) ;
break ;
break ;
default :
default :
log . info ( "##################getCodeByType: 暂不支持的编码类型 type={}" , CodeDesEnum . getMes ( type ) ) ;
log . info ( "##################getCodeByType: 暂不支持的编码类型 type={}" , CodeDesEnum . getMes ( type ) ) ;
@ -94,36 +96,23 @@ public class BasicdataCodeServiceImpl implements IBasicdataCodeService {
}
}
private String generateBalanceOrderCode ( Integer type , String warehouseCode , String orderCode ) {
private String generateBalanceOrderCode ( Integer type , String warehouseCode , String orderCode ) {
if ( ! "BALANCE_ORDER" . equals ( warehouseCode ) ) {
if ( ! "BALANCE_ORDER" . equals ( warehouseCode ) ) {
log . warn ( "#########generateBalanceOrderCode: 仓库编码有误 warehouseCode={}" , warehouseCode ) ;
log . warn ( "#########generateBalanceOrderCode: 仓库编码有误 warehouseCode={}" , warehouseCode ) ;
return null ;
return null ;
}
}
BasicdataWarehouseEntity basicdataWarehouseEntity = basicdataWarehouseService . getWarehouseEntityByWarehouseCode ( warehouseCode ) ;
if ( Objects . isNull ( basicdataWarehouseEntity ) ) {
log . warn ( "############getWayBillNo: 仓库信息不存在 warehouseCode={}" , warehouseCode ) ;
return null ;
}
Calendar calendar = Calendar . getInstance ( ) ;
BasicdataCodeRecordEntity basicdataCodeRecordEntity = getBasicdataCodeRecordEntity ( type , basicdataWarehouseEntity ) ;
//获取年份
Integer year = calendar . get ( Calendar . YEAR ) ;
// 获取月份(注意月份从0开始计数)
Integer month = calendar . get ( Calendar . MONTH ) + 1 ;
BasicdataCodeRecordEntity basicdataCodeRecordEntity = basicdataCodeRecordService . findEntityByCodeTypeAndWarehouseCodeAndYearAndMonth ( CodeNumConstant . PACKAGE , warehouseCode , year + "" , month + "" ) ;
if ( Objects . isNull ( basicdataCodeRecordEntity ) ) {
basicdataCodeRecordEntity = new BasicdataCodeRecordEntity ( ) ;
basicdataCodeRecordEntity . setCodeType ( CodeNumConstant . PACKAGE ) ;
basicdataCodeRecordEntity . setWarehouseName ( "全仓" ) ;
basicdataCodeRecordEntity . setWarehouseCode ( warehouseCode ) ;
basicdataCodeRecordEntity . setYear ( year + "" ) ;
basicdataCodeRecordEntity . setMonth ( month + "" ) ;
basicdataCodeRecordEntity . setNum ( 0 ) ;
basicdataCodeRecordService . save ( basicdataCodeRecordEntity ) ;
}
Integer oldNum = basicdataCodeRecordEntity . getNum ( ) ;
Integer oldNum = basicdataCodeRecordEntity . getNum ( ) ;
oldNum = oldNum + 1 ;
oldNum = oldNum + 1 ;
String packageCode = "JSD" + year + CommonUtil . geFourNumber ( month . longValue ( ) , 2 ) + CommonUtil . geFourNumber ( oldNum . longValue ( ) , 6 ) ;
String packageCode = "JSD" + basicdataCodeRecordEntity . getYear ( ) + CommonUtil . geFourNumberByString ( basicdataCodeRecordEntity . getMonth ( ) , 2 ) + CommonUtil . geFourNumber ( oldNum . longValue ( ) , 6 ) ;
basicdataCodeRecordEntity . setNum ( oldNum ) ;
basicdataCodeRecordEntity . setNum ( oldNum ) ;
basicdataCodeRecordService . updateById ( basicdataCodeRecordEntity ) ;
basicdataCodeRecordService . updateById ( basicdataCodeRecordEntity ) ;
@ -131,52 +120,38 @@ public class BasicdataCodeServiceImpl implements IBasicdataCodeService {
}
}
@Override
@Override
public List < String > getBatchPackageCodeByType ( String warehouseCode , String orderCode , Integer num ) {
public List < String > getBatchPackageCodeByType ( String warehouseCode , String orderCode , Integer num ) {
if ( ! StringUtil . hasLength ( warehouseCode ) ) {
if ( ! StringUtil . hasLength ( warehouseCode ) ) {
log . warn ( "############getBatchPackageCodeByType: 仓库编码为空warehouseCode={}" , warehouseCode ) ;
log . warn ( "############getBatchPackageCodeByType: 仓库编码为空warehouseCode={}" , warehouseCode ) ;
return null ;
return null ;
}
}
if ( ! StringUtil . hasLength ( orderCode ) ) {
if ( ! StringUtil . hasLength ( orderCode ) ) {
log . warn ( "############getBatchPackageCodeByType: 订单号为空orderCode={}" , orderCode ) ;
log . warn ( "############getBatchPackageCodeByType: 订单号为空orderCode={}" , orderCode ) ;
return null ;
return null ;
}
}
//包条 HT+仓库拼音/超管/职能+年月日时分秒+订单索引+包条个数索引
String haxCodeByLong = CommonUtil . getHaxCodeByLong ( orderCode , 8 ) ;
BasicdataWarehouseEntity basicdataWarehouseEntity = basicdataWarehouseService . getWarehouseEntityByWarehouseCode ( warehouseCode ) ;
BasicdataWarehouseEntity basicdataWarehouseEntity = basicdataWarehouseService . getWarehouseEntityByWarehouseCode ( warehouseCode ) ;
if ( Objects . isNull ( basicdataWarehouseEntity ) ) {
if ( Objects . isNull ( basicdataWarehouseEntity ) ) {
log . warn ( "############getWayBillNo: 仓库信息不存在 warehouseCode={}" , warehouseCode ) ;
log . warn ( "############getWayBillNo: 仓库信息不存在 warehouseCode={}" , warehouseCode ) ;
return null ;
return null ;
}
}
//包条 HT+仓库拼音/超管/职能+年月日时分秒+订单索引+包条个数索引CodeNumConstant.PACKAGE
BasicdataCodeRecordEntity basicdataCodeRecordEntity = getBasicdataCodeRecordEntity ( CodeDesEnum . PACKAGE . getCodeNum ( ) , basicdataWarehouseEntity ) ;
Calendar calendar = Calendar . getInstance ( ) ;
//获取年份
Integer year = calendar . get ( Calendar . YEAR ) ;
// 获取月份(注意月份从0开始计数)
Integer month = calendar . get ( Calendar . MONTH ) + 1 ;
BasicdataCodeRecordEntity basicdataCodeRecordEntity = basicdataCodeRecordService . findEntityByCodeTypeAndWarehouseCodeAndYearAndMonth ( CodeNumConstant . PACKAGE , warehouseCode , year + "" , month + "" ) ;
if ( Objects . isNull ( basicdataCodeRecordEntity ) ) {
basicdataCodeRecordEntity = new BasicdataCodeRecordEntity ( ) ;
basicdataCodeRecordEntity . setCodeType ( CodeNumConstant . PACKAGE ) ;
basicdataCodeRecordEntity . setWarehouseId ( basicdataWarehouseEntity . getId ( ) ) ;
basicdataCodeRecordEntity . setWarehouseName ( basicdataWarehouseEntity . getName ( ) ) ;
basicdataCodeRecordEntity . setWarehouseCode ( warehouseCode ) ;
basicdataCodeRecordEntity . setYear ( year + "" ) ;
basicdataCodeRecordEntity . setMonth ( month + "" ) ;
basicdataCodeRecordEntity . setNum ( 0 ) ;
basicdataCodeRecordService . save ( basicdataCodeRecordEntity ) ;
}
Integer oldNum = basicdataCodeRecordEntity . getNum ( ) ;
Integer oldNum = basicdataCodeRecordEntity . getNum ( ) ;
List < String > packageCodes = new ArrayList < > ( ) ;
List < String > packageCodes = new ArrayList < > ( ) ;
int year = Integer . parseInt ( basicdataCodeRecordEntity . getYear ( ) ) % 100 ;
for ( int i = 0 ; i < num ; i + + ) {
for ( int i = 0 ; i < num ; i + + ) {
//获取时间戳后面的时分秒
try {
Thread . sleep ( 1 ) ;
} catch ( InterruptedException e ) {
throw new RuntimeException ( e ) ;
}
String time = new String ( System . currentTimeMillis ( ) + "" ) ;
time = time . substring ( 4 ) ;
oldNum = oldNum + 1 ;
oldNum = oldNum + 1 ;
String packageCode = "HT" + warehouseCode + year + CommonUtil . geFourNumber ( month . longValue ( ) , 2 ) + haxCodeByLong + CommonUtil . geFourNumber ( oldNum . longValue ( ) , 6 ) ;
String packageCode = "HT" + warehouseCode + year + CommonUtil . geFourNumberByString ( basicdataCodeRecordEntity . getMonth ( ) , 2 ) + basicdataCodeRecordEntity . getDay ( ) + time ;
packageCodes . add ( packageCode ) ;
packageCodes . add ( packageCode ) ;
}
}
basicdataCodeRecordEntity . setNum ( oldNum ) ;
basicdataCodeRecordEntity . setNum ( oldNum ) ;
@ -187,328 +162,231 @@ public class BasicdataCodeServiceImpl implements IBasicdataCodeService {
private String generateTrunklineLoadSignCode ( Integer type , String warehouseCode , String orderCode ) {
private String generateTrunklineLoadSignCode ( Integer type , String warehouseCode , String orderCode ) {
if ( ! StringUtil . hasLength ( warehouseCode ) ) {
if ( ! StringUtil . hasLength ( warehouseCode ) ) {
log . warn ( "############generateTrunklineLoadSignCode: 仓库编码为空warehouseCode={}" , warehouseCode ) ;
log . warn ( "############generateTrunklineLoadSignCode: 仓库编码为空warehouseCode={}" , warehouseCode ) ;
return null ;
return null ;
}
}
BasicdataWarehouseEntity basicdataWarehouseEntity = basicdataWarehouseService . getWarehouseEntityByWarehouseCode ( warehouseCode ) ;
BasicdataWarehouseEntity basicdataWarehouseEntity = basicdataWarehouseService . getWarehouseEntityByWarehouseCode ( warehouseCode ) ;
if ( Objects . isNull ( basicdataWarehouseEntity ) ) {
if ( Objects . isNull ( basicdataWarehouseEntity ) ) {
log . warn ( "############getWayBillNo: 仓库信息不存在 warehouseCode={}" , warehouseCode ) ;
log . warn ( "############getWayBillNo: 仓库信息不存在 warehouseCode={}" , warehouseCode ) ;
return null ;
return null ;
}
}
BasicdataCodeRecordEntity basicdataCodeRecordEntity = getBasicdataCodeRecordEntity ( type , basicdataWarehouseEntity ) ;
Integer inrc = basicdataCodeRecordEntity . getNum ( ) + 1 ;
basicdataCodeRecordEntity . setNum ( inrc ) ;
basicdataCodeRecordService . updateById ( basicdataCodeRecordEntity ) ;
return warehouseCode + "ZFQS" + basicdataCodeRecordEntity . getYear ( ) + basicdataCodeRecordEntity . getMonth ( ) + CommonUtil . geFourNumber ( inrc . longValue ( ) , 5 ) ;
}
/ * *
* 获取编码生成记录
*
* @param type
* @param basicdataWarehouseEntity
* @return
* /
private BasicdataCodeRecordEntity getBasicdataCodeRecordEntity ( Integer type , BasicdataWarehouseEntity basicdataWarehouseEntity ) {
Calendar calendar = Calendar . getInstance ( ) ;
Calendar calendar = Calendar . getInstance ( ) ;
//获取年份
//获取年份
Integer year = calendar . get ( Calendar . YEAR ) ;
Integer year = calendar . get ( Calendar . YEAR ) ;
// 获取月份(注意月份从0开始计数)
// 获取月份(注意月份从0开始计数)
Integer month = calendar . get ( Calendar . MONTH ) + 1 ;
Integer month = calendar . get ( Calendar . MONTH ) + 1 ;
Integer day = calendar . get ( Calendar . DAY_OF_MONTH ) ;
BasicdataCodeRecordEntity basicdataCodeRecordEntity = basicdataCodeRecordService . findEntityByCodeTypeAndWarehouseCodeAndYearAndMonth ( type , basicdataWarehouseEntity . getWarehouseCode ( ) , year + "" , month + "" , day + "" ) ;
BasicdataCodeRecordEntity basicdataCodeRecordEntity = basicdataCodeRecordService . findEntityByCodeTypeAndWarehouseCodeAndYearAndMonth ( type , warehouseCode , year + "" , month + "" ) ;
if ( Objects . isNull ( basicdataCodeRecordEntity ) ) {
if ( Objects . isNull ( basicdataCodeRecordEntity ) ) {
basicdataCodeRecordEntity = new BasicdataCodeRecordEntity ( ) ;
basicdataCodeRecordEntity = new BasicdataCodeRecordEntity ( ) ;
basicdataCodeRecordEntity . setCodeType ( type ) ;
basicdataCodeRecordEntity . setCodeType ( type ) ;
basicdataCodeRecordEntity . setWarehouseId ( basicdataWarehouseEntity . getId ( ) ) ;
basicdataCodeRecordEntity . setWarehouseId ( basicdataWarehouseEntity . getId ( ) ) ;
basicdataCodeRecordEntity . setWarehouseName ( basicdataWarehouseEntity . getName ( ) ) ;
basicdataCodeRecordEntity . setWarehouseName ( basicdataWarehouseEntity . getName ( ) ) ;
basicdataCodeRecordEntity . setWarehouseCode ( warehouseCode ) ;
basicdataCodeRecordEntity . setWarehouseCode ( basicdataWarehouseEntity . getWarehouseCode ( ) ) ;
basicdataCodeRecordEntity . setYear ( year + "" ) ;
basicdataCodeRecordEntity . setYear ( year + "" ) ;
basicdataCodeRecordEntity . setMonth ( month + "" ) ;
basicdataCodeRecordEntity . setMonth ( month + "" ) ;
basicdataCodeRecordEntity . setDay ( day + "" ) ;
basicdataCodeRecordEntity . setNum ( 0 ) ;
basicdataCodeRecordEntity . setNum ( 0 ) ;
basicdataCodeRecordService . save ( basicdataCodeRecordEntity ) ;
basicdataCodeRecordService . save ( basicdataCodeRecordEntity ) ;
}
}
Integer inrc = basicdataCodeRecordEntity . getNum ( ) + 1 ;
return basicdataCodeRecordEntity ;
basicdataCodeRecordEntity . setNum ( inrc ) ;
basicdataCodeRecordService . updateById ( basicdataCodeRecordEntity ) ;
return warehouseCode + "ZFQS" + year + CommonUtil . geFourNumber ( month . longValue ( ) , 2 ) + CommonUtil . geFourNumber ( inrc . longValue ( ) , 5 ) ;
}
}
private String generateTrunklineTripartiteLoadCode ( Integer type , String warehouseCode , String orderCode ) {
private String generateTrunklineTripartiteLoadCode ( Integer type , String warehouseCode , String orderCode ) {
if ( ! StringUtil . hasLength ( warehouseCode ) ) {
if ( ! StringUtil . hasLength ( warehouseCode ) ) {
log . warn ( "############generateTrunklineCarsLineCode: 仓库编码为空warehouseCode={}" , warehouseCode ) ;
log . warn ( "############generateTrunklineCarsLineCode: 仓库编码为空warehouseCode={}" , warehouseCode ) ;
return null ;
return null ;
}
}
String f = "ZZ" ;
String f = "ZZ" ;
BasicdataWarehouseEntity basicdataWarehouseEntity = basicdataWarehouseService . getWarehouseEntityByWarehouseCode ( warehouseCode ) ;
BasicdataWarehouseEntity basicdataWarehouseEntity = basicdataWarehouseService . getWarehouseEntityByWarehouseCode ( warehouseCode ) ;
if ( Objects . isNull ( basicdataWarehouseEntity ) ) {
if ( Objects . isNull ( basicdataWarehouseEntity ) ) {
log . warn ( "############getWayBillNo: 仓库信息不存在 warehouseCode={}" , warehouseCode ) ;
log . warn ( "############getWayBillNo: 仓库信息不存在 warehouseCode={}" , warehouseCode ) ;
return null ;
return null ;
}
}
Calendar calendar = Calendar . getInstance ( ) ;
//获取年份
Integer year = calendar . get ( Calendar . YEAR ) ;
// 获取月份(注意月份从0开始计数)
Integer month = calendar . get ( Calendar . MONTH ) + 1 ;
BasicdataCodeRecordEntity basicdataCodeRecordEntity = basicdataCodeRecordService . findEntityByCodeTypeAndWarehouseCodeAndYearAndMonth ( type , warehouseCode , year + "" , month + "" ) ;
BasicdataCodeRecordEntity basicdataCodeRecordEntity = getBasicdataCodeRecordEntity ( type , basicdataWarehouseEntity ) ;
if ( Objects . isNull ( basicdataCodeRecordEntity ) ) {
basicdataCodeRecordEntity = new BasicdataCodeRecordEntity ( ) ;
basicdataCodeRecordEntity . setCodeType ( type ) ;
basicdataCodeRecordEntity . setWarehouseId ( basicdataWarehouseEntity . getId ( ) ) ;
basicdataCodeRecordEntity . setWarehouseName ( basicdataWarehouseEntity . getName ( ) ) ;
basicdataCodeRecordEntity . setWarehouseCode ( warehouseCode ) ;
basicdataCodeRecordEntity . setYear ( year + "" ) ;
basicdataCodeRecordEntity . setMonth ( month + "" ) ;
basicdataCodeRecordEntity . setNum ( 0 ) ;
basicdataCodeRecordService . save ( basicdataCodeRecordEntity ) ;
}
Integer inrc = basicdataCodeRecordEntity . getNum ( ) + 1 ;
Integer inrc = basicdataCodeRecordEntity . getNum ( ) + 1 ;
basicdataCodeRecordEntity . setNum ( inrc ) ;
basicdataCodeRecordEntity . setNum ( inrc ) ;
basicdataCodeRecordService . updateById ( basicdataCodeRecordEntity ) ;
basicdataCodeRecordService . updateById ( basicdataCodeRecordEntity ) ;
return warehouseCode + f + year + CommonUtil . geFourNumber ( month . longValue ( ) , 2 ) + CommonUtil . geFourNumber ( inrc . longValue ( ) , 5 ) ;
return warehouseCode + f + basicdataCodeRecordEntity . getYear ( ) + CommonUtil . geFourNumberByString ( basicdataCodeRecordEntity . getMonth ( ) , 2 ) + CommonUtil . geFourNumber ( inrc . longValue ( ) , 5 ) ;
}
}
private String generateTrunklineCarsLineCode ( Integer type , String warehouseCode , String orderCode ) {
private String generateTrunklineCarsLineCode ( Integer type , String warehouseCode , String orderCode ) {
if ( ! StringUtil . hasLength ( warehouseCode ) ) {
if ( ! StringUtil . hasLength ( warehouseCode ) ) {
log . warn ( "############generateTrunklineCarsLineCode: 仓库编码为空warehouseCode={}" , warehouseCode ) ;
log . warn ( "############generateTrunklineCarsLineCode: 仓库编码为空warehouseCode={}" , warehouseCode ) ;
return null ;
return null ;
}
}
String f = "" ;
String f = "" ;
if ( "1" . equals ( orderCode ) ) {
if ( "1" . equals ( orderCode ) ) {
f = "GX" ;
f = "GX" ;
} else if ( "2" . equals ( orderCode ) ) {
} else if ( "2" . equals ( orderCode ) ) {
f = "ZX" ;
f = "ZX" ;
} else if ( "3" . equals ( orderCode ) ) {
} else if ( "3" . equals ( orderCode ) ) {
f = "ZC" ;
f = "ZC" ;
} else {
} else {
return null ;
return null ;
}
}
BasicdataWarehouseEntity basicdataWarehouseEntity = basicdataWarehouseService . getWarehouseEntityByWarehouseCode ( warehouseCode ) ;
BasicdataWarehouseEntity basicdataWarehouseEntity = basicdataWarehouseService . getWarehouseEntityByWarehouseCode ( warehouseCode ) ;
if ( Objects . isNull ( basicdataWarehouseEntity ) ) {
if ( Objects . isNull ( basicdataWarehouseEntity ) ) {
log . warn ( "############getWayBillNo: 仓库信息不存在 warehouseCode={}" , warehouseCode ) ;
log . warn ( "############getWayBillNo: 仓库信息不存在 warehouseCode={}" , warehouseCode ) ;
return null ;
return null ;
}
}
Calendar calendar = Calendar . getInstance ( ) ;
//获取年份
Integer year = calendar . get ( Calendar . YEAR ) ;
// 获取月份(注意月份从0开始计数)
Integer month = calendar . get ( Calendar . MONTH ) + 1 ;
BasicdataCodeRecordEntity basicdataCodeRecordEntity = getBasicdataCodeRecordEntity ( type , basicdataWarehouseEntity ) ;
BasicdataCodeRecordEntity basicdataCodeRecordEntity = basicdataCodeRecordService . findEntityByCodeTypeAndWarehouseCodeAndYearAndMonth ( type , warehouseCode , year + "" , month + "" ) ;
if ( Objects . isNull ( basicdataCodeRecordEntity ) ) {
basicdataCodeRecordEntity = new BasicdataCodeRecordEntity ( ) ;
basicdataCodeRecordEntity . setCodeType ( type ) ;
basicdataCodeRecordEntity . setWarehouseId ( basicdataWarehouseEntity . getId ( ) ) ;
basicdataCodeRecordEntity . setWarehouseName ( basicdataWarehouseEntity . getName ( ) ) ;
basicdataCodeRecordEntity . setWarehouseCode ( warehouseCode ) ;
basicdataCodeRecordEntity . setYear ( year + "" ) ;
basicdataCodeRecordEntity . setMonth ( month + "" ) ;
basicdataCodeRecordEntity . setNum ( 0 ) ;
basicdataCodeRecordService . save ( basicdataCodeRecordEntity ) ;
}
Integer inrc = basicdataCodeRecordEntity . getNum ( ) + 1 ;
Integer inrc = basicdataCodeRecordEntity . getNum ( ) + 1 ;
basicdataCodeRecordEntity . setNum ( inrc ) ;
basicdataCodeRecordEntity . setNum ( inrc ) ;
basicdataCodeRecordService . updateById ( basicdataCodeRecordEntity ) ;
basicdataCodeRecordService . updateById ( basicdataCodeRecordEntity ) ;
return warehouseCode + f + year + CommonUtil . geFourNumber ( month . longValue ( ) , 2 ) + CommonUtil . geFourNumber ( inrc . longValue ( ) , 5 ) ;
return warehouseCode + f + basicdataCodeRecordEntity . getYear ( ) + CommonUtil . geFourNumberByString ( basicdataCodeRecordEntity . getMonth ( ) , 2 ) + CommonUtil . geFourNumber ( inrc . longValue ( ) , 5 ) ;
}
}
private String generateTrunklineBillladingCode ( Integer type , String warehouseCode , String orderCode ) {
private String generateTrunklineBillladingCode ( Integer type , String warehouseCode , String orderCode ) {
if ( ! StringUtil . hasLength ( warehouseCode ) ) {
if ( ! StringUtil . hasLength ( warehouseCode ) ) {
log . warn ( "############generateTrunklineBillladingCode: 仓库编码为空warehouseCode={}" , warehouseCode ) ;
log . warn ( "############generateTrunklineBillladingCode: 仓库编码为空warehouseCode={}" , warehouseCode ) ;
return null ;
return null ;
}
}
BasicdataWarehouseEntity basicdataWarehouseEntity = basicdataWarehouseService . getWarehouseEntityByWarehouseCode ( warehouseCode ) ;
BasicdataWarehouseEntity basicdataWarehouseEntity = basicdataWarehouseService . getWarehouseEntityByWarehouseCode ( warehouseCode ) ;
if ( Objects . isNull ( basicdataWarehouseEntity ) ) {
if ( Objects . isNull ( basicdataWarehouseEntity ) ) {
log . warn ( "############getWayBillNo: 仓库信息不存在 warehouseCode={}" , warehouseCode ) ;
log . warn ( "############getWayBillNo: 仓库信息不存在 warehouseCode={}" , warehouseCode ) ;
return null ;
return null ;
}
}
Calendar calendar = Calendar . getInstance ( ) ;
BasicdataCodeRecordEntity basicdataCodeRecordEntity = getBasicdataCodeRecordEntity ( type , basicdataWarehouseEntity ) ;
//获取年份
Integer year = calendar . get ( Calendar . YEAR ) ;
// 获取月份(注意月份从0开始计数)
Integer month = calendar . get ( Calendar . MONTH ) + 1 ;
BasicdataCodeRecordEntity basicdataCodeRecordEntity = basicdataCodeRecordService . findEntityByCodeTypeAndWarehouseCodeAndYearAndMonth ( type , warehouseCode , year + "" , month + "" ) ;
if ( Objects . isNull ( basicdataCodeRecordEntity ) ) {
basicdataCodeRecordEntity = new BasicdataCodeRecordEntity ( ) ;
basicdataCodeRecordEntity . setCodeType ( type ) ;
basicdataCodeRecordEntity . setWarehouseId ( basicdataWarehouseEntity . getId ( ) ) ;
basicdataCodeRecordEntity . setWarehouseName ( basicdataWarehouseEntity . getName ( ) ) ;
basicdataCodeRecordEntity . setWarehouseCode ( warehouseCode ) ;
basicdataCodeRecordEntity . setYear ( year + "" ) ;
basicdataCodeRecordEntity . setMonth ( month + "" ) ;
basicdataCodeRecordEntity . setNum ( 0 ) ;
basicdataCodeRecordService . save ( basicdataCodeRecordEntity ) ;
}
Integer inrc = basicdataCodeRecordEntity . getNum ( ) + 1 ;
Integer inrc = basicdataCodeRecordEntity . getNum ( ) + 1 ;
basicdataCodeRecordEntity . setNum ( inrc ) ;
basicdataCodeRecordEntity . setNum ( inrc ) ;
basicdataCodeRecordService . updateById ( basicdataCodeRecordEntity ) ;
basicdataCodeRecordService . updateById ( basicdataCodeRecordEntity ) ;
return warehouseCode + "TH" + year + CommonUtil . geFourNumber ( month . longValue ( ) , 2 ) + CommonUtil . geFourNumber ( inrc . longValue ( ) , 5 ) ;
return warehouseCode + "TH" + basicdataCodeRecordEntity . getYear ( ) + CommonUtil . geFourNumberByString ( basicdataCodeRecordEntity . getMonth ( ) , 2 ) + CommonUtil . geFourNumber ( inrc . longValue ( ) , 5 ) ;
}
}
private String generateExOrderCode ( Integer type , String warehouseCode , String orderCode ) {
private String generateExOrderCode ( Integer type , String warehouseCode , String orderCode ) {
if ( ! StringUtil . hasLength ( warehouseCode ) ) {
if ( ! StringUtil . hasLength ( warehouseCode ) ) {
log . warn ( "############generateTraysCode: 仓库编码为空warehouseCode={}" , warehouseCode ) ;
log . warn ( "############generateTraysCode: 仓库编码为空warehouseCode={}" , warehouseCode ) ;
return null ;
return null ;
}
}
//HTEX+仓库code+年月日+(仓库当天的数量+1)
//HTEX+仓库code+年月日+(仓库当天的数量+1)
BasicdataWarehouseEntity basicdataWarehouseEntity = basicdataWarehouseService . getWarehouseEntityByWarehouseCode ( warehouseCode ) ;
BasicdataWarehouseEntity basicdataWarehouseEntity = basicdataWarehouseService . getWarehouseEntityByWarehouseCode ( warehouseCode ) ;
if ( Objects . isNull ( basicdataWarehouseEntity ) ) {
if ( Objects . isNull ( basicdataWarehouseEntity ) ) {
log . warn ( "############getWayBillNo: 仓库信息不存在 warehouseCode={}" , warehouseCode ) ;
log . warn ( "############getWayBillNo: 仓库信息不存在 warehouseCode={}" , warehouseCode ) ;
return null ;
return null ;
}
}
Calendar calendar = Calendar . getInstance ( ) ;
//获取年份
Integer year = calendar . get ( Calendar . YEAR ) ;
// 获取月份(注意月份从0开始计数)
Integer month = calendar . get ( Calendar . MONTH ) + 1 ;
// 获取日期
Integer day = calendar . get ( Calendar . DAY_OF_MONTH ) ;
BasicdataCodeRecordEntity basicdataCodeRecordEntity = getBasicdataCodeRecordEntity ( type , basicdataWarehouseEntity ) ;
BasicdataCodeRecordEntity basicdataCodeRecordEntity = basicdataCodeRecordService . findEntityByCodeTypeAndWarehouseCodeAndYearAndMonth ( type , warehouseCode , year + "" , month + "" ) ;
if ( Objects . isNull ( basicdataCodeRecordEntity ) ) {
basicdataCodeRecordEntity = new BasicdataCodeRecordEntity ( ) ;
basicdataCodeRecordEntity . setCodeType ( type ) ;
basicdataCodeRecordEntity . setWarehouseId ( basicdataWarehouseEntity . getId ( ) ) ;
basicdataCodeRecordEntity . setWarehouseName ( basicdataWarehouseEntity . getName ( ) ) ;
basicdataCodeRecordEntity . setWarehouseCode ( warehouseCode ) ;
basicdataCodeRecordEntity . setYear ( year + "" ) ;
basicdataCodeRecordEntity . setMonth ( month + "" ) ;
basicdataCodeRecordEntity . setNum ( 0 ) ;
basicdataCodeRecordService . save ( basicdataCodeRecordEntity ) ;
}
Integer inrc = basicdataCodeRecordEntity . getNum ( ) + 1 ;
Integer inrc = basicdataCodeRecordEntity . getNum ( ) + 1 ;
basicdataCodeRecordEntity . setNum ( inrc ) ;
basicdataCodeRecordEntity . setNum ( inrc ) ;
basicdataCodeRecordService . updateById ( basicdataCodeRecordEntity ) ;
basicdataCodeRecordService . updateById ( basicdataCodeRecordEntity ) ;
return "HTEX" + warehouseCode + year + CommonUtil . geFourNumber ( month . longValue ( ) , 2 ) + CommonUtil . geFourNumber ( day . longValue ( ) , 2 ) + CommonUtil . geFourNumber ( inrc . longValue ( ) , 5 ) ;
return "HTEX" + warehouseCode + basicdataCodeRecordEntity . getYear ( ) + CommonUtil . geFourNumberByString ( basicdataCodeRecordEntity . getMonth ( ) , 2 ) + CommonUtil . geFourNumberByString ( basicdataCodeRecordEntity . getDay ( ) , 2 ) + CommonUtil . geFourNumber ( inrc . longValue ( ) , 5 ) ;
}
}
private String generateTraysCode ( Integer type , String warehouseCode ) {
private String generateTraysCode ( Integer type , String warehouseCode ) {
BasicTenantCodeEntity basicTenantCode = tenantCodeClient . findBasicTenantCodeByCodeAndShowType ( BasicCodeTypeConstant . TRAY_CODE . getValue ( ) , BasicCodeShowConstant . QR_CODE . getValue ( ) ) ;
BasicTenantCodeEntity basicTenantCode = tenantCodeClient . findBasicTenantCodeByCodeAndShowType ( BasicCodeTypeConstant . TRAY_CODE . getValue ( ) , BasicCodeShowConstant . QR_CODE . getValue ( ) ) ;
if ( Objects . isNull ( basicTenantCode ) ) {
if ( Objects . isNull ( basicTenantCode ) ) {
log . warn ( "############generateTraysCode: 租户信息不存在basicTenantCode={}" , basicTenantCode ) ;
log . warn ( "############generateTraysCode: 租户信息不存在basicTenantCode={}" , basicTenantCode ) ;
return null ;
return null ;
}
}
String desName = basicTenantCode . getDesName ( ) ;
String desName = basicTenantCode . getDesName ( ) ;
String code = basicTenantCode . getCode ( ) ;
String code = basicTenantCode . getCode ( ) ;
if ( ! StringUtil . hasLength ( warehouseCode ) ) {
if ( ! StringUtil . hasLength ( warehouseCode ) ) {
log . warn ( "############generateTraysCode: 仓库编码为空warehouseCode={}" , warehouseCode ) ;
log . warn ( "############generateTraysCode: 仓库编码为空warehouseCode={}" , warehouseCode ) ;
return null ;
return null ;
}
}
//托盘 HT+仓库拼音+ 年月 +【当前仓库总数+1(五位数 不足补零)】
//托盘 HT+仓库拼音+ 年月 +【当前仓库总数+1(五位数 不足补零)】
BasicdataWarehouseEntity basicdataWarehouseEntity = basicdataWarehouseService . getWarehouseEntityByWarehouseCode ( warehouseCode ) ;
BasicdataWarehouseEntity basicdataWarehouseEntity = basicdataWarehouseService . getWarehouseEntityByWarehouseCode ( warehouseCode ) ;
if ( Objects . isNull ( basicdataWarehouseEntity ) ) {
if ( Objects . isNull ( basicdataWarehouseEntity ) ) {
log . warn ( "############getWayBillNo: 仓库信息不存在 warehouseCode={}" , warehouseCode ) ;
log . warn ( "############getWayBillNo: 仓库信息不存在 warehouseCode={}" , warehouseCode ) ;
return null ;
return null ;
}
}
String abbreviation = basicdataWarehouseEntity . getAbbreviation ( ) ;
String abbreviation = basicdataWarehouseEntity . getAbbreviation ( ) ;
Calendar calendar = Calendar . getInstance ( ) ;
BasicdataCodeRecordEntity basicdataCodeRecordEntity = getBasicdataCodeRecordEntity ( type , basicdataWarehouseEntity ) ;
//获取年份
Integer year = calendar . get ( Calendar . YEAR ) ;
// 获取月份(注意月份从0开始计数)
Integer month = calendar . get ( Calendar . MONTH ) + 1 ;
BasicdataCodeRecordEntity basicdataCodeRecordEntity = basicdataCodeRecordService . findEntityByCodeTypeAndWarehouseCodeAndYearAndMonth ( type , warehouseCode , year + "" , month + "" ) ;
if ( Objects . isNull ( basicdataCodeRecordEntity ) ) {
basicdataCodeRecordEntity = new BasicdataCodeRecordEntity ( ) ;
basicdataCodeRecordEntity . setCodeType ( type ) ;
basicdataCodeRecordEntity . setWarehouseId ( basicdataWarehouseEntity . getId ( ) ) ;
basicdataCodeRecordEntity . setWarehouseName ( basicdataWarehouseEntity . getName ( ) ) ;
basicdataCodeRecordEntity . setWarehouseCode ( warehouseCode ) ;
basicdataCodeRecordEntity . setYear ( year + "" ) ;
basicdataCodeRecordEntity . setMonth ( month + "" ) ;
basicdataCodeRecordEntity . setNum ( 100000 ) ;
basicdataCodeRecordService . save ( basicdataCodeRecordEntity ) ;
}
Integer inrc = basicdataCodeRecordEntity . getNum ( ) + 1 ;
Integer inrc = basicdataCodeRecordEntity . getNum ( ) + 1 ;
basicdataCodeRecordEntity . setNum ( inrc ) ;
basicdataCodeRecordEntity . setNum ( inrc ) ;
basicdataCodeRecordService . updateById ( basicdataCodeRecordEntity ) ;
basicdataCodeRecordService . updateById ( basicdataCodeRecordEntity ) ;
String trayCode = code + warehouseCode + ( year % 100 ) + inrc ;
String trayCode = code + warehouseCode + ( Integer . parseInt ( basicdataCodeRecordEntity . getYear ( ) ) % 100 ) + inrc ;
String trayName = desName + abbreviation + inrc ;
String trayName = desName + abbreviation + inrc ;
return trayCode + "&&" + trayName ;
return trayCode + "&&" + trayName ;
}
}
/ * *
/ * *
* 生成仓库对应的运单号
* 生成仓库对应的运单号
*
* @param type
* @param type
* @param warehouseCode
* @param warehouseCode
* @return
* @return
* /
* /
private String getWayBillNo ( Integer type , String warehouseCode ) {
private String getWayBillNo ( Integer type , String warehouseCode ) {
if ( ! StringUtil . hasLength ( warehouseCode ) ) {
if ( ! StringUtil . hasLength ( warehouseCode ) ) {
log . warn ( "############getWayBillNo: 仓库编码为空warehouseCode={}" , warehouseCode ) ;
log . warn ( "############getWayBillNo: 仓库编码为空warehouseCode={}" , warehouseCode ) ;
return null ;
return null ;
}
}
BasicdataWarehouseEntity basicdataWarehouseEntity = basicdataWarehouseService . getWarehouseEntityByWarehouseCode ( warehouseCode ) ;
BasicdataWarehouseEntity basicdataWarehouseEntity = basicdataWarehouseService . getWarehouseEntityByWarehouseCode ( warehouseCode ) ;
if ( Objects . isNull ( basicdataWarehouseEntity ) ) {
if ( Objects . isNull ( basicdataWarehouseEntity ) ) {
log . warn ( "############getWayBillNo: 仓库信息不存在 warehouseCode={}" , warehouseCode ) ;
log . warn ( "############getWayBillNo: 仓库信息不存在 warehouseCode={}" , warehouseCode ) ;
return null ;
return null ;
}
}
Calendar calendar = Calendar . getInstance ( ) ;
BasicdataCodeRecordEntity basicdataCodeRecordEntity = getBasicdataCodeRecordEntity ( type , basicdataWarehouseEntity ) ;
//获取年份
Integer year = calendar . get ( Calendar . YEAR ) ;
// 获取月份(注意月份从0开始计数)
Integer month = calendar . get ( Calendar . MONTH ) + 1 ;
BasicdataCodeRecordEntity basicdataCodeRecordEntity = basicdataCodeRecordService . findEntityByCodeTypeAndWarehouseCodeAndYearAndMonth ( type , warehouseCode , year + "" , month + "" ) ;
if ( Objects . isNull ( basicdataCodeRecordEntity ) ) {
basicdataCodeRecordEntity = new BasicdataCodeRecordEntity ( ) ;
basicdataCodeRecordEntity . setCodeType ( type ) ;
basicdataCodeRecordEntity . setWarehouseId ( basicdataWarehouseEntity . getId ( ) ) ;
basicdataCodeRecordEntity . setWarehouseName ( basicdataWarehouseEntity . getName ( ) ) ;
basicdataCodeRecordEntity . setWarehouseCode ( warehouseCode ) ;
basicdataCodeRecordEntity . setYear ( year + "" ) ;
basicdataCodeRecordEntity . setMonth ( month + "" ) ;
basicdataCodeRecordEntity . setNum ( 0 ) ;
basicdataCodeRecordService . save ( basicdataCodeRecordEntity ) ;
}
Integer inrc = basicdataCodeRecordEntity . getNum ( ) + 1 ;
Integer inrc = basicdataCodeRecordEntity . getNum ( ) + 1 ;
basicdataCodeRecordEntity . setNum ( inrc ) ;
basicdataCodeRecordEntity . setNum ( inrc ) ;
basicdataCodeRecordService . updateById ( basicdataCodeRecordEntity ) ;
basicdataCodeRecordService . updateById ( basicdataCodeRecordEntity ) ;
return warehouseCode + year + CommonUtil . geFourNumber ( month . longValue ( ) , 2 ) + CommonUtil . geFourNumber ( inrc . longValue ( ) , 5 ) ;
return warehouseCode + basicdataCodeRecordEntity . getYear ( ) + CommonUtil . geFourNumberByString ( basicdataCodeRecordEntity . getMonth ( ) , 2 ) + CommonUtil . geFourNumber ( inrc . longValue ( ) , 5 ) ;
}
}
@ -521,22 +399,23 @@ public class BasicdataCodeServiceImpl implements IBasicdataCodeService {
String tenantCode = basicTenantCodeClient . shelfCode ( tenantId , String . valueOf ( type ) ) ; //租户编码
String tenantCode = basicTenantCodeClient . shelfCode ( tenantId , String . valueOf ( type ) ) ; //租户编码
//获得年月日短字符串
//获得年月日短字符串
String dateShort = CommonUtil . dateToStringShort ( new Date ( ) ) ;
String dateShort = CommonUtil . dateToStringShort ( new Date ( ) ) ;
String key = tenantId + ":" + warehouseCode + ":" + des + ":" + dateShort ;
String key = tenantId + ":" + warehouseCode + ":" + des + ":" + dateShort ;
//获得序号
//获得序号
Long incr = bladeRedis . incr ( key ) ;
Long incr = bladeRedis . incr ( key ) ;
if ( 1 = = incr ) {
if ( 1 = = incr ) {
//如果为1就是刚刚才建立,给他一个过期时间
//如果为1就是刚刚才建立,给他一个过期时间
bladeRedis . expireAt ( key , CommonUtil . getDayEnd ( ) ) ;
bladeRedis . expireAt ( key , CommonUtil . getDayEnd ( ) ) ;
}
}
return tenantCode + warehouseCode + dateShort + CommonUtil . geFourNumber ( incr , 5 ) ;
return tenantCode + warehouseCode + dateShort + CommonUtil . geFourNumber ( incr , 5 ) ;
}
}
/ * *
/ * *
* 生成配送车次号编码
* 生成配送车次号编码
*
* @param type
* @param type
* /
* /
private String generateDeliveryTrainNumber ( Integer type , String warehouseCode ) {
private String generateDeliveryTrainNumber ( Integer type , String warehouseCode ) {
String des = CodeDesEnum . getMes ( type ) ; //摘要
String des = CodeDesEnum . getMes ( type ) ; //摘要
String tenantId = AuthUtil . getTenantId ( ) ; //租户号
String tenantId = AuthUtil . getTenantId ( ) ; //租户号
// String tenantId = "627683";//租户号
// String tenantId = "627683";//租户号
@ -545,25 +424,25 @@ public class BasicdataCodeServiceImpl implements IBasicdataCodeService {
String dateShort = CommonUtil . dateToStringShort ( new Date ( ) ) ;
String dateShort = CommonUtil . dateToStringShort ( new Date ( ) ) ;
//redis的key
//redis的key
String key = tenantId + ":" + warehouseCode + ":" + des + ":" + dateShort ;
String key = tenantId + ":" + warehouseCode + ":" + des + ":" + dateShort ;
//获得序号
//获得序号
Long incr = bladeRedis . incr ( key ) ;
Long incr = bladeRedis . incr ( key ) ;
if ( 1 = = incr ) {
if ( 1 = = incr ) {
//如果为1就是刚刚才建立,给他一个过期时间
//如果为1就是刚刚才建立,给他一个过期时间
bladeRedis . expireAt ( key , CommonUtil . getDayEnd ( ) ) ;
bladeRedis . expireAt ( key , CommonUtil . getDayEnd ( ) ) ;
}
}
return warehouseCode + des + dateShort + CommonUtil . geFourNumber ( incr , 5 ) ;
return warehouseCode + des + dateShort + CommonUtil . geFourNumber ( incr , 5 ) ;
}
}
private String generatePackageCode ( Integer type , String warehouseCode , String orderCode ) {
private String generatePackageCode ( Integer type , String warehouseCode , String orderCode ) {
if ( ! StringUtil . hasLength ( warehouseCode ) ) {
if ( ! StringUtil . hasLength ( warehouseCode ) ) {
log . warn ( "############generatePackageCode: 仓库编码为空warehouseCode={}" , warehouseCode ) ;
log . warn ( "############generatePackageCode: 仓库编码为空warehouseCode={}" , warehouseCode ) ;
return null ;
return null ;
}
}
if ( ! StringUtil . hasLength ( orderCode ) ) {
if ( ! StringUtil . hasLength ( orderCode ) ) {
log . warn ( "############generatePackageCode: 订单号为空orderCode={}" , orderCode ) ;
log . warn ( "############generatePackageCode: 订单号为空orderCode={}" , orderCode ) ;
return null ;
return null ;
}
}
@ -571,37 +450,17 @@ public class BasicdataCodeServiceImpl implements IBasicdataCodeService {
String haxCodeByLong = CommonUtil . getHaxCodeByLong ( orderCode , 8 ) ;
String haxCodeByLong = CommonUtil . getHaxCodeByLong ( orderCode , 8 ) ;
BasicdataWarehouseEntity basicdataWarehouseEntity = basicdataWarehouseService . getWarehouseEntityByWarehouseCode ( warehouseCode ) ;
BasicdataWarehouseEntity basicdataWarehouseEntity = basicdataWarehouseService . getWarehouseEntityByWarehouseCode ( warehouseCode ) ;
if ( Objects . isNull ( basicdataWarehouseEntity ) ) {
if ( Objects . isNull ( basicdataWarehouseEntity ) ) {
log . warn ( "############getWayBillNo: 仓库信息不存在 warehouseCode={}" , warehouseCode ) ;
log . warn ( "############getWayBillNo: 仓库信息不存在 warehouseCode={}" , warehouseCode ) ;
return null ;
return null ;
}
}
Calendar calendar = Calendar . getInstance ( ) ;
BasicdataCodeRecordEntity basicdataCodeRecordEntity = getBasicdataCodeRecordEntity ( type , basicdataWarehouseEntity ) ;
//获取年份
Integer year = calendar . get ( Calendar . YEAR ) ;
// 获取月份(注意月份从0开始计数)
Integer month = calendar . get ( Calendar . MONTH ) + 1 ;
BasicdataCodeRecordEntity basicdataCodeRecordEntity = basicdataCodeRecordService . findEntityByCodeTypeAndWarehouseCodeAndYearAndMonth ( type , warehouseCode , year + "" , month + "" ) ;
if ( Objects . isNull ( basicdataCodeRecordEntity ) ) {
basicdataCodeRecordEntity = new BasicdataCodeRecordEntity ( ) ;
basicdataCodeRecordEntity . setCodeType ( type ) ;
basicdataCodeRecordEntity . setWarehouseId ( basicdataWarehouseEntity . getId ( ) ) ;
basicdataCodeRecordEntity . setWarehouseName ( basicdataWarehouseEntity . getName ( ) ) ;
basicdataCodeRecordEntity . setWarehouseCode ( warehouseCode ) ;
basicdataCodeRecordEntity . setYear ( year + "" ) ;
basicdataCodeRecordEntity . setMonth ( month + "" ) ;
basicdataCodeRecordEntity . setNum ( 0 ) ;
basicdataCodeRecordService . save ( basicdataCodeRecordEntity ) ;
}
Integer inrc = basicdataCodeRecordEntity . getNum ( ) + 1 ;
Integer inrc = basicdataCodeRecordEntity . getNum ( ) + 1 ;
basicdataCodeRecordEntity . setNum ( inrc ) ;
basicdataCodeRecordEntity . setNum ( inrc ) ;
basicdataCodeRecordService . updateById ( basicdataCodeRecordEntity ) ;
basicdataCodeRecordService . updateById ( basicdataCodeRecordEntity ) ;
return "HT" + warehouseCode + year + CommonUtil . geFourNumber ( month . longValue ( ) , 2 ) + haxCodeByLong + CommonUtil . geFourNumber ( inrc . longValue ( ) , 6 ) ;
return "HT" + warehouseCode + basicdataCodeRecordEntity . getYear ( ) + CommonUtil . geFourNumberByString ( basicdataCodeRecordEntity . getMonth ( ) , 2 ) + haxCodeByLong + CommonUtil . geFourNumber ( inrc . longValue ( ) , 6 ) ;
}
}
}
}