|
@@ -217,7 +217,8 @@ public class WmTaxHelperController {
|
|
|
public R<?> userAgreementAuthorization(@RequestBody String params) {
|
|
|
|
|
|
JSONObject jsonObject = JSONUtil.parseObj(params);
|
|
|
- String signPic = upmsConfig.getApiUrl() + jsonObject.getStr("pic");
|
|
|
+ String picPath = jsonObject.getStr("pic");
|
|
|
+ String signPic = upmsConfig.getApiUrl() + picPath;
|
|
|
|
|
|
HnqzUser hnqzUser = SecurityUtils.getUser();
|
|
|
|
|
@@ -311,6 +312,7 @@ public class WmTaxHelperController {
|
|
|
uasr.setCreateTime(LocalDateTime.now());
|
|
|
uasr.setTarget(1);
|
|
|
uasr.setSignTime(signTime);
|
|
|
+ uasr.setSignImg(picPath);
|
|
|
userAgreementSignatureRecordMapper.insert(uasr);
|
|
|
|
|
|
|