diff --git a/AMESCoreStudio.Web/Controllers/PCSController.cs b/AMESCoreStudio.Web/Controllers/PCSController.cs
index 6b853f67..2498a305 100644
--- a/AMESCoreStudio.Web/Controllers/PCSController.cs
+++ b/AMESCoreStudio.Web/Controllers/PCSController.cs
@@ -184,7 +184,7 @@ namespace AMESCoreStudio.Web.Controllers
 
                 // 判斷預設值是否更改過,如果有就判斷必填欄位
                 if (string.IsNullOrWhiteSpace(model.Engineer) ||
-                    string.IsNullOrWhiteSpace(model.BiRatio.ToString())||
+                    string.IsNullOrWhiteSpace(model.BiRatio.ToString()) ||
                     string.IsNullOrWhiteSpace(model.Bios) ||
                     string.IsNullOrWhiteSpace(model.Ec) ||
                     string.IsNullOrWhiteSpace(model.Fw))
@@ -245,7 +245,7 @@ namespace AMESCoreStudio.Web.Controllers
                 {
                     if (string.IsNullOrWhiteSpace(model.BiRatio.ToString()))
                         Msg += model.GetAttributeFrom<DisplayAttribute>(nameof(model.BiRatio)).Name + ",";
-                  
+
                     if (model.PartsBakeTime == 0)
                         Msg += model.GetAttributeFrom<DisplayAttribute>(nameof(model.PartsBakeTime)).Name + ",";
 
@@ -2283,7 +2283,7 @@ namespace AMESCoreStudio.Web.Controllers
                 model.wipAtt = await _pcsApi.GetWipAtt(model.wipInfo.WipNO);
                 model.wipBarcodes = await _pcsApi.GetWipBarcode(model.wipInfo.WipNO);
                 model.wipBarcode = model.wipBarcodes.FirstOrDefault();
-                model.ruleStations = await _pcsApi.GetRuleStationByWipNo(model.wipInfo.WipNO);
+                model.ruleStations = await _pcsApi.GetRuleStationByWipNo(model.wipInfo.WipNO, model.wipInfo.FlowRuleID);
 
                 //var q1 = await _pcsApi.GetMaterialSopQuery(itemNo: model.wipAtt.ItemNO);
                 //model.materialSops = q1.Data;
@@ -3521,7 +3521,7 @@ namespace AMESCoreStudio.Web.Controllers
                 MailGroup = "WOVIEW_PE";
             }
             else
-            { 
+            {
                 MailGroup = "WOVIEW_MF";
                 SubjectGroup = "製造單位";
             }
@@ -4298,7 +4298,7 @@ namespace AMESCoreStudio.Web.Controllers
         }
 
         [HttpGet]
-        public async Task<IActionResult> PCS008V(string unitNo, string wipNo, string itemNo, string dateStr, string dateEnd,string factoryNo)
+        public async Task<IActionResult> PCS008V(string unitNo, string wipNo, string itemNo, string dateStr, string dateEnd, string factoryNo)
         {
             IResultModel<dynamic> result = await _pcsApi.GetWipInfoPCS008(unitno: unitNo, wipno: wipNo, itemno: itemNo,
                 date_str: dateStr, date_end: dateEnd, factoryno: factoryNo);
@@ -5990,8 +5990,7 @@ namespace AMESCoreStudio.Web.Controllers
                         model.Sops.Add(new PCS021ViewModel_SOP
                         {
                             SopName = "SOP文件",
-                            SopPath = $@"/DocEsop/{Esop.FirstOrDefault().file_path}"
-                            //SopPath = @$"\\qasrv-n\Web\ISOZone\{Esop.FirstOrDefault().file_path}"
+                            SopPath = $@"/aa/T2/20200430184208_T3作業指導書.pdf"
                         });
                     }
                 }
@@ -6006,8 +6005,7 @@ namespace AMESCoreStudio.Web.Controllers
                         model.Sops.Add(new PCS021ViewModel_SOP
                         {
                             SopName = "暫行文件",
-                            SopPath = $@"/e-sop/{Esop.FirstOrDefault().Process}/{Esop.FirstOrDefault().SopName}.pdf"
-                            //SopPath = @$"\\qasrv-n\Web\ISOZone\{Esop.FirstOrDefault().file_path}"
+                            SopPath = $@"/aa/ASSY-T2/20221212134442_OFT-xxW04系列拆組MB重工測試SOP.pdf"
                         });
                     }
                 }