|
@@ -506,13 +506,13 @@ public class KuaishouItemCollectSamplesController extends BaseController {
|
|
|
if (Check.isNull(paramJson)) {
|
|
|
throw new Exception("回调信息为空");
|
|
|
}
|
|
|
+ String status = paramJson.getString("status");
|
|
|
+ String message = paramJson.getString("message");
|
|
|
JSONObject lastResult = paramJson.getJSONObject("lastResult");
|
|
|
if (!Check.isNull(lastResult)) {
|
|
|
String state = lastResult.getString("state");
|
|
|
String nu = lastResult.getString("nu");
|
|
|
String com = lastResult.getString("com");
|
|
|
- String status = lastResult.getString("status");
|
|
|
- String message = lastResult.getString("message");
|
|
|
if ("3".equals(state)) {
|
|
|
Integer sampleStatus = kuaishouItemCollectSamplesService.getStatusByCourierNumbe(nu);
|
|
|
if (!Check.isNull(sampleStatus)) {
|