|
|
|
@ -9,10 +9,7 @@ import com.foreverwin.modular.core.util.FrontPage;
|
|
|
|
|
import com.foreverwin.modular.core.util.R;
|
|
|
|
|
import com.sap.me.status.StatusBOHandle;
|
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
|
|
import org.springframework.web.bind.annotation.ResponseBody;
|
|
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
*
|
|
|
|
@ -92,8 +89,8 @@ public class ShopOrderController {
|
|
|
|
|
* 查出只有异常的工单
|
|
|
|
|
*/
|
|
|
|
|
@GetMapping("/findAbnormalShopOrder")
|
|
|
|
|
public R findAbnormalShopOrder(ShopOrder shopOrder){
|
|
|
|
|
return R.ok(shopOrderService.findAbnormalShopOrder(shopOrder));
|
|
|
|
|
public R findAbnormalShopOrder(String type, ShopOrder shopOrder){
|
|
|
|
|
return R.ok(shopOrderService.findAbnormalShopOrder(type,shopOrder));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|