|
|
|
@ -228,6 +228,15 @@ public class SDNYMainProcessController extends AbstractController { |
|
|
|
|
|
|
|
|
|
checkInvoice.put("invoiceCode", invoiceCode); |
|
|
|
|
checkInvoice.put("invoiceNumber", checkInvoice.get("invoiceNo").toString()); |
|
|
|
|
String uuid = ""; |
|
|
|
|
if(invoiceCode != null && StringUtils.isNoneBlank(invoiceCode)){ |
|
|
|
|
uuid = invoiceCode + checkInvoice.get("invoiceNo").toString(); |
|
|
|
|
checkInvoice.put("uuid",uuid); |
|
|
|
|
}else{ |
|
|
|
|
uuid = checkInvoice.get("invoiceNo").toString(); |
|
|
|
|
checkInvoice.put("uuid",uuid); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
String kprq = checkInvoice.get("invoiceDate").toString(); |
|
|
|
|
SimpleDateFormat sdf = new SimpleDateFormat("EEE MMM dd HH:mm:ss zzz yyyy", Locale.US); |
|
|
|
|