|
|
|
@ -1,6 +1,5 @@ |
|
|
|
package com.gaotao.modules.purchaseorder.controller; |
|
|
|
|
|
|
|
import com.gaotao.common.exception.ResponseEnum; |
|
|
|
import com.gaotao.common.utils.PageUtils; |
|
|
|
import com.gaotao.common.utils.R; |
|
|
|
import com.gaotao.modules.app.entity.Supplier; |
|
|
|
@ -17,9 +16,9 @@ import com.gaotao.modules.purchaseorder.query.TblBaseDataQuery; |
|
|
|
import com.gaotao.modules.purchaseorder.service.AuthorizationHistService; |
|
|
|
import com.gaotao.modules.purchaseorder.service.PRHeaderService; |
|
|
|
import com.gaotao.modules.purchaseorder.service.TblBaseDataService; |
|
|
|
import com.gaotao.modules.toolman.query.ToolDetailQuery; |
|
|
|
import com.gaotao.modules.toolman.service.FileAssociateService; |
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
|
import org.springframework.beans.factory.annotation.Qualifier; |
|
|
|
import org.springframework.web.bind.annotation.PostMapping; |
|
|
|
import org.springframework.web.bind.annotation.RequestBody; |
|
|
|
import org.springframework.web.bind.annotation.RequestMapping; |
|
|
|
@ -267,4 +266,9 @@ public class PRHeaderController { |
|
|
|
return R.ok("操作成功!"); |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
@PostMapping("updateReceiveToolDetail") |
|
|
|
public R updateReceiveToolDetail(@RequestBody ToolDetailQuery toolDetailQuery){ |
|
|
|
prHeaderService.updateReceiveToolDetail( toolDetailQuery); |
|
|
|
return R.ok("操作成功!"); |
|
|
|
} |
|
|
|
} |