date
This commit is contained in:
@@ -179,7 +179,7 @@ public class SubmitLicenseResponse {
|
|||||||
submitLicenseResponse.setLicenseLegalPerson(storeDocument.getStoreDirector());
|
submitLicenseResponse.setLicenseLegalPerson(storeDocument.getStoreDirector());
|
||||||
submitLicenseResponse.setIssueTime(DateUtil.parseDate(storeDocument.getStoreBusinessDate()));
|
submitLicenseResponse.setIssueTime(DateUtil.parseDate(storeDocument.getStoreBusinessDate()));
|
||||||
submitLicenseResponse.setLicenseAddress(storeDocument.getStoreBusinessAdd());
|
submitLicenseResponse.setLicenseAddress(storeDocument.getStoreBusinessAdd());
|
||||||
submitLicenseResponse.setValidity(storeBusinessValidPeriod ? null : DateUtil.parseTime(storeDocument.getStoreBusinessValidPeriod()));
|
submitLicenseResponse.setValidity(storeBusinessValidPeriod ? null : DateUtil.parse(storeDocument.getStoreBusinessValidPeriod(),"yyyy-MM-dd"));
|
||||||
submitLicenseResponse.setValidityType(storeBusinessValidPeriod ? 0 : 1);
|
submitLicenseResponse.setValidityType(storeBusinessValidPeriod ? 0 : 1);
|
||||||
submitLicenseResponse.setOperator(storeDocument.getStoreFoodLicenseOperatorName());
|
submitLicenseResponse.setOperator(storeDocument.getStoreFoodLicenseOperatorName());
|
||||||
submitLicenseResponse.setFoodLicenseLegalPerson(storeDocument.getStoreFoodLicenseLegalRepresentative());
|
submitLicenseResponse.setFoodLicenseLegalPerson(storeDocument.getStoreFoodLicenseLegalRepresentative());
|
||||||
|
|||||||
@@ -190,7 +190,7 @@ public class ApplyLicenseServiceImpl implements ApplyLicenseService {
|
|||||||
submitLicenseResponse.setLicenseLegalPerson(storeDocument.getStoreDirector());
|
submitLicenseResponse.setLicenseLegalPerson(storeDocument.getStoreDirector());
|
||||||
submitLicenseResponse.setIssueTime(DateUtil.parseDate(storeDocument.getStoreBusinessDate()));
|
submitLicenseResponse.setIssueTime(DateUtil.parseDate(storeDocument.getStoreBusinessDate()));
|
||||||
submitLicenseResponse.setLicenseAddress(storeDocument.getStoreBusinessAdd());
|
submitLicenseResponse.setLicenseAddress(storeDocument.getStoreBusinessAdd());
|
||||||
submitLicenseResponse.setValidity(storeBusinessValidPeriod ? null : DateUtil.parseTime(storeDocument.getStoreBusinessValidPeriod()));
|
submitLicenseResponse.setValidity(storeBusinessValidPeriod ? null : DateUtil.parse(storeDocument.getStoreBusinessValidPeriod(),"yyyy-MM-dd"));
|
||||||
submitLicenseResponse.setValidityType(storeBusinessValidPeriod ? 0 : 1);
|
submitLicenseResponse.setValidityType(storeBusinessValidPeriod ? 0 : 1);
|
||||||
submitLicenseResponse.setOperator(storeDocument.getStoreDirector());
|
submitLicenseResponse.setOperator(storeDocument.getStoreDirector());
|
||||||
submitLicenseResponse.setFoodLicenseLegalPerson(storeDocument.getStoreFoodLicenseLegalRepresentative());
|
submitLicenseResponse.setFoodLicenseLegalPerson(storeDocument.getStoreFoodLicenseLegalRepresentative());
|
||||||
|
|||||||
Reference in New Issue
Block a user