fanxw před 11 měsíci
rodič
revize
af4ddd39d4

+ 4 - 0
src/main/java/com/chinaitop/depot/device/service/impl/StorageJsglServiceImpl.java

@@ -92,6 +92,10 @@ public class StorageJsglServiceImpl implements StorageJsglService {
92 92
 	@Override
93 93
 	public void removeStorageJsgl(String id) throws Exception {
94 94
 		storageJsglMapper.deleteByPrimaryKey(id);
95
+		StorageJsglKhxxExample khxxExample = new StorageJsglKhxxExample();
96
+		StorageJsglKhxxExample.Criteria criteria = khxxExample.createCriteria();
97
+		criteria.andZidEqualTo(id);
98
+		storageJsglKhxxMapper.deleteByExample(khxxExample);
95 99
 	}
96 100
 
97 101
 	@Override

+ 1 - 1
src/main/java/com/chinaitop/depot/feignClients/service/DepotBusinessFeignService.java

@@ -29,7 +29,7 @@ public interface DepotBusinessFeignService {
29 29
 	 * @param bcjssl 本次结算数量(吨)
30 30
 	 * @return 
31 31
 	 */
32
-	@RequestMapping(value = "/depot/business/deliveryStorageNotice/updateYjssl", produces = MediaType.APPLICATION_JSON_VALUE, method=RequestMethod.POST)
32
+	@RequestMapping(value = "/depot/business/deliveryStorageNotice/updateTzdYjssl", produces = MediaType.APPLICATION_JSON_VALUE, method=RequestMethod.POST)
33 33
 	void updateTzdYjssl(
34 34
 			@RequestParam("tzdid") Integer tzdid, 
35 35
 			@RequestParam("bcjssl") String bcjssl