refactor(service): 调整删除数据工具的销售出库单处理逻辑
- 注释掉取消签字销售出库单的方法调用 - 添加销售出库单签字的方法调用 - 更新发送请求的 URL 为本地测试环境
This commit is contained in:
parent
4ff05bdc2f
commit
ee21e3caee
|
@ -68,7 +68,9 @@ public class DeleteU8cDataUtil {
|
|||
//删除销售订单
|
||||
// deleteSoSale();
|
||||
//取消签字销售出库单 已测试
|
||||
cancelSignatureIcGeneralHV2("'0001A110000000001TH6', '0001A1100000000VKCOK'");
|
||||
// cancelSignatureIcGeneralHV2("'0001A110000000001TH6', '0001A1100000000VKCOK'");
|
||||
//销售出库单签字 已测试
|
||||
saleOutSign("'0001A110000000001TH6', '0001A1100000000VKCOK'");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -427,7 +429,8 @@ public class DeleteU8cDataUtil {
|
|||
objectMap3.put("signInfo", objectMap1);
|
||||
objectMap3.put("queryInfo", objectMap2);
|
||||
|
||||
sendU8C("http://39.170.109.90:8088/u8cloud/api/ic/saleout/sign", JSON.toJSONString(objectMap3), vbillcodeList.size());
|
||||
// sendU8C("http://39.170.109.90:8088/u8cloud/api/ic/saleout/sign", JSON.toJSONString(objectMap3), vbillcodeList.size());
|
||||
sendU8C("http://192.168.10.118:8088/u8cloud/api/ic/saleout/sign", JSON.toJSONString(objectMap3), vbillcodeList.size());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -101,8 +101,6 @@
|
|||
AND dbilldate <= '2025-02-28'
|
||||
</select>
|
||||
|
||||
|
||||
|
||||
<resultMap id="get-SoSaleByDelete-result" type="com.hzya.frame.deletedata.entity.DeleteU8cDataUtilEntity" >
|
||||
<result property="vreceiptcode" column="vreceiptcode" jdbcType="VARCHAR"/>
|
||||
<result property="pk_corp" column="pk_corp" jdbcType="VARCHAR"/>
|
||||
|
|
Loading…
Reference in New Issue