diff --git a/HJGL_ZH/BLL/WeldMat/BaseInfo/UnitStoreService.cs b/HJGL_ZH/BLL/WeldMat/BaseInfo/UnitStoreService.cs
index 6742ab9..60e841a 100644
--- a/HJGL_ZH/BLL/WeldMat/BaseInfo/UnitStoreService.cs
+++ b/HJGL_ZH/BLL/WeldMat/BaseInfo/UnitStoreService.cs
@@ -35,6 +35,7 @@ namespace BLL
newUnitStore.UnitStoreCode = unitStore.UnitStoreCode;
newUnitStore.UnitStoreName = unitStore.UnitStoreName;
newUnitStore.StorePosition = unitStore.StorePosition;
+ newUnitStore.IsUse=unitStore.IsUse;
db.Weld_UnitStore.InsertOnSubmit(newUnitStore);
db.SubmitChanges();
}
@@ -53,6 +54,7 @@ namespace BLL
newUnitStore.UnitStoreCode = unitStore.UnitStoreCode;
newUnitStore.UnitStoreName = unitStore.UnitStoreName;
newUnitStore.StorePosition = unitStore.StorePosition;
+ newUnitStore.IsUse = unitStore.IsUse;
db.SubmitChanges();
}
}
@@ -93,6 +95,29 @@ namespace BLL
}
public static void InitUnitStoreDropDownList(FineUIPro.DropDownList dropName, string unitId, bool isShowPlease)
+ {
+ var store = from x in Funs.DB.Weld_UnitStore
+ join y in Funs.DB.Base_Unit on x.UnitId equals y.UnitId
+ where x.IsUse==true
+ orderby y.UnitName, x.UnitStoreCode
+ select new { x.UnitStoreId, UnitStoreName = (y.UnitName + "(" + x.UnitStoreName + ")"), y.UnitName, x.UnitId };
+ if (!string.IsNullOrEmpty(unitId))
+ {
+ store = store.Where(x => x.UnitId == unitId);
+ }
+
+ dropName.DataValueField = "UnitStoreId";
+ dropName.DataTextField = "UnitStoreName";
+ dropName.DataGroupField = "UnitName";
+ dropName.DataSource = store.ToList();
+ dropName.DataBind();
+ if (isShowPlease)
+ {
+ Funs.FineUIPleaseSelect(dropName);
+ }
+ }
+
+ public static void InitUnitStoreAll(FineUIPro.DropDownList dropName, string unitId, bool isShowPlease)
{
var store = from x in Funs.DB.Weld_UnitStore
join y in Funs.DB.Base_Unit on x.UnitId equals y.UnitId
diff --git a/HJGL_ZH/FineUIPro.Web/.vs/FineUIPro.Web.csproj.dtbcache.json b/HJGL_ZH/FineUIPro.Web/.vs/FineUIPro.Web.csproj.dtbcache.json
index 4dd70f9..f87587d 100644
--- a/HJGL_ZH/FineUIPro.Web/.vs/FineUIPro.Web.csproj.dtbcache.json
+++ b/HJGL_ZH/FineUIPro.Web/.vs/FineUIPro.Web.csproj.dtbcache.json
@@ -1 +1 @@
-{"RootPath":"D:\\数据\\诺必达\\镇海建安\\ZHJA_HJGL\\HJGL_ZH\\FineUIPro.Web","ProjectFileName":"FineUIPro.Web.csproj","Configuration":"Debug|AnyCPU","FrameworkPath":"","Sources":[{"SourceFile":"AttachFile\\fileupload.ashx.cs"},{"SourceFile":"AttachFile\\webuploader2.aspx.cs"},{"SourceFile":"AttachFile\\webuploader2.aspx.designer.cs"},{"SourceFile":"AttachFile\\webuploader.aspx.cs"},{"SourceFile":"AttachFile\\webuploader.aspx.designer.cs"},{"SourceFile":"Captcha\\captcha.ashx.cs"},{"SourceFile":"Captcha\\CaptchaImage.cs"},{"SourceFile":"common\\BaseInfo\\AudiFlowEdit.aspx.cs"},{"SourceFile":"common\\BaseInfo\\AudiFlowEdit.aspx.designer.cs"},{"SourceFile":"common\\BaseInfo\\AudiFlowSet.aspx.cs"},{"SourceFile":"common\\BaseInfo\\AudiFlowSet.aspx.designer.cs"},{"SourceFile":"common\\BaseInfo\\DepartEdit.aspx.cs"},{"SourceFile":"common\\BaseInfo\\DepartEdit.aspx.designer.cs"},{"SourceFile":"common\\BaseInfo\\DepartList.aspx.cs"},{"SourceFile":"common\\BaseInfo\\DepartList.aspx.designer.cs"},{"SourceFile":"common\\BaseInfo\\OrganizationChart.aspx.cs"},{"SourceFile":"common\\BaseInfo\\OrganizationChart.aspx.designer.cs"},{"SourceFile":"common\\BaseInfo\\Project.aspx.cs"},{"SourceFile":"common\\BaseInfo\\Project.aspx.designer.cs"},{"SourceFile":"common\\BaseInfo\\ProjectPlan.aspx.cs"},{"SourceFile":"common\\BaseInfo\\ProjectPlan.aspx.designer.cs"},{"SourceFile":"common\\BaseInfo\\ProjectSave.aspx.cs"},{"SourceFile":"common\\BaseInfo\\ProjectSave.aspx.designer.cs"},{"SourceFile":"common\\BaseInfo\\ProjectWeldMat.aspx.cs"},{"SourceFile":"common\\BaseInfo\\ProjectWeldMat.aspx.designer.cs"},{"SourceFile":"common\\BaseInfo\\ProjectYlrqSave.aspx.cs"},{"SourceFile":"common\\BaseInfo\\ProjectYlrqSave.aspx.designer.cs"},{"SourceFile":"common\\BaseInfo\\TestEngineering.aspx.cs"},{"SourceFile":"common\\BaseInfo\\TestEngineering.aspx.designer.cs"},{"SourceFile":"common\\BaseInfo\\Unit.aspx.cs"},{"SourceFile":"common\\BaseInfo\\Unit.aspx.designer.cs"},{"SourceFile":"common\\BaseInfo\\UnitEdit.aspx.cs"},{"SourceFile":"common\\BaseInfo\\UnitEdit.aspx.designer.cs"},{"SourceFile":"common\\FileManage\\EditOffice.aspx.cs"},{"SourceFile":"common\\FileManage\\EditOffice.aspx.designer.cs"},{"SourceFile":"common\\FileManage\\FileManageList.aspx.cs"},{"SourceFile":"common\\FileManage\\FileManageList.aspx.designer.cs"},{"SourceFile":"common\\FileManage\\FileManageList1.aspx.cs"},{"SourceFile":"common\\FileManage\\FileManageList1.aspx.designer.cs"},{"SourceFile":"common\\FileManage\\Read.aspx.cs"},{"SourceFile":"common\\FileManage\\Read.aspx.designer.cs"},{"SourceFile":"common\\FileManage\\Save.aspx.cs"},{"SourceFile":"common\\FileManage\\Save.aspx.designer.cs"},{"SourceFile":"common\\loading.aspx.cs"},{"SourceFile":"common\\loading.aspx.designer.cs"},{"SourceFile":"common\\main.aspx.cs"},{"SourceFile":"common\\main.aspx.designer.cs"},{"SourceFile":"common\\MainGdazServer.aspx.cs"},{"SourceFile":"common\\MainGdazServer.aspx.designer.cs"},{"SourceFile":"common\\MainWelder.aspx.cs"},{"SourceFile":"common\\MainWelder.aspx.designer.cs"},{"SourceFile":"common\\MainWeldMat.aspx.cs"},{"SourceFile":"common\\MainWeldMat.aspx.designer.cs"},{"SourceFile":"common\\mainYlrq.aspx.cs"},{"SourceFile":"common\\mainYlrq.aspx.designer.cs"},{"SourceFile":"common\\mainYlrqServer.aspx.cs"},{"SourceFile":"common\\mainYlrqServer.aspx.designer.cs"},{"SourceFile":"common\\main_bootstrap_pure.aspx.cs"},{"SourceFile":"common\\main_bootstrap_pure.aspx.designer.cs"},{"SourceFile":"common\\main_bootstrap_pure_login.aspx.cs"},{"SourceFile":"common\\main_bootstrap_pure_login.aspx.designer.cs"},{"SourceFile":"common\\Notice\\AddNotice.aspx.cs"},{"SourceFile":"common\\Notice\\AddNotice.aspx.designer.cs"},{"SourceFile":"common\\Notice\\APPFile.aspx.cs"},{"SourceFile":"common\\Notice\\APPFile.aspx.designer.cs"},{"SourceFile":"common\\Notice\\Notice.aspx.cs"},{"SourceFile":"common\\Notice\\Notice.aspx.designer.cs"},{"SourceFile":"common\\Notice\\NoticeFinalFile.aspx.cs"},{"SourceFile":"common\\Notice\\NoticeFinalFile.aspx.designer.cs"},{"SourceFile":"common\\Notice\\NoticeSign.aspx.cs"},{"SourceFile":"common\\Notice\\NoticeSign.aspx.designer.cs"},{"SourceFile":"common\\Notice\\NoticeSignParticular.aspx.cs"},{"SourceFile":"common\\Notice\\NoticeSignParticular.aspx.designer.cs"},{"SourceFile":"common\\ProjectSet\\EditOrganization.aspx.cs"},{"SourceFile":"common\\ProjectSet\\EditOrganization.aspx.designer.cs"},{"SourceFile":"common\\ProjectSet\\Installation.aspx.cs"},{"SourceFile":"common\\ProjectSet\\Installation.aspx.designer.cs"},{"SourceFile":"common\\ProjectSet\\InstallationSave.aspx.cs"},{"SourceFile":"common\\ProjectSet\\InstallationSave.aspx.designer.cs"},{"SourceFile":"common\\ProjectSet\\ProjectRolePower.aspx.cs"},{"SourceFile":"common\\ProjectSet\\ProjectRolePower.aspx.designer.cs"},{"SourceFile":"common\\ProjectSet\\ProjectSysSet.aspx.cs"},{"SourceFile":"common\\ProjectSet\\ProjectSysSet.aspx.designer.cs"},{"SourceFile":"common\\ProjectSet\\ProjectUnit.aspx.cs"},{"SourceFile":"common\\ProjectSet\\ProjectUnit.aspx.designer.cs"},{"SourceFile":"common\\ProjectSet\\ProjectUser.aspx.cs"},{"SourceFile":"common\\ProjectSet\\ProjectUser.aspx.designer.cs"},{"SourceFile":"common\\ProjectSet\\ProjectUserPower.aspx.cs"},{"SourceFile":"common\\ProjectSet\\ProjectUserPower.aspx.designer.cs"},{"SourceFile":"common\\ProjectSet\\ProjectWelder.aspx.cs"},{"SourceFile":"common\\ProjectSet\\ProjectWelder.aspx.designer.cs"},{"SourceFile":"common\\ProjectSet\\ProjectWelderEdit.aspx.cs"},{"SourceFile":"common\\ProjectSet\\ProjectWelderEdit.aspx.designer.cs"},{"SourceFile":"common\\ProjectSet\\SelectUnit.aspx.cs"},{"SourceFile":"common\\ProjectSet\\SelectUnit.aspx.designer.cs"},{"SourceFile":"common\\ProjectSet\\SelectUser.aspx.cs"},{"SourceFile":"common\\ProjectSet\\SelectUser.aspx.designer.cs"},{"SourceFile":"common\\ProjectSet\\SelectWelder.aspx.cs"},{"SourceFile":"common\\ProjectSet\\SelectWelder.aspx.designer.cs"},{"SourceFile":"common\\ProjectSet\\WorkArea.aspx.cs"},{"SourceFile":"common\\ProjectSet\\WorkArea.aspx.designer.cs"},{"SourceFile":"common\\ProjectSet\\WorkAreaEdit.aspx.cs"},{"SourceFile":"common\\ProjectSet\\WorkAreaEdit.aspx.designer.cs"},{"SourceFile":"common\\ReportPrint\\CalculateChinaEx.aspx.cs"},{"SourceFile":"common\\ReportPrint\\CalculateChinaEx.aspx.designer.cs"},{"SourceFile":"common\\ReportPrint\\ExPrintSet.aspx.cs"},{"SourceFile":"common\\ReportPrint\\ExPrintSet.aspx.designer.cs"},{"SourceFile":"common\\ReportPrint\\ExReportPrint.aspx.cs"},{"SourceFile":"common\\ReportPrint\\ExReportPrint.aspx.designer.cs"},{"SourceFile":"common\\mainGdaz.aspx.cs"},{"SourceFile":"common\\mainGdaz.aspx.designer.cs"},{"SourceFile":"common\\ReportPrint\\PrintDesigner.aspx.cs"},{"SourceFile":"common\\ReportPrint\\PrintDesigner.aspx.designer.cs"},{"SourceFile":"common\\ReportPrint\\ReadExReportFile.aspx.cs"},{"SourceFile":"common\\ReportPrint\\ReadExReportFile.aspx.designer.cs"},{"SourceFile":"common\\ReportPrint\\SaveTabFile.aspx.cs"},{"SourceFile":"common\\ReportPrint\\SaveTabFile.aspx.designer.cs"},{"SourceFile":"common\\Resource\\EditLawRegulation.aspx.cs"},{"SourceFile":"common\\Resource\\EditLawRegulation.aspx.designer.cs"},{"SourceFile":"common\\Resource\\LawRegulationList.aspx.cs"},{"SourceFile":"common\\Resource\\LawRegulationList.aspx.designer.cs"},{"SourceFile":"common\\ShowPerson.aspx.cs"},{"SourceFile":"common\\ShowPerson.aspx.designer.cs"},{"SourceFile":"common\\source.aspx.cs"},{"SourceFile":"common\\source.aspx.designer.cs"},{"SourceFile":"common\\source_file.aspx.cs"},{"SourceFile":"common\\source_file.aspx.designer.cs"},{"SourceFile":"common\\SysManage\\ActiveXDown.aspx.cs"},{"SourceFile":"common\\SysManage\\ActiveXDown.aspx.designer.cs"},{"SourceFile":"common\\SysManage\\DataBak.aspx.cs"},{"SourceFile":"common\\SysManage\\DataBak.aspx.designer.cs"},{"SourceFile":"common\\SysManage\\LogList.aspx.cs"},{"SourceFile":"common\\SysManage\\LogList.aspx.designer.cs"},{"SourceFile":"common\\SysManage\\RoleList.aspx.cs"},{"SourceFile":"common\\SysManage\\RoleList.aspx.designer.cs"},{"SourceFile":"common\\SysManage\\RoleListEdit.aspx.cs"},{"SourceFile":"common\\SysManage\\RoleListEdit.aspx.designer.cs"},{"SourceFile":"common\\SysManage\\RolePower.aspx.cs"},{"SourceFile":"common\\SysManage\\RolePower.aspx.designer.cs"},{"SourceFile":"common\\SysManage\\UpdatePassword.aspx.cs"},{"SourceFile":"common\\SysManage\\UpdatePassword.aspx.designer.cs"},{"SourceFile":"common\\SysManage\\UpdatePasswordEdit.aspx.cs"},{"SourceFile":"common\\SysManage\\UpdatePasswordEdit.aspx.designer.cs"},{"SourceFile":"common\\SysManage\\UserList.aspx.cs"},{"SourceFile":"common\\SysManage\\UserList.aspx.designer.cs"},{"SourceFile":"common\\SysManage\\UserListEdit.aspx.cs"},{"SourceFile":"common\\SysManage\\UserListEdit.aspx.designer.cs"},{"SourceFile":"common\\themes.aspx.cs"},{"SourceFile":"common\\themes.aspx.designer.cs"},{"SourceFile":"common\\WelderManage\\WelderIn.aspx.cs"},{"SourceFile":"common\\WelderManage\\WelderIn.aspx.designer.cs"},{"SourceFile":"common\\WelderManage\\WelderManage.aspx.cs"},{"SourceFile":"common\\WelderManage\\WelderManage.aspx.designer.cs"},{"SourceFile":"common\\WelderManage\\PersonQualifiedProject.aspx.cs"},{"SourceFile":"common\\WelderManage\\PersonQualifiedProject.aspx.designer.cs"},{"SourceFile":"common\\WelderManage\\PersonQualifiedProjectEdit.aspx.cs"},{"SourceFile":"common\\WelderManage\\PersonQualifiedProjectEdit.aspx.designer.cs"},{"SourceFile":"common\\WelderManage\\PersonQualifiedProjectView.aspx.cs"},{"SourceFile":"common\\WelderManage\\PersonQualifiedProjectView.aspx.designer.cs"},{"SourceFile":"common\\WelderManage\\WelderSave.aspx.cs"},{"SourceFile":"common\\WelderManage\\WelderSave.aspx.designer.cs"},{"SourceFile":"common\\WelderManage\\SeeQRImage.aspx.cs"},{"SourceFile":"common\\WelderManage\\SeeQRImage.aspx.designer.cs"},{"SourceFile":"common\\WelderManage\\WelderScoreEdit.aspx.cs"},{"SourceFile":"common\\WelderManage\\WelderScoreEdit.aspx.designer.cs"},{"SourceFile":"config\\ajax.aspx.cs"},{"SourceFile":"config\\ajax.aspx.designer.cs"},{"SourceFile":"config\\enable_gzip_iis6.aspx.cs"},{"SourceFile":"config\\enable_gzip_iis6.aspx.designer.cs"},{"SourceFile":"config\\icons.aspx.cs"},{"SourceFile":"config\\icons.aspx.designer.cs"},{"SourceFile":"config\\icons_font.aspx.cs"},{"SourceFile":"config\\icons_font.aspx.designer.cs"},{"SourceFile":"config\\install_toolbox.aspx.cs"},{"SourceFile":"config\\install_toolbox.aspx.designer.cs"},{"SourceFile":"config\\loading.aspx.cs"},{"SourceFile":"config\\loading.aspx.designer.cs"},{"SourceFile":"config\\modify_webconfig.aspx.cs"},{"SourceFile":"config\\modify_webconfig.aspx.designer.cs"},{"SourceFile":"ContinuousPrint\\CommissionRepairPrint.aspx.cs"},{"SourceFile":"ContinuousPrint\\CommissionRepairPrint.aspx.designer.cs"},{"SourceFile":"ContinuousPrint\\CommonPrint.cs"},{"SourceFile":"ContinuousPrint\\HardnessTestOrderPrint.aspx.cs"},{"SourceFile":"ContinuousPrint\\HardnessTestOrderPrint.aspx.designer.cs"},{"SourceFile":"ContinuousPrint\\HardnessTestReportPrint.aspx.cs"},{"SourceFile":"ContinuousPrint\\HardnessTestReportPrint.aspx.designer.cs"},{"SourceFile":"ContinuousPrint\\PipingSingleDiagramPrint.aspx.cs"},{"SourceFile":"ContinuousPrint\\PipingSingleDiagramPrint.aspx.designer.cs"},{"SourceFile":"ContinuousPrint\\TestOrderPrint.aspx.cs"},{"SourceFile":"ContinuousPrint\\TestOrderPrint.aspx.designer.cs"},{"SourceFile":"ContinuousPrint\\TestRecordtPrint.aspx.cs"},{"SourceFile":"ContinuousPrint\\TestRecordtPrint.aspx.designer.cs"},{"SourceFile":"ContinuousPrint\\WeldingJointInspection.aspx.cs"},{"SourceFile":"ContinuousPrint\\WeldingJointInspection.aspx.designer.cs"},{"SourceFile":"ContinuousPrint\\WeldingRecordPrint.aspx.cs"},{"SourceFile":"ContinuousPrint\\WeldingRecordPrint.aspx.designer.cs"},{"SourceFile":"Controls\\AuditFlowControl.ascx.cs"},{"SourceFile":"Controls\\AuditFlowControl.ascx.designer.cs"},{"SourceFile":"Controls\\ChartControl.ascx.cs"},{"SourceFile":"Controls\\ChartControl.ascx.designer.cs"},{"SourceFile":"Controls\\ClientJs\\ClientJs.ascx.cs"},{"SourceFile":"Controls\\ClientJs\\ClientJs.ascx.designer.cs"},{"SourceFile":"Controls\\GridNavgator.ascx.cs"},{"SourceFile":"Controls\\GridNavgator.ascx.designer.cs"},{"SourceFile":"Controls\\JDGL\\ChartControl.ascx.cs"},{"SourceFile":"Controls\\JDGL\\ChartControl.ascx.designer.cs"},{"SourceFile":"Controls\\ProgressBox.ascx.cs"},{"SourceFile":"Controls\\ProgressBox.ascx.designer.cs"},{"SourceFile":"default.aspx.cs"},{"SourceFile":"default.aspx.designer.cs"},{"SourceFile":"FileManage\\editCAD.aspx.cs"},{"SourceFile":"FileManage\\editCAD.aspx.designer.cs"},{"SourceFile":"FileManage\\EditOffice.aspx.cs"},{"SourceFile":"FileManage\\EditOffice.aspx.designer.cs"},{"SourceFile":"FileManage\\FileManageList.aspx.cs"},{"SourceFile":"FileManage\\FileManageList.aspx.designer.cs"},{"SourceFile":"FileManage\\Read.aspx.cs"},{"SourceFile":"FileManage\\Read.aspx.designer.cs"},{"SourceFile":"FileManage\\ReadCad.aspx.cs"},{"SourceFile":"FileManage\\ReadCad.aspx.designer.cs"},{"SourceFile":"FileManage\\Save.aspx.cs"},{"SourceFile":"FileManage\\Save.aspx.designer.cs"},{"SourceFile":"FileManage\\SaveCAD.aspx.cs"},{"SourceFile":"FileManage\\SaveCAD.aspx.designer.cs"},{"SourceFile":"FingerMark\\AddFinger.aspx.cs"},{"SourceFile":"FingerMark\\AddFinger.aspx.designer.cs"},{"SourceFile":"FingerMark\\CheckConfirm.aspx.cs"},{"SourceFile":"FingerMark\\CheckConfirm.aspx.designer.cs"},{"SourceFile":"FingerMark\\CheckFinger.aspx.cs"},{"SourceFile":"FingerMark\\CheckFinger.aspx.designer.cs"},{"SourceFile":"FingerMark\\FingerConfirm.aspx.cs"},{"SourceFile":"FingerMark\\FingerConfirm.aspx.designer.cs"},{"SourceFile":"FingerMark\\RegisterFinger.aspx.cs"},{"SourceFile":"FingerMark\\RegisterFinger.aspx.designer.cs"},{"SourceFile":"FingerMark\\UsingCheck.aspx.cs"},{"SourceFile":"FingerMark\\UsingCheck.aspx.designer.cs"},{"SourceFile":"Global.asax.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\Components.aspx.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\Components.aspx.designer.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\Consumables.aspx.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\Consumables.aspx.designer.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\Control.aspx.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\Control.aspx.designer.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\Detection.aspx.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\Detection.aspx.designer.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\Equipment.aspx.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\Equipment.aspx.designer.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\ExecStandard.aspx.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\ExecStandard.aspx.designer.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\Groove.aspx.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\Groove.aspx.designer.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\HotProcessCard.aspx.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\HotProcessCard.aspx.designer.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\HotProcessCardEdit.aspx.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\HotProcessCardEdit.aspx.designer.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\JointImage.aspx.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\JointImage.aspx.designer.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\JointImageEdit.aspx.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\JointImageEdit.aspx.designer.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\JointImageItem.aspx.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\JointImageItem.aspx.designer.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\Material.aspx.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\Material.aspx.designer.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\MaterialClass.aspx.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\MaterialClass.aspx.designer.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\MaterialCompare.aspx.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\MaterialCompare.aspx.designer.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\MaterialGroup.aspx.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\MaterialGroup.aspx.designer.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\MaterialStandard.aspx.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\MaterialStandard.aspx.designer.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\Medium.aspx.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\Medium.aspx.designer.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\PipingClass.aspx.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\PipingClass.aspx.designer.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\Standard.aspx.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\Standard.aspx.designer.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\Testing.aspx.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\Testing.aspx.designer.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\TestStandard.aspx.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\TestStandard.aspx.designer.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\Weld.aspx.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\Weld.aspx.designer.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\WeldControl.aspx.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\WeldControl.aspx.designer.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\WeldingMethod.aspx.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\WeldingMethod.aspx.designer.cs"},{"SourceFile":"HJGLServer\\FileControl\\CompanyStandards.aspx.cs"},{"SourceFile":"HJGLServer\\FileControl\\CompanyStandards.aspx.designer.cs"},{"SourceFile":"HJGLServer\\FileControl\\CompanyStandardsEdit.aspx.cs"},{"SourceFile":"HJGLServer\\FileControl\\CompanyStandardsEdit.aspx.designer.cs"},{"SourceFile":"HJGLServer\\FileControl\\DomesticLawsRegulations.aspx.cs"},{"SourceFile":"HJGLServer\\FileControl\\DomesticLawsRegulations.aspx.designer.cs"},{"SourceFile":"HJGLServer\\FileControl\\DomesticLawsRegulationsEdit.aspx.cs"},{"SourceFile":"HJGLServer\\FileControl\\DomesticLawsRegulationsEdit.aspx.designer.cs"},{"SourceFile":"HJGLServer\\FileControl\\DomesticStandards.aspx.cs"},{"SourceFile":"HJGLServer\\FileControl\\DomesticStandards.aspx.designer.cs"},{"SourceFile":"HJGLServer\\FileControl\\DomesticStandardsEdit.aspx.cs"},{"SourceFile":"HJGLServer\\FileControl\\DomesticStandardsEdit.aspx.designer.cs"},{"SourceFile":"HJGLServer\\FileControl\\ForeignStandards.aspx.cs"},{"SourceFile":"HJGLServer\\FileControl\\ForeignStandards.aspx.designer.cs"},{"SourceFile":"HJGLServer\\FileControl\\ForeignStandardsEdit.aspx.cs"},{"SourceFile":"HJGLServer\\FileControl\\ForeignStandardsEdit.aspx.designer.cs"},{"SourceFile":"HJGLServer\\WeldingManage\\TestingParameters.aspx.cs"},{"SourceFile":"HJGLServer\\WeldingManage\\TestingParameters.aspx.designer.cs"},{"SourceFile":"HJGLServer\\WeldingManage\\TestingParametersEdit.aspx.cs"},{"SourceFile":"HJGLServer\\WeldingManage\\TestingParametersEdit.aspx.designer.cs"},{"SourceFile":"HJGLServer\\WeldingManage\\WeldingProcedure.aspx.cs"},{"SourceFile":"HJGLServer\\WeldingManage\\WeldingProcedure.aspx.designer.cs"},{"SourceFile":"HJGLServer\\WeldingManage\\WeldingProcedureEdit.aspx.cs"},{"SourceFile":"HJGLServer\\WeldingManage\\WeldingProcedureEdit.aspx.designer.cs"},{"SourceFile":"HJGLServer\\WeldingManage\\WeldingProcedureIn.aspx.cs"},{"SourceFile":"HJGLServer\\WeldingManage\\WeldingProcedureIn.aspx.designer.cs"},{"SourceFile":"HJGL\\CheckManage\\CheckManage.aspx.cs"},{"SourceFile":"HJGL\\CheckManage\\CheckManage.aspx.designer.cs"},{"SourceFile":"HJGL\\CheckManage\\CheckQuantityStatistics.aspx.cs"},{"SourceFile":"HJGL\\CheckManage\\CheckQuantityStatistics.aspx.designer.cs"},{"SourceFile":"HJGL\\CheckManage\\CheckRecordPrint.aspx.cs"},{"SourceFile":"HJGL\\CheckManage\\CheckRecordPrint.aspx.designer.cs"},{"SourceFile":"HJGL\\CheckManage\\CheckReportExport.aspx.cs"},{"SourceFile":"HJGL\\CheckManage\\CheckReportExport.aspx.designer.cs"},{"SourceFile":"HJGL\\CheckManage\\CheckResultsSummary.aspx.cs"},{"SourceFile":"HJGL\\CheckManage\\CheckResultsSummary.aspx.designer.cs"},{"SourceFile":"HJGL\\CheckManage\\CheckResultsSummaryByBatch.aspx.cs"},{"SourceFile":"HJGL\\CheckManage\\CheckResultsSummaryByBatch.aspx.designer.cs"},{"SourceFile":"HJGL\\CheckManage\\FileCode.aspx.cs"},{"SourceFile":"HJGL\\CheckManage\\FileCode.aspx.designer.cs"},{"SourceFile":"HJGL\\CheckManage\\MTReportEdit.aspx.cs"},{"SourceFile":"HJGL\\CheckManage\\MTReportEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\CheckManage\\NDTManageList.aspx.cs"},{"SourceFile":"HJGL\\CheckManage\\NDTManageList.aspx.designer.cs"},{"SourceFile":"HJGL\\CheckManage\\NDTRemakeReport.aspx.cs"},{"SourceFile":"HJGL\\CheckManage\\NDTRemakeReport.aspx.designer.cs"},{"SourceFile":"HJGL\\CheckManage\\NDTStatisticalWeek.aspx.cs"},{"SourceFile":"HJGL\\CheckManage\\NDTStatisticalWeek.aspx.designer.cs"},{"SourceFile":"HJGL\\CheckManage\\NDTTotalTrust.aspx.cs"},{"SourceFile":"HJGL\\CheckManage\\NDTTotalTrust.aspx.designer.cs"},{"SourceFile":"HJGL\\CheckManage\\NonRTQualityRating.aspx.cs"},{"SourceFile":"HJGL\\CheckManage\\NonRTQualityRating.aspx.designer.cs"},{"SourceFile":"HJGL\\CheckManage\\NoRTCheckManage.aspx.cs"},{"SourceFile":"HJGL\\CheckManage\\NoRTCheckManage.aspx.designer.cs"},{"SourceFile":"HJGL\\CheckManage\\NoRTCheckRecordPrint.aspx.cs"},{"SourceFile":"HJGL\\CheckManage\\NoRTCheckRecordPrint.aspx.designer.cs"},{"SourceFile":"HJGL\\CheckManage\\PassFileOneQueStatistic.aspx.cs"},{"SourceFile":"HJGL\\CheckManage\\PassFileOneQueStatistic.aspx.designer.cs"},{"SourceFile":"HJGL\\CheckManage\\PTReportEdit.aspx.cs"},{"SourceFile":"HJGL\\CheckManage\\PTReportEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\CheckManage\\QualityRating.aspx.cs"},{"SourceFile":"HJGL\\CheckManage\\QualityRating.aspx.designer.cs"},{"SourceFile":"HJGL\\CheckManage\\QualityRatingView.aspx.cs"},{"SourceFile":"HJGL\\CheckManage\\QualityRatingView.aspx.designer.cs"},{"SourceFile":"HJGL\\CheckManage\\ReCheckRecordPrint.aspx.cs"},{"SourceFile":"HJGL\\CheckManage\\ReCheckRecordPrint.aspx.designer.cs"},{"SourceFile":"HJGL\\CheckManage\\RemakeReasonEdit.aspx.cs"},{"SourceFile":"HJGL\\CheckManage\\RemakeReasonEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\CheckManage\\RepairCheckRecordPrint.aspx.cs"},{"SourceFile":"HJGL\\CheckManage\\RepairCheckRecordPrint.aspx.designer.cs"},{"SourceFile":"HJGL\\CheckManage\\RepairNotice.aspx.cs"},{"SourceFile":"HJGL\\CheckManage\\RepairNotice.aspx.designer.cs"},{"SourceFile":"HJGL\\CheckManage\\RTQualityRating.aspx.cs"},{"SourceFile":"HJGL\\CheckManage\\RTQualityRating.aspx.designer.cs"},{"SourceFile":"HJGL\\CheckManage\\RTReport.aspx.cs"},{"SourceFile":"HJGL\\CheckManage\\RTReport.aspx.designer.cs"},{"SourceFile":"HJGL\\CheckManage\\RTReportEdit.aspx.cs"},{"SourceFile":"HJGL\\CheckManage\\RTReportEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\CheckManage\\RTTestingReportDetail.aspx.cs"},{"SourceFile":"HJGL\\CheckManage\\RTTestingReportDetail.aspx.designer.cs"},{"SourceFile":"HJGL\\CheckManage\\TestingReportNotRT.aspx.cs"},{"SourceFile":"HJGL\\CheckManage\\TestingReportNotRT.aspx.designer.cs"},{"SourceFile":"HJGL\\CheckManage\\TestingReportPrint.aspx.cs"},{"SourceFile":"HJGL\\CheckManage\\TestingReportPrint.aspx.designer.cs"},{"SourceFile":"HJGL\\CheckManage\\TestingReportSelect.aspx.cs"},{"SourceFile":"HJGL\\CheckManage\\TestingReportSelect.aspx.designer.cs"},{"SourceFile":"HJGL\\CheckManage\\UTReportEdit.aspx.cs"},{"SourceFile":"HJGL\\CheckManage\\UTReportEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\DataIn\\DataIn.aspx.cs"},{"SourceFile":"HJGL\\DataIn\\DataIn.aspx.designer.cs"},{"SourceFile":"HJGL\\DataIn\\DataInEdit.aspx.cs"},{"SourceFile":"HJGL\\DataIn\\DataInEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\DataIn\\JointIn.aspx.cs"},{"SourceFile":"HJGL\\DataIn\\JointIn.aspx.designer.cs"},{"SourceFile":"HJGL\\DataIn\\PipeLineIn.aspx.cs"},{"SourceFile":"HJGL\\DataIn\\PipeLineIn.aspx.designer.cs"},{"SourceFile":"HJGL\\FileControl\\CompanyStandardsView.aspx.cs"},{"SourceFile":"HJGL\\FileControl\\CompanyStandardsView.aspx.designer.cs"},{"SourceFile":"HJGL\\FileControl\\CompanyStandardsViewEdit.aspx.cs"},{"SourceFile":"HJGL\\FileControl\\CompanyStandardsViewEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\FileControl\\DomesticLawsRegulationsView.aspx.cs"},{"SourceFile":"HJGL\\FileControl\\DomesticLawsRegulationsView.aspx.designer.cs"},{"SourceFile":"HJGL\\FileControl\\DomesticLawsRegulationsViewEdit.aspx.cs"},{"SourceFile":"HJGL\\FileControl\\DomesticLawsRegulationsViewEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\FileControl\\DomesticStandardsView.aspx.cs"},{"SourceFile":"HJGL\\FileControl\\DomesticStandardsView.aspx.designer.cs"},{"SourceFile":"HJGL\\FileControl\\DomesticStandardsViewEdit.aspx.cs"},{"SourceFile":"HJGL\\FileControl\\DomesticStandardsViewEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\FileControl\\ForeignStandardsView.aspx.cs"},{"SourceFile":"HJGL\\FileControl\\ForeignStandardsView.aspx.designer.cs"},{"SourceFile":"HJGL\\FileControl\\ForeignStandardsViewEdit.aspx.cs"},{"SourceFile":"HJGL\\FileControl\\ForeignStandardsViewEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\HotHardManage\\HardReportSet.aspx.cs"},{"SourceFile":"HJGL\\HotHardManage\\HardReportSet.aspx.designer.cs"},{"SourceFile":"HJGL\\HotHardManage\\HardTestReport.aspx.cs"},{"SourceFile":"HJGL\\HotHardManage\\HardTestReport.aspx.designer.cs"},{"SourceFile":"HJGL\\HotHardManage\\HardTestReportEdit.aspx.cs"},{"SourceFile":"HJGL\\HotHardManage\\HardTestReportEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\HotHardManage\\HardTestResult.aspx.cs"},{"SourceFile":"HJGL\\HotHardManage\\HardTestResult.aspx.designer.cs"},{"SourceFile":"HJGL\\HotHardManage\\HotHardManageEdit.aspx.cs"},{"SourceFile":"HJGL\\HotHardManage\\HotHardManageEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\HotHardManage\\HotHardManageItemEdit.aspx.cs"},{"SourceFile":"HJGL\\HotHardManage\\HotHardManageItemEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\HotHardManage\\HotHardSet.aspx.cs"},{"SourceFile":"HJGL\\HotHardManage\\HotHardSet.aspx.designer.cs"},{"SourceFile":"HJGL\\HotProessManage\\HotProessHardSelect.aspx.cs"},{"SourceFile":"HJGL\\HotProessManage\\HotProessHardSelect.aspx.designer.cs"},{"SourceFile":"HJGL\\HotProessManage\\HotProessManageEdit.aspx.cs"},{"SourceFile":"HJGL\\HotProessManage\\HotProessManageEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\HotProessManage\\HotProessManageItemEdit.aspx.cs"},{"SourceFile":"HJGL\\HotProessManage\\HotProessManageItemEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\HotProessManage\\HotProessManageItemFind.aspx.cs"},{"SourceFile":"HJGL\\HotProessManage\\HotProessManageItemFind.aspx.designer.cs"},{"SourceFile":"HJGL\\HotProessManage\\HotProessResult.aspx.cs"},{"SourceFile":"HJGL\\HotProessManage\\HotProessResult.aspx.designer.cs"},{"SourceFile":"HJGL\\HotProessManage\\HotProessTrust.aspx.cs"},{"SourceFile":"HJGL\\HotProessManage\\HotProessTrust.aspx.designer.cs"},{"SourceFile":"HJGL\\HotProessManage\\HotProessTrustEdit.aspx.cs"},{"SourceFile":"HJGL\\HotProessManage\\HotProessTrustEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\HotProessManage\\HotProessTrustItemEdit.aspx.cs"},{"SourceFile":"HJGL\\HotProessManage\\HotProessTrustItemEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\HotProessManage\\RepairHotProessTrust.aspx.cs"},{"SourceFile":"HJGL\\HotProessManage\\RepairHotProessTrust.aspx.designer.cs"},{"SourceFile":"HJGL\\HotProessManage\\RepairHotProessTrustEdit.aspx.cs"},{"SourceFile":"HJGL\\HotProessManage\\RepairHotProessTrustEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\Match\\InStorage.aspx.cs"},{"SourceFile":"HJGL\\Match\\InStorage.aspx.designer.cs"},{"SourceFile":"HJGL\\Match\\PipelineConditionsQuery.aspx.cs"},{"SourceFile":"HJGL\\Match\\PipelineConditionsQuery.aspx.designer.cs"},{"SourceFile":"HJGL\\Match\\PipelineMaterialsDistribution.aspx.cs"},{"SourceFile":"HJGL\\Match\\PipelineMaterialsDistribution.aspx.designer.cs"},{"SourceFile":"HJGL\\Match\\PipelineRrequiredMaterials.aspx.cs"},{"SourceFile":"HJGL\\Match\\PipelineRrequiredMaterials.aspx.designer.cs"},{"SourceFile":"HJGL\\Match\\PipeMaterial.aspx.cs"},{"SourceFile":"HJGL\\Match\\PipeMaterial.aspx.designer.cs"},{"SourceFile":"HJGL\\Match\\MaterialSet.aspx.cs"},{"SourceFile":"HJGL\\Match\\MaterialSet.aspx.designer.cs"},{"SourceFile":"HJGL\\Match\\MaterialSetEdit.aspx.cs"},{"SourceFile":"HJGL\\Match\\MaterialSetEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\Match\\PipeMaterialEdit.aspx.cs"},{"SourceFile":"HJGL\\Match\\PipeMaterialEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\Match\\InStorageEdit.aspx.cs"},{"SourceFile":"HJGL\\Match\\InStorageEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\Match\\InStorageView.aspx.cs"},{"SourceFile":"HJGL\\Match\\InStorageView.aspx.designer.cs"},{"SourceFile":"HJGL\\Match\\MatchSet.aspx.cs"},{"SourceFile":"HJGL\\Match\\MatchSet.aspx.designer.cs"},{"SourceFile":"HJGL\\Match\\Storage.aspx.cs"},{"SourceFile":"HJGL\\Match\\Storage.aspx.designer.cs"},{"SourceFile":"HJGL\\Match\\OutStorage.aspx.cs"},{"SourceFile":"HJGL\\Match\\OutStorage.aspx.designer.cs"},{"SourceFile":"HJGL\\Match\\OutStorageView.aspx.cs"},{"SourceFile":"HJGL\\Match\\OutStorageView.aspx.designer.cs"},{"SourceFile":"HJGL\\MaterialManage\\ElectrodeBakeRecord.aspx.cs"},{"SourceFile":"HJGL\\MaterialManage\\ElectrodeBakeRecord.aspx.designer.cs"},{"SourceFile":"HJGL\\MaterialManage\\ElectrodeBakeRecordEdit.aspx.cs"},{"SourceFile":"HJGL\\MaterialManage\\ElectrodeBakeRecordEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\MaterialManage\\ElectrodeRecovery.aspx.cs"},{"SourceFile":"HJGL\\MaterialManage\\ElectrodeRecovery.aspx.designer.cs"},{"SourceFile":"HJGL\\MaterialManage\\ElectrodeRecoveryEdit.aspx.cs"},{"SourceFile":"HJGL\\MaterialManage\\ElectrodeRecoveryEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\MaterialManage\\ElectrodeRecoveryView.aspx.cs"},{"SourceFile":"HJGL\\MaterialManage\\ElectrodeRecoveryView.aspx.designer.cs"},{"SourceFile":"HJGL\\MaterialManage\\EMaterialRegist.aspx.cs"},{"SourceFile":"HJGL\\MaterialManage\\EMaterialRegist.aspx.designer.cs"},{"SourceFile":"HJGL\\MaterialManage\\EMaterialRegistEdit.aspx.cs"},{"SourceFile":"HJGL\\MaterialManage\\EMaterialRegistEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\MaterialManage\\EWeldRHRecord.aspx.cs"},{"SourceFile":"HJGL\\MaterialManage\\EWeldRHRecord.aspx.designer.cs"},{"SourceFile":"HJGL\\MaterialManage\\EWeldRHRecordEdit.aspx.cs"},{"SourceFile":"HJGL\\MaterialManage\\EWeldRHRecordEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\RepairManage\\NonRTQualityRating.aspx.cs"},{"SourceFile":"HJGL\\RepairManage\\NonRTQualityRating.aspx.designer.cs"},{"SourceFile":"HJGL\\RepairManage\\QualityRating.aspx.cs"},{"SourceFile":"HJGL\\RepairManage\\QualityRating.aspx.designer.cs"},{"SourceFile":"HJGL\\RepairManage\\QualityRatingView.aspx.cs"},{"SourceFile":"HJGL\\RepairManage\\QualityRatingView.aspx.designer.cs"},{"SourceFile":"HJGL\\RepairManage\\RemakeReasonEdit.aspx.cs"},{"SourceFile":"HJGL\\RepairManage\\RemakeReasonEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\RepairManage\\RepairManageEdit.aspx.cs"},{"SourceFile":"HJGL\\RepairManage\\RepairManageEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\RepairManage\\RepairManageItemEdit.aspx.cs"},{"SourceFile":"HJGL\\RepairManage\\RepairManageItemEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\RepairManage\\RepairNotice.aspx.cs"},{"SourceFile":"HJGL\\RepairManage\\RepairNotice.aspx.designer.cs"},{"SourceFile":"HJGL\\RepairManage\\RepairNoticePrint.aspx.cs"},{"SourceFile":"HJGL\\RepairManage\\RepairNoticePrint.aspx.designer.cs"},{"SourceFile":"HJGL\\RepairManage\\RepairResultManage.aspx.cs"},{"SourceFile":"HJGL\\RepairManage\\RepairResultManage.aspx.designer.cs"},{"SourceFile":"HJGL\\RepairManage\\RTQualityRating.aspx.cs"},{"SourceFile":"HJGL\\RepairManage\\RTQualityRating.aspx.designer.cs"},{"SourceFile":"HJGL\\TestPackageManage\\CompleteDateEdit.aspx.cs"},{"SourceFile":"HJGL\\TestPackageManage\\CompleteDateEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\TestPackageManage\\TestPackageManage.aspx.cs"},{"SourceFile":"HJGL\\TestPackageManage\\TestPackageManage.aspx.designer.cs"},{"SourceFile":"HJGL\\TestPackageManage\\TestPackageManageAudit.aspx.cs"},{"SourceFile":"HJGL\\TestPackageManage\\TestPackageManageAudit.aspx.designer.cs"},{"SourceFile":"HJGL\\TrustManage\\TrustManageEdit.aspx.cs"},{"SourceFile":"HJGL\\TrustManage\\TrustManageEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\TrustManage\\TrustManageItemEdit.aspx.cs"},{"SourceFile":"HJGL\\TrustManage\\TrustManageItemEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\CompleteReportDateEdit.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\CompleteReportDateEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\DetectionPoint.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\DetectionPoint.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\JointInfoOut.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\JointInfoOut.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\IsoInfoFrame.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\IsoInfoFrame.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\JointInfo.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\JointInfo.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\JointInfoBatchEdit.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\JointInfoBatchEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\JointInfoEdit.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\JointInfoEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\JointInfoShowColumn.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\JointInfoShowColumn.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\JointReportUpdate.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\JointReportUpdate.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\MatchedProcedureMaterial.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\MatchedProcedureMaterial.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\PipelineManage.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\PipelineManage.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\PipelineManageEdit.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\PipelineManageEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\PipelineManageOut.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\PipelineManageOut.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\PipelineManageOut2.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\PipelineManageOut2.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\PointManage.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\PointManage.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\PointManageMove.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\PointManageMove.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\PointManageShowColumn.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\PointManageShowColumn.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\PreWeldReportMain.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\PreWeldReportMain.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\ProcedureImageEdit.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\ProcedureImageEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\ProcedureImageList.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\ProcedureImageList.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\RepairItemRecord.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\RepairItemRecord.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\RepairItemRecordTrust.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\RepairItemRecordTrust.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\RepairItemRecordTrustExtend.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\RepairItemRecordTrustExtend.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\SelectWeldingProcedure.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\SelectWeldingProcedure.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\ShowProduce.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\ShowProduce.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\ShowProduceReport.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\ShowProduceReport.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\TestingReportPrompt.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\TestingReportPrompt.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldHotProcessCard.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldHotProcessCard.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldHotProcessCardEdit.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldHotProcessCardEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldHotProcessCardFinalFile.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldHotProcessCardFinalFile.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldingProcedure.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldingProcedure.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldingProcedureEdit.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldingProcedureEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldingProcedureSearch.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldingProcedureSearch.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldingProcessCard.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldingProcessCard.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldingProcessCardEdit.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldingProcessCardEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldingProcessCardFinalFile.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldingProcessCardFinalFile.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldRepairCard.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldRepairCard.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldRepairCardEdit.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldRepairCardEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldRepairCardFinalFile.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldRepairCardFinalFile.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldReport.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldReport.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldReportEdit.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldReportEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldReportItemEdit.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldReportItemEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\JointInfoOut2.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\JointInfoOut2.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\FeedbackResultSelect.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\FeedbackResultSelect.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\FeedbackResultShowColumn.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\FeedbackResultShowColumn.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\HardTestReportRecord.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\HardTestReportRecord.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\HardTestReportRecordStatistics.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\HardTestReportRecordStatistics.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\HeatTreatmentEstimateRecord.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\HeatTreatmentEstimateRecord.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\InspectionBatch.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\InspectionBatch.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\InspectionBatchItem.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\InspectionBatchItem.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\InspectionBatchSelectExportColumn.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\InspectionBatchSelectExportColumn.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\InspectionBatchShowColumn.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\InspectionBatchShowColumn.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\IsoCheckStatistics.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\IsoCheckStatistics.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\IsoCmprehensive.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\IsoCmprehensive.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\IsoCompreInfo.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\IsoCompreInfo.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\RTCheckRateConfirm.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\RTCheckRateConfirm.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\RTTestingResult.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\RTTestingResult.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\StatisticsSampleTable.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\StatisticsSampleTable.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\UnitWorkareaAnalyze.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\UnitWorkareaAnalyze.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\UnitWorkAreaQuality.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\UnitWorkAreaQuality.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\WelderCheckStatistic.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\WelderCheckStatistic.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\WelderCoverageQuery.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\WelderCoverageQuery.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\WelderPerformance.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\WelderPerformance.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\WeldInspectionCheckRecord.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\WeldInspectionCheckRecord.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\WeldInspectionCheckRecordItem.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\WeldInspectionCheckRecordItem.aspx.designer.cs"},{"SourceFile":"Login.aspx.cs"},{"SourceFile":"Login.aspx.designer.cs"},{"SourceFile":"LogOff.aspx.cs"},{"SourceFile":"LogOff.aspx.designer.cs"},{"SourceFile":"OperationError.aspx.cs"},{"SourceFile":"OperationError.aspx.designer.cs"},{"SourceFile":"common\\PageBase.cs"},{"SourceFile":"Properties\\AssemblyInfo.cs"},{"SourceFile":"APPDownload.aspx.cs"},{"SourceFile":"APPDownload.aspx.designer.cs"},{"SourceFile":"res\\umeditor\\net\\imageUp.ashx.cs"},{"SourceFile":"res\\umeditor\\net\\Uploader.cs"},{"SourceFile":"RLSB\\CheckConfirm.aspx.cs"},{"SourceFile":"RLSB\\CheckConfirm.aspx.designer.cs"},{"SourceFile":"RLSB\\FaceConfirm.aspx.cs"},{"SourceFile":"RLSB\\FaceConfirm.aspx.designer.cs"},{"SourceFile":"RLSB\\RLSBProccess.ashx.cs"},{"SourceFile":"RLSB\\UploadImageCheck.aspx.cs"},{"SourceFile":"RLSB\\UploadImageCheck.aspx.designer.cs"},{"SourceFile":"RLSB\\UploadImageTrain.aspx.cs"},{"SourceFile":"RLSB\\UploadImageTrain.aspx.designer.cs"},{"SourceFile":"RLSB\\uploadimg.aspx.cs"},{"SourceFile":"RLSB\\uploadimg.aspx.designer.cs"},{"SourceFile":"RLSB\\WelderRead.aspx.cs"},{"SourceFile":"RLSB\\WelderRead.aspx.designer.cs"},{"SourceFile":"RLSB\\WelderTrain.aspx.cs"},{"SourceFile":"RLSB\\WelderTrain.aspx.designer.cs"},{"SourceFile":"WebService1.asmx.cs"},{"SourceFile":"Welder\\FilmInfoQuery.aspx.cs"},{"SourceFile":"Welder\\FilmInfoQuery.aspx.designer.cs"},{"SourceFile":"Welder\\PerformanceInquiry.aspx.cs"},{"SourceFile":"Welder\\PerformanceInquiry.aspx.designer.cs"},{"SourceFile":"Welder\\QualificationAnalysis.aspx.cs"},{"SourceFile":"Welder\\QualificationAnalysis.aspx.designer.cs"},{"SourceFile":"Welder\\QualifiedProject.aspx.cs"},{"SourceFile":"Welder\\QualifiedProject.aspx.designer.cs"},{"SourceFile":"Welder\\QualifiedProjectEdit.aspx.cs"},{"SourceFile":"Welder\\QualifiedProjectEdit.aspx.designer.cs"},{"SourceFile":"Welder\\WelderCardPrint1.aspx.cs"},{"SourceFile":"Welder\\WelderCardPrint1.aspx.designer.cs"},{"SourceFile":"Welder\\WelderCardPrint2.aspx.cs"},{"SourceFile":"Welder\\WelderCardPrint2.aspx.designer.cs"},{"SourceFile":"Welder\\WelderManage.aspx.cs"},{"SourceFile":"Welder\\WelderManage.aspx.designer.cs"},{"SourceFile":"Welder\\WelderOKRate.aspx.cs"},{"SourceFile":"Welder\\WelderOKRate.aspx.designer.cs"},{"SourceFile":"Welder\\WelderOKRateEdit.aspx.cs"},{"SourceFile":"Welder\\WelderOKRateEdit.aspx.designer.cs"},{"SourceFile":"Welder\\WelderOKRateStatistics.aspx.cs"},{"SourceFile":"Welder\\WelderOKRateStatistics.aspx.designer.cs"},{"SourceFile":"Welder\\WelderOKRateStatisticsEdit.aspx.cs"},{"SourceFile":"Welder\\WelderOKRateStatisticsEdit.aspx.designer.cs"},{"SourceFile":"Welder\\WeldRecordIn.aspx.cs"},{"SourceFile":"Welder\\WeldRecordIn.aspx.designer.cs"},{"SourceFile":"WeldMat\\BaseInfo\\Specifications.aspx.cs"},{"SourceFile":"WeldMat\\BaseInfo\\Specifications.aspx.designer.cs"},{"SourceFile":"WeldMat\\BaseInfo\\StoremanInfo.aspx.cs"},{"SourceFile":"WeldMat\\BaseInfo\\StoremanInfo.aspx.designer.cs"},{"SourceFile":"WeldMat\\BaseInfo\\Supplier.aspx.cs"},{"SourceFile":"WeldMat\\BaseInfo\\Supplier.aspx.designer.cs"},{"SourceFile":"WeldMat\\BaseInfo\\UnitStore.aspx.cs"},{"SourceFile":"WeldMat\\BaseInfo\\UnitStore.aspx.designer.cs"},{"SourceFile":"WeldMat\\BaseInfo\\WeldInfo.aspx.cs"},{"SourceFile":"WeldMat\\BaseInfo\\WeldInfo.aspx.designer.cs"},{"SourceFile":"WeldMat\\BaseInfo\\WeldInfoIn.aspx.cs"},{"SourceFile":"WeldMat\\BaseInfo\\WeldInfoIn.aspx.designer.cs"},{"SourceFile":"WeldMat\\BaseInfo\\WeldType.aspx.cs"},{"SourceFile":"WeldMat\\BaseInfo\\WeldType.aspx.designer.cs"},{"SourceFile":"WeldMat\\MatBake\\ElectrodeBakeRecord.aspx.cs"},{"SourceFile":"WeldMat\\MatBake\\ElectrodeBakeRecord.aspx.designer.cs"},{"SourceFile":"WeldMat\\MatBake\\ElectrodeBakeRecordEdit.aspx.cs"},{"SourceFile":"WeldMat\\MatBake\\ElectrodeBakeRecordEdit.aspx.designer.cs"},{"SourceFile":"WeldMat\\MatBake\\MatBakeMain.aspx.cs"},{"SourceFile":"WeldMat\\MatBake\\MatBakeMain.aspx.designer.cs"},{"SourceFile":"WeldMat\\MatBake\\ShowStock.aspx.cs"},{"SourceFile":"WeldMat\\MatBake\\ShowStock.aspx.designer.cs"},{"SourceFile":"WeldMat\\Recycle\\RecycleMat.aspx.cs"},{"SourceFile":"WeldMat\\Recycle\\RecycleMat.aspx.designer.cs"},{"SourceFile":"WeldMat\\Recycle\\RecycleMatEdit.aspx.cs"},{"SourceFile":"WeldMat\\Recycle\\RecycleMatEdit.aspx.designer.cs"},{"SourceFile":"WeldMat\\Recycle\\RecycleMatTop.aspx.cs"},{"SourceFile":"WeldMat\\Recycle\\RecycleMatTop.aspx.designer.cs"},{"SourceFile":"WeldMat\\Recycle\\RecycleMatTopEdit.aspx.cs"},{"SourceFile":"WeldMat\\Recycle\\RecycleMatTopEdit.aspx.designer.cs"},{"SourceFile":"WeldMat\\ReleaseRecovery\\ReleaseRecovery.aspx.cs"},{"SourceFile":"WeldMat\\ReleaseRecovery\\ReleaseRecovery.aspx.designer.cs"},{"SourceFile":"WeldMat\\ReleaseRecovery\\ReleaseRecoveryPrint.aspx.cs"},{"SourceFile":"WeldMat\\ReleaseRecovery\\ReleaseRecoveryPrint.aspx.designer.cs"},{"SourceFile":"WeldMat\\ReleaseRecovery\\WeldMatStatistics.aspx.cs"},{"SourceFile":"WeldMat\\ReleaseRecovery\\WeldMatStatistics.aspx.designer.cs"},{"SourceFile":"WeldMat\\ReleaseRecovery\\WeldUseAmount.aspx.cs"},{"SourceFile":"WeldMat\\ReleaseRecovery\\WeldUseAmount.aspx.designer.cs"},{"SourceFile":"WeldMat\\Stock\\ShowWeldInfo.aspx.cs"},{"SourceFile":"WeldMat\\Stock\\ShowWeldInfo.aspx.designer.cs"},{"SourceFile":"WeldMat\\Stock\\StockIn.aspx.cs"},{"SourceFile":"WeldMat\\Stock\\StockIn.aspx.designer.cs"},{"SourceFile":"WeldMat\\Stock\\StockInCheck.aspx.cs"},{"SourceFile":"WeldMat\\Stock\\StockInCheck.aspx.designer.cs"},{"SourceFile":"WeldMat\\Stock\\StockInCheckEdit.aspx.cs"},{"SourceFile":"WeldMat\\Stock\\StockInCheckEdit.aspx.designer.cs"},{"SourceFile":"WeldMat\\Stock\\StockInEdit.aspx.cs"},{"SourceFile":"WeldMat\\Stock\\StockInEdit.aspx.designer.cs"},{"SourceFile":"WeldMat\\Stock\\StockInit.aspx.cs"},{"SourceFile":"WeldMat\\Stock\\StockInit.aspx.designer.cs"},{"SourceFile":"WeldMat\\Stock\\StockInitEdit.aspx.cs"},{"SourceFile":"WeldMat\\Stock\\StockInitEdit.aspx.designer.cs"},{"SourceFile":"WeldMat\\Stock\\StockMove.aspx.cs"},{"SourceFile":"WeldMat\\Stock\\StockMove.aspx.designer.cs"},{"SourceFile":"WeldMat\\Stock\\StockSelect.aspx.cs"},{"SourceFile":"WeldMat\\Stock\\StockSelect.aspx.designer.cs"},{"SourceFile":"WeldMat\\Stock\\StockSelectDetail.aspx.cs"},{"SourceFile":"WeldMat\\Stock\\StockSelectDetail.aspx.designer.cs"},{"SourceFile":"WeldMat\\UsingPlan\\ShowPlanWeld.aspx.cs"},{"SourceFile":"WeldMat\\UsingPlan\\ShowPlanWeld.aspx.designer.cs"},{"SourceFile":"WeldMat\\UsingPlan\\ShowUsingMan.aspx.cs"},{"SourceFile":"WeldMat\\UsingPlan\\ShowUsingMan.aspx.designer.cs"},{"SourceFile":"WeldMat\\UsingPlan\\UsingPlan.aspx.cs"},{"SourceFile":"WeldMat\\UsingPlan\\UsingPlan.aspx.designer.cs"},{"SourceFile":"WeldMat\\UsingPlan\\UsingPlanEdit.aspx.cs"},{"SourceFile":"WeldMat\\UsingPlan\\UsingPlanEdit.aspx.designer.cs"},{"SourceFile":"WeldMat\\UsingPlan\\UsingPlanImport.aspx.cs"},{"SourceFile":"WeldMat\\UsingPlan\\UsingPlanImport.aspx.designer.cs"},{"SourceFile":"WeldMat\\UsingSentMat\\CodeConfirm.aspx.cs"},{"SourceFile":"WeldMat\\UsingSentMat\\CodeConfirm.aspx.designer.cs"},{"SourceFile":"WeldMat\\UsingSentMat\\ModityWeld.aspx.cs"},{"SourceFile":"WeldMat\\UsingSentMat\\ModityWeld.aspx.designer.cs"},{"SourceFile":"WeldMat\\UsingSentMat\\ShowReturnMat.aspx.cs"},{"SourceFile":"WeldMat\\UsingSentMat\\ShowReturnMat.aspx.designer.cs"},{"SourceFile":"WeldMat\\UsingSentMat\\ShowStockIn.aspx.cs"},{"SourceFile":"WeldMat\\UsingSentMat\\ShowStockIn.aspx.designer.cs"},{"SourceFile":"WeldMat\\UsingSentMat\\UsingMat.aspx.cs"},{"SourceFile":"WeldMat\\UsingSentMat\\UsingMat.aspx.designer.cs"},{"SourceFile":"WeldMat\\UsingSentMat\\UsingMatCheck.aspx.cs"},{"SourceFile":"WeldMat\\UsingSentMat\\UsingMatCheck.aspx.designer.cs"},{"SourceFile":"WeldMat\\UsingSentMat\\UsingtMatSelect.aspx.cs"},{"SourceFile":"WeldMat\\UsingSentMat\\UsingtMatSelect.aspx.designer.cs"},{"SourceFile":"WeldMat\\UsingSentMat\\WelderUsing.aspx.cs"},{"SourceFile":"WeldMat\\UsingSentMat\\WelderUsing.aspx.designer.cs"},{"SourceFile":"YLRQ\\BaseInfo\\DetectionTime.aspx.cs"},{"SourceFile":"YLRQ\\BaseInfo\\DetectionTime.aspx.designer.cs"},{"SourceFile":"YLRQ\\BaseInfo\\PV_Testing.aspx.cs"},{"SourceFile":"YLRQ\\BaseInfo\\PV_Testing.aspx.designer.cs"},{"SourceFile":"YLRQ\\ConstructionManagement\\ReworkBeforeConfirmation.aspx.cs"},{"SourceFile":"YLRQ\\ConstructionManagement\\ReworkBeforeConfirmation.aspx.designer.cs"},{"SourceFile":"YLRQ\\ConstructionManagement\\ReworkTestingMethod.aspx.cs"},{"SourceFile":"YLRQ\\ConstructionManagement\\ReworkTestingMethod.aspx.designer.cs"},{"SourceFile":"YLRQ\\ConstructionManagement\\WeldingManagement.aspx.cs"},{"SourceFile":"YLRQ\\ConstructionManagement\\WeldingManagement.aspx.designer.cs"},{"SourceFile":"YLRQ\\ConstructionManagement\\WeldingManagementBatchEdit.aspx.cs"},{"SourceFile":"YLRQ\\ConstructionManagement\\WeldingManagementBatchEdit.aspx.designer.cs"},{"SourceFile":"YLRQ\\ConstructionManagement\\WeldingManagementEdit.aspx.cs"},{"SourceFile":"YLRQ\\ConstructionManagement\\WeldingManagementEdit.aspx.designer.cs"},{"SourceFile":"YLRQ\\ConstructionManagement\\WeldingTestingMethod.aspx.cs"},{"SourceFile":"YLRQ\\ConstructionManagement\\WeldingTestingMethod.aspx.designer.cs"},{"SourceFile":"YLRQ\\ConstructionManagement\\WeldReport.aspx.cs"},{"SourceFile":"YLRQ\\ConstructionManagement\\WeldReport.aspx.designer.cs"},{"SourceFile":"YLRQ\\ConstructionManagement\\WeldReportEdit.aspx.cs"},{"SourceFile":"YLRQ\\ConstructionManagement\\WeldReportEdit.aspx.designer.cs"},{"SourceFile":"YLRQ\\ConstructionManagement\\WeldReportItemEdit.aspx.cs"},{"SourceFile":"YLRQ\\ConstructionManagement\\WeldReportItemEdit.aspx.designer.cs"},{"SourceFile":"YLRQ\\Dto\\PV_SpRpWeldReportItem.cs"},{"SourceFile":"YLRQ\\EntrustedManagement\\InspectionCommissionPrint.aspx.cs"},{"SourceFile":"YLRQ\\EntrustedManagement\\InspectionCommissionPrint.aspx.designer.cs"},{"SourceFile":"YLRQ\\EntrustedManagement\\ReworkCommissionPrint.aspx.cs"},{"SourceFile":"YLRQ\\EntrustedManagement\\ReworkCommissionPrint.aspx.designer.cs"},{"SourceFile":"YLRQ\\EntrustedManagement\\ReworkConfirmation.aspx.cs"},{"SourceFile":"YLRQ\\EntrustedManagement\\ReworkConfirmation.aspx.designer.cs"},{"SourceFile":"YLRQ\\EntrustedManagement\\WeldingConfirmation.aspx.cs"},{"SourceFile":"YLRQ\\EntrustedManagement\\WeldingConfirmation.aspx.designer.cs"},{"SourceFile":"YLRQ\\HardProessManage\\HardProessResult.aspx.cs"},{"SourceFile":"YLRQ\\HardProessManage\\HardProessResult.aspx.designer.cs"},{"SourceFile":"YLRQ\\HardProessManage\\HardProessTrust.aspx.cs"},{"SourceFile":"YLRQ\\HardProessManage\\HardProessTrust.aspx.designer.cs"},{"SourceFile":"YLRQ\\HardProessManage\\HardProessTrustEdit.aspx.cs"},{"SourceFile":"YLRQ\\HardProessManage\\HardProessTrustEdit.aspx.designer.cs"},{"SourceFile":"YLRQ\\HardProessManage\\HardProessTrustItemEdit.aspx.cs"},{"SourceFile":"YLRQ\\HardProessManage\\HardProessTrustItemEdit.aspx.designer.cs"},{"SourceFile":"YLRQ\\HotProessManage\\HardProessTrustConfirm.aspx.cs"},{"SourceFile":"YLRQ\\HotProessManage\\HardProessTrustConfirm.aspx.designer.cs"},{"SourceFile":"YLRQ\\HotProessManage\\HotProessResult.aspx.cs"},{"SourceFile":"YLRQ\\HotProessManage\\HotProessResult.aspx.designer.cs"},{"SourceFile":"YLRQ\\HotProessManage\\HotProessTrust.aspx.cs"},{"SourceFile":"YLRQ\\HotProessManage\\HotProessTrust.aspx.designer.cs"},{"SourceFile":"YLRQ\\HotProessManage\\HotProessTrustEdit.aspx.cs"},{"SourceFile":"YLRQ\\HotProessManage\\HotProessTrustEdit.aspx.designer.cs"},{"SourceFile":"YLRQ\\HotProessManage\\HotProessTrustItemEdit.aspx.cs"},{"SourceFile":"YLRQ\\HotProessManage\\HotProessTrustItemEdit.aspx.designer.cs"},{"SourceFile":"YLRQ\\ReportInputOut\\WeldAppearance.aspx.cs"},{"SourceFile":"YLRQ\\ReportInputOut\\WeldAppearance.aspx.designer.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\FileCode.aspx.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\FileCode.aspx.designer.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\InputTestResults.aspx.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\InputTestResults.aspx.designer.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\MTReportEdit.aspx.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\MTReportEdit.aspx.designer.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\NonRTQualityRating.aspx.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\NonRTQualityRating.aspx.designer.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\PTReportEdit.aspx.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\PTReportEdit.aspx.designer.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\QualityRating.aspx.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\QualityRating.aspx.designer.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\QualityRatingView.aspx.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\QualityRatingView.aspx.designer.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\RemakeReasonEdit.aspx.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\RemakeReasonEdit.aspx.designer.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\ReworkInputTestResults.aspx.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\ReworkInputTestResults.aspx.designer.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\ReworkNonRTQualityRating.aspx.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\ReworkNonRTQualityRating.aspx.designer.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\ReworkQualityRating.aspx.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\ReworkQualityRating.aspx.designer.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\ReworkQualityRatingView.aspx.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\ReworkQualityRatingView.aspx.designer.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\ReworkRTQualityRating.aspx.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\ReworkRTQualityRating.aspx.designer.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\ReworkTestRecordtPrint.aspx.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\ReworkTestRecordtPrint.aspx.designer.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\RTQualityRating.aspx.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\RTQualityRating.aspx.designer.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\RTReportEdit.aspx.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\RTReportEdit.aspx.designer.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\TestingReportPrint.aspx.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\TestingReportPrint.aspx.designer.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\TestRecordtPrint.aspx.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\TestRecordtPrint.aspx.designer.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\UTReportEdit.aspx.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\UTReportEdit.aspx.designer.cs"},{"SourceFile":"YLRQ\\WeldingReport\\FeedbackResultSelect.aspx.cs"},{"SourceFile":"YLRQ\\WeldingReport\\FeedbackResultSelect.aspx.designer.cs"},{"SourceFile":"YLRQ\\WeldingReport\\FeedbackResultShowColumn.aspx.cs"},{"SourceFile":"YLRQ\\WeldingReport\\FeedbackResultShowColumn.aspx.designer.cs"},{"SourceFile":"YLRQ\\WeldingReport\\StatisticsSampleTable.aspx.cs"},{"SourceFile":"YLRQ\\WeldingReport\\StatisticsSampleTable.aspx.designer.cs"},{"SourceFile":"YLRQ\\WeldingReport\\WelderPerformance.aspx.cs"},{"SourceFile":"YLRQ\\WeldingReport\\WelderPerformance.aspx.designer.cs"},{"SourceFile":"obj\\Debug\\.NETFramework,Version=v4.0.AssemblyAttributes.cs"}],"References":[{"Reference":"D:\\数据\\诺必达\\镇海建安\\ZHJA_HJGL\\HJGL_ZH\\BLL\\bin\\Debug\\BLL.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":""},{"Reference":"D:\\数据\\诺必达\\镇海建安\\ZHJA_HJGL\\HJGL_ZH\\packages\\Portable.BouncyCastle.1.8.6\\lib\\net40\\BouncyCastle.Crypto.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\数据\\诺必达\\镇海建安\\ZHJA_HJGL\\HJGL_ZH\\FineUIPro\\FineUIPro.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\数据\\诺必达\\镇海建安\\ZHJA_HJGL\\HJGL_ZH\\packages\\SharpZipLib.0.86.0\\lib\\20\\ICSharpCode.SharpZipLib.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\Microsoft.CSharp.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\Microsoft.JScript.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\数据\\诺必达\\镇海建安\\ZHJA_HJGL\\HJGL_ZH\\Model\\bin\\Debug\\Model.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\mscorlib.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\数据\\诺必达\\镇海建安\\ZHJA_HJGL\\HJGL_ZH\\FineUIPro\\Net40\\Newtonsoft.Json.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\数据\\诺必达\\镇海建安\\ZHJA_HJGL\\HJGL_ZH\\packages\\NPOI.2.5.1\\lib\\net40\\NPOI.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\数据\\诺必达\\镇海建安\\ZHJA_HJGL\\HJGL_ZH\\packages\\NPOI.2.5.1\\lib\\net40\\NPOI.OOXML.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\数据\\诺必达\\镇海建安\\ZHJA_HJGL\\HJGL_ZH\\packages\\NPOI.2.5.1\\lib\\net40\\NPOI.OpenXml4Net.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\数据\\诺必达\\镇海建安\\ZHJA_HJGL\\HJGL_ZH\\packages\\NPOI.2.5.1\\lib\\net40\\NPOI.OpenXmlFormats.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Configuration.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Core.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Data.DataSetExtensions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Data.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Data.Linq.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.DirectoryServices.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Drawing.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.EnterpriseServices.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Management.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Runtime.Serialization.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.ServiceModel.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Web.ApplicationServices.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Web.DataVisualization.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Web.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Web.DynamicData.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Web.Entity.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Web.Extensions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Web.Services.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Windows.Forms.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Xml.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Xml.Linq.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"D:\\数据\\诺必达\\镇海建安\\ZHJA_HJGL\\HJGL_ZH\\packages\\ThoughtWorks.QRCode.1.1.0\\lib\\ThoughtWorks.QRCode.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""}],"Analyzers":[],"Outputs":[{"OutputItemFullPath":"D:\\数据\\诺必达\\镇海建安\\ZHJA_HJGL\\HJGL_ZH\\FineUIPro.Web\\bin\\FineUIPro.Web.dll","OutputItemRelativePath":"FineUIPro.Web.dll"},{"OutputItemFullPath":"D:\\数据\\诺必达\\镇海建安\\ZHJA_HJGL\\HJGL_ZH\\FineUIPro.Web\\bin\\FineUIPro.Web.pdb","OutputItemRelativePath":"FineUIPro.Web.pdb"}],"CopyToOutputEntries":[]}
\ No newline at end of file
+{"RootPath":"E:\\MyProject\\ZHHJ\\ZHJA_HJGL\\HJGL_ZH\\FineUIPro.Web","ProjectFileName":"FineUIPro.Web.csproj","Configuration":"Debug|AnyCPU","FrameworkPath":"","Sources":[{"SourceFile":"AttachFile\\fileupload.ashx.cs"},{"SourceFile":"AttachFile\\webuploader2.aspx.cs"},{"SourceFile":"AttachFile\\webuploader2.aspx.designer.cs"},{"SourceFile":"AttachFile\\webuploader.aspx.cs"},{"SourceFile":"AttachFile\\webuploader.aspx.designer.cs"},{"SourceFile":"Captcha\\captcha.ashx.cs"},{"SourceFile":"Captcha\\CaptchaImage.cs"},{"SourceFile":"common\\BaseInfo\\AudiFlowEdit.aspx.cs"},{"SourceFile":"common\\BaseInfo\\AudiFlowEdit.aspx.designer.cs"},{"SourceFile":"common\\BaseInfo\\AudiFlowSet.aspx.cs"},{"SourceFile":"common\\BaseInfo\\AudiFlowSet.aspx.designer.cs"},{"SourceFile":"common\\BaseInfo\\DepartEdit.aspx.cs"},{"SourceFile":"common\\BaseInfo\\DepartEdit.aspx.designer.cs"},{"SourceFile":"common\\BaseInfo\\DepartList.aspx.cs"},{"SourceFile":"common\\BaseInfo\\DepartList.aspx.designer.cs"},{"SourceFile":"common\\BaseInfo\\OrganizationChart.aspx.cs"},{"SourceFile":"common\\BaseInfo\\OrganizationChart.aspx.designer.cs"},{"SourceFile":"common\\BaseInfo\\Project.aspx.cs"},{"SourceFile":"common\\BaseInfo\\Project.aspx.designer.cs"},{"SourceFile":"common\\BaseInfo\\ProjectPlan.aspx.cs"},{"SourceFile":"common\\BaseInfo\\ProjectPlan.aspx.designer.cs"},{"SourceFile":"common\\BaseInfo\\ProjectSave.aspx.cs"},{"SourceFile":"common\\BaseInfo\\ProjectSave.aspx.designer.cs"},{"SourceFile":"common\\BaseInfo\\ProjectWeldMat.aspx.cs"},{"SourceFile":"common\\BaseInfo\\ProjectWeldMat.aspx.designer.cs"},{"SourceFile":"common\\BaseInfo\\ProjectYlrqSave.aspx.cs"},{"SourceFile":"common\\BaseInfo\\ProjectYlrqSave.aspx.designer.cs"},{"SourceFile":"common\\BaseInfo\\TestEngineering.aspx.cs"},{"SourceFile":"common\\BaseInfo\\TestEngineering.aspx.designer.cs"},{"SourceFile":"common\\BaseInfo\\Unit.aspx.cs"},{"SourceFile":"common\\BaseInfo\\Unit.aspx.designer.cs"},{"SourceFile":"common\\BaseInfo\\UnitEdit.aspx.cs"},{"SourceFile":"common\\BaseInfo\\UnitEdit.aspx.designer.cs"},{"SourceFile":"common\\FileManage\\EditOffice.aspx.cs"},{"SourceFile":"common\\FileManage\\EditOffice.aspx.designer.cs"},{"SourceFile":"common\\FileManage\\FileManageList.aspx.cs"},{"SourceFile":"common\\FileManage\\FileManageList.aspx.designer.cs"},{"SourceFile":"common\\FileManage\\FileManageList1.aspx.cs"},{"SourceFile":"common\\FileManage\\FileManageList1.aspx.designer.cs"},{"SourceFile":"common\\FileManage\\Read.aspx.cs"},{"SourceFile":"common\\FileManage\\Read.aspx.designer.cs"},{"SourceFile":"common\\FileManage\\Save.aspx.cs"},{"SourceFile":"common\\FileManage\\Save.aspx.designer.cs"},{"SourceFile":"common\\loading.aspx.cs"},{"SourceFile":"common\\loading.aspx.designer.cs"},{"SourceFile":"common\\main.aspx.cs"},{"SourceFile":"common\\main.aspx.designer.cs"},{"SourceFile":"common\\MainGdazServer.aspx.cs"},{"SourceFile":"common\\MainGdazServer.aspx.designer.cs"},{"SourceFile":"common\\MainWelder.aspx.cs"},{"SourceFile":"common\\MainWelder.aspx.designer.cs"},{"SourceFile":"common\\MainWeldMat.aspx.cs"},{"SourceFile":"common\\MainWeldMat.aspx.designer.cs"},{"SourceFile":"common\\mainYlrq.aspx.cs"},{"SourceFile":"common\\mainYlrq.aspx.designer.cs"},{"SourceFile":"common\\mainYlrqServer.aspx.cs"},{"SourceFile":"common\\mainYlrqServer.aspx.designer.cs"},{"SourceFile":"common\\main_bootstrap_pure.aspx.cs"},{"SourceFile":"common\\main_bootstrap_pure.aspx.designer.cs"},{"SourceFile":"common\\main_bootstrap_pure_login.aspx.cs"},{"SourceFile":"common\\main_bootstrap_pure_login.aspx.designer.cs"},{"SourceFile":"common\\Notice\\AddNotice.aspx.cs"},{"SourceFile":"common\\Notice\\AddNotice.aspx.designer.cs"},{"SourceFile":"common\\Notice\\APPFile.aspx.cs"},{"SourceFile":"common\\Notice\\APPFile.aspx.designer.cs"},{"SourceFile":"common\\Notice\\Notice.aspx.cs"},{"SourceFile":"common\\Notice\\Notice.aspx.designer.cs"},{"SourceFile":"common\\Notice\\NoticeFinalFile.aspx.cs"},{"SourceFile":"common\\Notice\\NoticeFinalFile.aspx.designer.cs"},{"SourceFile":"common\\Notice\\NoticeSign.aspx.cs"},{"SourceFile":"common\\Notice\\NoticeSign.aspx.designer.cs"},{"SourceFile":"common\\Notice\\NoticeSignParticular.aspx.cs"},{"SourceFile":"common\\Notice\\NoticeSignParticular.aspx.designer.cs"},{"SourceFile":"common\\ProjectSet\\EditOrganization.aspx.cs"},{"SourceFile":"common\\ProjectSet\\EditOrganization.aspx.designer.cs"},{"SourceFile":"common\\ProjectSet\\Installation.aspx.cs"},{"SourceFile":"common\\ProjectSet\\Installation.aspx.designer.cs"},{"SourceFile":"common\\ProjectSet\\InstallationSave.aspx.cs"},{"SourceFile":"common\\ProjectSet\\InstallationSave.aspx.designer.cs"},{"SourceFile":"common\\ProjectSet\\ProjectRolePower.aspx.cs"},{"SourceFile":"common\\ProjectSet\\ProjectRolePower.aspx.designer.cs"},{"SourceFile":"common\\ProjectSet\\ProjectSysSet.aspx.cs"},{"SourceFile":"common\\ProjectSet\\ProjectSysSet.aspx.designer.cs"},{"SourceFile":"common\\ProjectSet\\ProjectUnit.aspx.cs"},{"SourceFile":"common\\ProjectSet\\ProjectUnit.aspx.designer.cs"},{"SourceFile":"common\\ProjectSet\\ProjectUser.aspx.cs"},{"SourceFile":"common\\ProjectSet\\ProjectUser.aspx.designer.cs"},{"SourceFile":"common\\ProjectSet\\ProjectUserPower.aspx.cs"},{"SourceFile":"common\\ProjectSet\\ProjectUserPower.aspx.designer.cs"},{"SourceFile":"common\\ProjectSet\\ProjectWelder.aspx.cs"},{"SourceFile":"common\\ProjectSet\\ProjectWelder.aspx.designer.cs"},{"SourceFile":"common\\ProjectSet\\ProjectWelderEdit.aspx.cs"},{"SourceFile":"common\\ProjectSet\\ProjectWelderEdit.aspx.designer.cs"},{"SourceFile":"common\\ProjectSet\\SelectUnit.aspx.cs"},{"SourceFile":"common\\ProjectSet\\SelectUnit.aspx.designer.cs"},{"SourceFile":"common\\ProjectSet\\SelectUser.aspx.cs"},{"SourceFile":"common\\ProjectSet\\SelectUser.aspx.designer.cs"},{"SourceFile":"common\\ProjectSet\\SelectWelder.aspx.cs"},{"SourceFile":"common\\ProjectSet\\SelectWelder.aspx.designer.cs"},{"SourceFile":"common\\ProjectSet\\WorkArea.aspx.cs"},{"SourceFile":"common\\ProjectSet\\WorkArea.aspx.designer.cs"},{"SourceFile":"common\\ProjectSet\\WorkAreaEdit.aspx.cs"},{"SourceFile":"common\\ProjectSet\\WorkAreaEdit.aspx.designer.cs"},{"SourceFile":"common\\ReportPrint\\CalculateChinaEx.aspx.cs"},{"SourceFile":"common\\ReportPrint\\CalculateChinaEx.aspx.designer.cs"},{"SourceFile":"common\\ReportPrint\\ExPrintSet.aspx.cs"},{"SourceFile":"common\\ReportPrint\\ExPrintSet.aspx.designer.cs"},{"SourceFile":"common\\ReportPrint\\ExReportPrint.aspx.cs"},{"SourceFile":"common\\ReportPrint\\ExReportPrint.aspx.designer.cs"},{"SourceFile":"common\\mainGdaz.aspx.cs"},{"SourceFile":"common\\mainGdaz.aspx.designer.cs"},{"SourceFile":"common\\ReportPrint\\PrintDesigner.aspx.cs"},{"SourceFile":"common\\ReportPrint\\PrintDesigner.aspx.designer.cs"},{"SourceFile":"common\\ReportPrint\\ReadExReportFile.aspx.cs"},{"SourceFile":"common\\ReportPrint\\ReadExReportFile.aspx.designer.cs"},{"SourceFile":"common\\ReportPrint\\SaveTabFile.aspx.cs"},{"SourceFile":"common\\ReportPrint\\SaveTabFile.aspx.designer.cs"},{"SourceFile":"common\\Resource\\EditLawRegulation.aspx.cs"},{"SourceFile":"common\\Resource\\EditLawRegulation.aspx.designer.cs"},{"SourceFile":"common\\Resource\\LawRegulationList.aspx.cs"},{"SourceFile":"common\\Resource\\LawRegulationList.aspx.designer.cs"},{"SourceFile":"common\\ShowPerson.aspx.cs"},{"SourceFile":"common\\ShowPerson.aspx.designer.cs"},{"SourceFile":"common\\source.aspx.cs"},{"SourceFile":"common\\source.aspx.designer.cs"},{"SourceFile":"common\\source_file.aspx.cs"},{"SourceFile":"common\\source_file.aspx.designer.cs"},{"SourceFile":"common\\SysManage\\ActiveXDown.aspx.cs"},{"SourceFile":"common\\SysManage\\ActiveXDown.aspx.designer.cs"},{"SourceFile":"common\\SysManage\\DataBak.aspx.cs"},{"SourceFile":"common\\SysManage\\DataBak.aspx.designer.cs"},{"SourceFile":"common\\SysManage\\LogList.aspx.cs"},{"SourceFile":"common\\SysManage\\LogList.aspx.designer.cs"},{"SourceFile":"common\\SysManage\\RoleList.aspx.cs"},{"SourceFile":"common\\SysManage\\RoleList.aspx.designer.cs"},{"SourceFile":"common\\SysManage\\RoleListEdit.aspx.cs"},{"SourceFile":"common\\SysManage\\RoleListEdit.aspx.designer.cs"},{"SourceFile":"common\\SysManage\\RolePower.aspx.cs"},{"SourceFile":"common\\SysManage\\RolePower.aspx.designer.cs"},{"SourceFile":"common\\SysManage\\UpdatePassword.aspx.cs"},{"SourceFile":"common\\SysManage\\UpdatePassword.aspx.designer.cs"},{"SourceFile":"common\\SysManage\\UpdatePasswordEdit.aspx.cs"},{"SourceFile":"common\\SysManage\\UpdatePasswordEdit.aspx.designer.cs"},{"SourceFile":"common\\SysManage\\UserList.aspx.cs"},{"SourceFile":"common\\SysManage\\UserList.aspx.designer.cs"},{"SourceFile":"common\\SysManage\\UserListEdit.aspx.cs"},{"SourceFile":"common\\SysManage\\UserListEdit.aspx.designer.cs"},{"SourceFile":"common\\themes.aspx.cs"},{"SourceFile":"common\\themes.aspx.designer.cs"},{"SourceFile":"common\\WelderManage\\WelderIn.aspx.cs"},{"SourceFile":"common\\WelderManage\\WelderIn.aspx.designer.cs"},{"SourceFile":"common\\WelderManage\\WelderManage.aspx.cs"},{"SourceFile":"common\\WelderManage\\WelderManage.aspx.designer.cs"},{"SourceFile":"common\\WelderManage\\PersonQualifiedProject.aspx.cs"},{"SourceFile":"common\\WelderManage\\PersonQualifiedProject.aspx.designer.cs"},{"SourceFile":"common\\WelderManage\\PersonQualifiedProjectEdit.aspx.cs"},{"SourceFile":"common\\WelderManage\\PersonQualifiedProjectEdit.aspx.designer.cs"},{"SourceFile":"common\\WelderManage\\PersonQualifiedProjectView.aspx.cs"},{"SourceFile":"common\\WelderManage\\PersonQualifiedProjectView.aspx.designer.cs"},{"SourceFile":"common\\WelderManage\\WelderSave.aspx.cs"},{"SourceFile":"common\\WelderManage\\WelderSave.aspx.designer.cs"},{"SourceFile":"common\\WelderManage\\SeeQRImage.aspx.cs"},{"SourceFile":"common\\WelderManage\\SeeQRImage.aspx.designer.cs"},{"SourceFile":"common\\WelderManage\\WelderScoreEdit.aspx.cs"},{"SourceFile":"common\\WelderManage\\WelderScoreEdit.aspx.designer.cs"},{"SourceFile":"config\\ajax.aspx.cs"},{"SourceFile":"config\\ajax.aspx.designer.cs"},{"SourceFile":"config\\enable_gzip_iis6.aspx.cs"},{"SourceFile":"config\\enable_gzip_iis6.aspx.designer.cs"},{"SourceFile":"config\\icons.aspx.cs"},{"SourceFile":"config\\icons.aspx.designer.cs"},{"SourceFile":"config\\icons_font.aspx.cs"},{"SourceFile":"config\\icons_font.aspx.designer.cs"},{"SourceFile":"config\\install_toolbox.aspx.cs"},{"SourceFile":"config\\install_toolbox.aspx.designer.cs"},{"SourceFile":"config\\loading.aspx.cs"},{"SourceFile":"config\\loading.aspx.designer.cs"},{"SourceFile":"config\\modify_webconfig.aspx.cs"},{"SourceFile":"config\\modify_webconfig.aspx.designer.cs"},{"SourceFile":"ContinuousPrint\\CommissionRepairPrint.aspx.cs"},{"SourceFile":"ContinuousPrint\\CommissionRepairPrint.aspx.designer.cs"},{"SourceFile":"ContinuousPrint\\CommonPrint.cs"},{"SourceFile":"ContinuousPrint\\HardnessTestOrderPrint.aspx.cs"},{"SourceFile":"ContinuousPrint\\HardnessTestOrderPrint.aspx.designer.cs"},{"SourceFile":"ContinuousPrint\\HardnessTestReportPrint.aspx.cs"},{"SourceFile":"ContinuousPrint\\HardnessTestReportPrint.aspx.designer.cs"},{"SourceFile":"ContinuousPrint\\PipingSingleDiagramPrint.aspx.cs"},{"SourceFile":"ContinuousPrint\\PipingSingleDiagramPrint.aspx.designer.cs"},{"SourceFile":"ContinuousPrint\\TestOrderPrint.aspx.cs"},{"SourceFile":"ContinuousPrint\\TestOrderPrint.aspx.designer.cs"},{"SourceFile":"ContinuousPrint\\TestRecordtPrint.aspx.cs"},{"SourceFile":"ContinuousPrint\\TestRecordtPrint.aspx.designer.cs"},{"SourceFile":"ContinuousPrint\\WeldingJointInspection.aspx.cs"},{"SourceFile":"ContinuousPrint\\WeldingJointInspection.aspx.designer.cs"},{"SourceFile":"ContinuousPrint\\WeldingRecordPrint.aspx.cs"},{"SourceFile":"ContinuousPrint\\WeldingRecordPrint.aspx.designer.cs"},{"SourceFile":"Controls\\AuditFlowControl.ascx.cs"},{"SourceFile":"Controls\\AuditFlowControl.ascx.designer.cs"},{"SourceFile":"Controls\\ChartControl.ascx.cs"},{"SourceFile":"Controls\\ChartControl.ascx.designer.cs"},{"SourceFile":"Controls\\ClientJs\\ClientJs.ascx.cs"},{"SourceFile":"Controls\\ClientJs\\ClientJs.ascx.designer.cs"},{"SourceFile":"Controls\\GridNavgator.ascx.cs"},{"SourceFile":"Controls\\GridNavgator.ascx.designer.cs"},{"SourceFile":"Controls\\JDGL\\ChartControl.ascx.cs"},{"SourceFile":"Controls\\JDGL\\ChartControl.ascx.designer.cs"},{"SourceFile":"Controls\\ProgressBox.ascx.cs"},{"SourceFile":"Controls\\ProgressBox.ascx.designer.cs"},{"SourceFile":"default.aspx.cs"},{"SourceFile":"default.aspx.designer.cs"},{"SourceFile":"FileManage\\editCAD.aspx.cs"},{"SourceFile":"FileManage\\editCAD.aspx.designer.cs"},{"SourceFile":"FileManage\\EditOffice.aspx.cs"},{"SourceFile":"FileManage\\EditOffice.aspx.designer.cs"},{"SourceFile":"FileManage\\FileManageList.aspx.cs"},{"SourceFile":"FileManage\\FileManageList.aspx.designer.cs"},{"SourceFile":"FileManage\\Read.aspx.cs"},{"SourceFile":"FileManage\\Read.aspx.designer.cs"},{"SourceFile":"FileManage\\ReadCad.aspx.cs"},{"SourceFile":"FileManage\\ReadCad.aspx.designer.cs"},{"SourceFile":"FileManage\\Save.aspx.cs"},{"SourceFile":"FileManage\\Save.aspx.designer.cs"},{"SourceFile":"FileManage\\SaveCAD.aspx.cs"},{"SourceFile":"FileManage\\SaveCAD.aspx.designer.cs"},{"SourceFile":"FingerMark\\AddFinger.aspx.cs"},{"SourceFile":"FingerMark\\AddFinger.aspx.designer.cs"},{"SourceFile":"FingerMark\\CheckConfirm.aspx.cs"},{"SourceFile":"FingerMark\\CheckConfirm.aspx.designer.cs"},{"SourceFile":"FingerMark\\CheckFinger.aspx.cs"},{"SourceFile":"FingerMark\\CheckFinger.aspx.designer.cs"},{"SourceFile":"FingerMark\\FingerConfirm.aspx.cs"},{"SourceFile":"FingerMark\\FingerConfirm.aspx.designer.cs"},{"SourceFile":"FingerMark\\RegisterFinger.aspx.cs"},{"SourceFile":"FingerMark\\RegisterFinger.aspx.designer.cs"},{"SourceFile":"FingerMark\\UsingCheck.aspx.cs"},{"SourceFile":"FingerMark\\UsingCheck.aspx.designer.cs"},{"SourceFile":"Global.asax.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\Components.aspx.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\Components.aspx.designer.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\Consumables.aspx.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\Consumables.aspx.designer.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\Control.aspx.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\Control.aspx.designer.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\Detection.aspx.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\Detection.aspx.designer.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\Equipment.aspx.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\Equipment.aspx.designer.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\ExecStandard.aspx.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\ExecStandard.aspx.designer.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\Groove.aspx.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\Groove.aspx.designer.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\HotProcessCard.aspx.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\HotProcessCard.aspx.designer.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\HotProcessCardEdit.aspx.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\HotProcessCardEdit.aspx.designer.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\JointImage.aspx.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\JointImage.aspx.designer.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\JointImageEdit.aspx.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\JointImageEdit.aspx.designer.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\JointImageItem.aspx.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\JointImageItem.aspx.designer.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\Material.aspx.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\Material.aspx.designer.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\MaterialClass.aspx.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\MaterialClass.aspx.designer.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\MaterialCompare.aspx.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\MaterialCompare.aspx.designer.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\MaterialGroup.aspx.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\MaterialGroup.aspx.designer.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\MaterialStandard.aspx.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\MaterialStandard.aspx.designer.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\Medium.aspx.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\Medium.aspx.designer.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\PipingClass.aspx.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\PipingClass.aspx.designer.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\Standard.aspx.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\Standard.aspx.designer.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\Testing.aspx.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\Testing.aspx.designer.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\TestStandard.aspx.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\TestStandard.aspx.designer.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\Weld.aspx.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\Weld.aspx.designer.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\WeldControl.aspx.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\WeldControl.aspx.designer.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\WeldingMethod.aspx.cs"},{"SourceFile":"HJGLServer\\BaseInfo\\WeldingMethod.aspx.designer.cs"},{"SourceFile":"HJGLServer\\FileControl\\CompanyStandards.aspx.cs"},{"SourceFile":"HJGLServer\\FileControl\\CompanyStandards.aspx.designer.cs"},{"SourceFile":"HJGLServer\\FileControl\\CompanyStandardsEdit.aspx.cs"},{"SourceFile":"HJGLServer\\FileControl\\CompanyStandardsEdit.aspx.designer.cs"},{"SourceFile":"HJGLServer\\FileControl\\DomesticLawsRegulations.aspx.cs"},{"SourceFile":"HJGLServer\\FileControl\\DomesticLawsRegulations.aspx.designer.cs"},{"SourceFile":"HJGLServer\\FileControl\\DomesticLawsRegulationsEdit.aspx.cs"},{"SourceFile":"HJGLServer\\FileControl\\DomesticLawsRegulationsEdit.aspx.designer.cs"},{"SourceFile":"HJGLServer\\FileControl\\DomesticStandards.aspx.cs"},{"SourceFile":"HJGLServer\\FileControl\\DomesticStandards.aspx.designer.cs"},{"SourceFile":"HJGLServer\\FileControl\\DomesticStandardsEdit.aspx.cs"},{"SourceFile":"HJGLServer\\FileControl\\DomesticStandardsEdit.aspx.designer.cs"},{"SourceFile":"HJGLServer\\FileControl\\ForeignStandards.aspx.cs"},{"SourceFile":"HJGLServer\\FileControl\\ForeignStandards.aspx.designer.cs"},{"SourceFile":"HJGLServer\\FileControl\\ForeignStandardsEdit.aspx.cs"},{"SourceFile":"HJGLServer\\FileControl\\ForeignStandardsEdit.aspx.designer.cs"},{"SourceFile":"HJGLServer\\WeldingManage\\TestingParameters.aspx.cs"},{"SourceFile":"HJGLServer\\WeldingManage\\TestingParameters.aspx.designer.cs"},{"SourceFile":"HJGLServer\\WeldingManage\\TestingParametersEdit.aspx.cs"},{"SourceFile":"HJGLServer\\WeldingManage\\TestingParametersEdit.aspx.designer.cs"},{"SourceFile":"HJGLServer\\WeldingManage\\WeldingProcedure.aspx.cs"},{"SourceFile":"HJGLServer\\WeldingManage\\WeldingProcedure.aspx.designer.cs"},{"SourceFile":"HJGLServer\\WeldingManage\\WeldingProcedureEdit.aspx.cs"},{"SourceFile":"HJGLServer\\WeldingManage\\WeldingProcedureEdit.aspx.designer.cs"},{"SourceFile":"HJGLServer\\WeldingManage\\WeldingProcedureIn.aspx.cs"},{"SourceFile":"HJGLServer\\WeldingManage\\WeldingProcedureIn.aspx.designer.cs"},{"SourceFile":"HJGL\\CheckManage\\CheckManage.aspx.cs"},{"SourceFile":"HJGL\\CheckManage\\CheckManage.aspx.designer.cs"},{"SourceFile":"HJGL\\CheckManage\\CheckQuantityStatistics.aspx.cs"},{"SourceFile":"HJGL\\CheckManage\\CheckQuantityStatistics.aspx.designer.cs"},{"SourceFile":"HJGL\\CheckManage\\CheckRecordPrint.aspx.cs"},{"SourceFile":"HJGL\\CheckManage\\CheckRecordPrint.aspx.designer.cs"},{"SourceFile":"HJGL\\CheckManage\\CheckReportExport.aspx.cs"},{"SourceFile":"HJGL\\CheckManage\\CheckReportExport.aspx.designer.cs"},{"SourceFile":"HJGL\\CheckManage\\CheckResultsSummary.aspx.cs"},{"SourceFile":"HJGL\\CheckManage\\CheckResultsSummary.aspx.designer.cs"},{"SourceFile":"HJGL\\CheckManage\\CheckResultsSummaryByBatch.aspx.cs"},{"SourceFile":"HJGL\\CheckManage\\CheckResultsSummaryByBatch.aspx.designer.cs"},{"SourceFile":"HJGL\\CheckManage\\FileCode.aspx.cs"},{"SourceFile":"HJGL\\CheckManage\\FileCode.aspx.designer.cs"},{"SourceFile":"HJGL\\CheckManage\\MTReportEdit.aspx.cs"},{"SourceFile":"HJGL\\CheckManage\\MTReportEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\CheckManage\\NDTManageList.aspx.cs"},{"SourceFile":"HJGL\\CheckManage\\NDTManageList.aspx.designer.cs"},{"SourceFile":"HJGL\\CheckManage\\NDTRemakeReport.aspx.cs"},{"SourceFile":"HJGL\\CheckManage\\NDTRemakeReport.aspx.designer.cs"},{"SourceFile":"HJGL\\CheckManage\\NDTStatisticalWeek.aspx.cs"},{"SourceFile":"HJGL\\CheckManage\\NDTStatisticalWeek.aspx.designer.cs"},{"SourceFile":"HJGL\\CheckManage\\NDTTotalTrust.aspx.cs"},{"SourceFile":"HJGL\\CheckManage\\NDTTotalTrust.aspx.designer.cs"},{"SourceFile":"HJGL\\CheckManage\\NonRTQualityRating.aspx.cs"},{"SourceFile":"HJGL\\CheckManage\\NonRTQualityRating.aspx.designer.cs"},{"SourceFile":"HJGL\\CheckManage\\NoRTCheckManage.aspx.cs"},{"SourceFile":"HJGL\\CheckManage\\NoRTCheckManage.aspx.designer.cs"},{"SourceFile":"HJGL\\CheckManage\\NoRTCheckRecordPrint.aspx.cs"},{"SourceFile":"HJGL\\CheckManage\\NoRTCheckRecordPrint.aspx.designer.cs"},{"SourceFile":"HJGL\\CheckManage\\PassFileOneQueStatistic.aspx.cs"},{"SourceFile":"HJGL\\CheckManage\\PassFileOneQueStatistic.aspx.designer.cs"},{"SourceFile":"HJGL\\CheckManage\\PTReportEdit.aspx.cs"},{"SourceFile":"HJGL\\CheckManage\\PTReportEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\CheckManage\\QualityRating.aspx.cs"},{"SourceFile":"HJGL\\CheckManage\\QualityRating.aspx.designer.cs"},{"SourceFile":"HJGL\\CheckManage\\QualityRatingView.aspx.cs"},{"SourceFile":"HJGL\\CheckManage\\QualityRatingView.aspx.designer.cs"},{"SourceFile":"HJGL\\CheckManage\\ReCheckRecordPrint.aspx.cs"},{"SourceFile":"HJGL\\CheckManage\\ReCheckRecordPrint.aspx.designer.cs"},{"SourceFile":"HJGL\\CheckManage\\RemakeReasonEdit.aspx.cs"},{"SourceFile":"HJGL\\CheckManage\\RemakeReasonEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\CheckManage\\RepairCheckRecordPrint.aspx.cs"},{"SourceFile":"HJGL\\CheckManage\\RepairCheckRecordPrint.aspx.designer.cs"},{"SourceFile":"HJGL\\CheckManage\\RepairNotice.aspx.cs"},{"SourceFile":"HJGL\\CheckManage\\RepairNotice.aspx.designer.cs"},{"SourceFile":"HJGL\\CheckManage\\RTQualityRating.aspx.cs"},{"SourceFile":"HJGL\\CheckManage\\RTQualityRating.aspx.designer.cs"},{"SourceFile":"HJGL\\CheckManage\\RTReport.aspx.cs"},{"SourceFile":"HJGL\\CheckManage\\RTReport.aspx.designer.cs"},{"SourceFile":"HJGL\\CheckManage\\RTReportEdit.aspx.cs"},{"SourceFile":"HJGL\\CheckManage\\RTReportEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\CheckManage\\RTTestingReportDetail.aspx.cs"},{"SourceFile":"HJGL\\CheckManage\\RTTestingReportDetail.aspx.designer.cs"},{"SourceFile":"HJGL\\CheckManage\\TestingReportNotRT.aspx.cs"},{"SourceFile":"HJGL\\CheckManage\\TestingReportNotRT.aspx.designer.cs"},{"SourceFile":"HJGL\\CheckManage\\TestingReportPrint.aspx.cs"},{"SourceFile":"HJGL\\CheckManage\\TestingReportPrint.aspx.designer.cs"},{"SourceFile":"HJGL\\CheckManage\\TestingReportSelect.aspx.cs"},{"SourceFile":"HJGL\\CheckManage\\TestingReportSelect.aspx.designer.cs"},{"SourceFile":"HJGL\\CheckManage\\UTReportEdit.aspx.cs"},{"SourceFile":"HJGL\\CheckManage\\UTReportEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\DataIn\\DataIn.aspx.cs"},{"SourceFile":"HJGL\\DataIn\\DataIn.aspx.designer.cs"},{"SourceFile":"HJGL\\DataIn\\DataInEdit.aspx.cs"},{"SourceFile":"HJGL\\DataIn\\DataInEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\DataIn\\JointIn.aspx.cs"},{"SourceFile":"HJGL\\DataIn\\JointIn.aspx.designer.cs"},{"SourceFile":"HJGL\\DataIn\\PipeLineIn.aspx.cs"},{"SourceFile":"HJGL\\DataIn\\PipeLineIn.aspx.designer.cs"},{"SourceFile":"HJGL\\FileControl\\CompanyStandardsView.aspx.cs"},{"SourceFile":"HJGL\\FileControl\\CompanyStandardsView.aspx.designer.cs"},{"SourceFile":"HJGL\\FileControl\\CompanyStandardsViewEdit.aspx.cs"},{"SourceFile":"HJGL\\FileControl\\CompanyStandardsViewEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\FileControl\\DomesticLawsRegulationsView.aspx.cs"},{"SourceFile":"HJGL\\FileControl\\DomesticLawsRegulationsView.aspx.designer.cs"},{"SourceFile":"HJGL\\FileControl\\DomesticLawsRegulationsViewEdit.aspx.cs"},{"SourceFile":"HJGL\\FileControl\\DomesticLawsRegulationsViewEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\FileControl\\DomesticStandardsView.aspx.cs"},{"SourceFile":"HJGL\\FileControl\\DomesticStandardsView.aspx.designer.cs"},{"SourceFile":"HJGL\\FileControl\\DomesticStandardsViewEdit.aspx.cs"},{"SourceFile":"HJGL\\FileControl\\DomesticStandardsViewEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\FileControl\\ForeignStandardsView.aspx.cs"},{"SourceFile":"HJGL\\FileControl\\ForeignStandardsView.aspx.designer.cs"},{"SourceFile":"HJGL\\FileControl\\ForeignStandardsViewEdit.aspx.cs"},{"SourceFile":"HJGL\\FileControl\\ForeignStandardsViewEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\HotHardManage\\HardReportSet.aspx.cs"},{"SourceFile":"HJGL\\HotHardManage\\HardReportSet.aspx.designer.cs"},{"SourceFile":"HJGL\\HotHardManage\\HardTestReport.aspx.cs"},{"SourceFile":"HJGL\\HotHardManage\\HardTestReport.aspx.designer.cs"},{"SourceFile":"HJGL\\HotHardManage\\HardTestReportEdit.aspx.cs"},{"SourceFile":"HJGL\\HotHardManage\\HardTestReportEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\HotHardManage\\HardTestResult.aspx.cs"},{"SourceFile":"HJGL\\HotHardManage\\HardTestResult.aspx.designer.cs"},{"SourceFile":"HJGL\\HotHardManage\\HotHardManageEdit.aspx.cs"},{"SourceFile":"HJGL\\HotHardManage\\HotHardManageEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\HotHardManage\\HotHardManageItemEdit.aspx.cs"},{"SourceFile":"HJGL\\HotHardManage\\HotHardManageItemEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\HotHardManage\\HotHardSet.aspx.cs"},{"SourceFile":"HJGL\\HotHardManage\\HotHardSet.aspx.designer.cs"},{"SourceFile":"HJGL\\HotProessManage\\HotProessHardSelect.aspx.cs"},{"SourceFile":"HJGL\\HotProessManage\\HotProessHardSelect.aspx.designer.cs"},{"SourceFile":"HJGL\\HotProessManage\\HotProessManageEdit.aspx.cs"},{"SourceFile":"HJGL\\HotProessManage\\HotProessManageEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\HotProessManage\\HotProessManageItemEdit.aspx.cs"},{"SourceFile":"HJGL\\HotProessManage\\HotProessManageItemEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\HotProessManage\\HotProessManageItemFind.aspx.cs"},{"SourceFile":"HJGL\\HotProessManage\\HotProessManageItemFind.aspx.designer.cs"},{"SourceFile":"HJGL\\HotProessManage\\HotProessResult.aspx.cs"},{"SourceFile":"HJGL\\HotProessManage\\HotProessResult.aspx.designer.cs"},{"SourceFile":"HJGL\\HotProessManage\\HotProessTrust.aspx.cs"},{"SourceFile":"HJGL\\HotProessManage\\HotProessTrust.aspx.designer.cs"},{"SourceFile":"HJGL\\HotProessManage\\HotProessTrustEdit.aspx.cs"},{"SourceFile":"HJGL\\HotProessManage\\HotProessTrustEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\HotProessManage\\HotProessTrustItemEdit.aspx.cs"},{"SourceFile":"HJGL\\HotProessManage\\HotProessTrustItemEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\HotProessManage\\RepairHotProessTrust.aspx.cs"},{"SourceFile":"HJGL\\HotProessManage\\RepairHotProessTrust.aspx.designer.cs"},{"SourceFile":"HJGL\\HotProessManage\\RepairHotProessTrustEdit.aspx.cs"},{"SourceFile":"HJGL\\HotProessManage\\RepairHotProessTrustEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\Match\\InStorage.aspx.cs"},{"SourceFile":"HJGL\\Match\\InStorage.aspx.designer.cs"},{"SourceFile":"HJGL\\Match\\PipelineConditionsQuery.aspx.cs"},{"SourceFile":"HJGL\\Match\\PipelineConditionsQuery.aspx.designer.cs"},{"SourceFile":"HJGL\\Match\\PipelineMaterialsDistribution.aspx.cs"},{"SourceFile":"HJGL\\Match\\PipelineMaterialsDistribution.aspx.designer.cs"},{"SourceFile":"HJGL\\Match\\PipelineRrequiredMaterials.aspx.cs"},{"SourceFile":"HJGL\\Match\\PipelineRrequiredMaterials.aspx.designer.cs"},{"SourceFile":"HJGL\\Match\\PipeMaterial.aspx.cs"},{"SourceFile":"HJGL\\Match\\PipeMaterial.aspx.designer.cs"},{"SourceFile":"HJGL\\Match\\MaterialSet.aspx.cs"},{"SourceFile":"HJGL\\Match\\MaterialSet.aspx.designer.cs"},{"SourceFile":"HJGL\\Match\\MaterialSetEdit.aspx.cs"},{"SourceFile":"HJGL\\Match\\MaterialSetEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\Match\\PipeMaterialEdit.aspx.cs"},{"SourceFile":"HJGL\\Match\\PipeMaterialEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\Match\\InStorageEdit.aspx.cs"},{"SourceFile":"HJGL\\Match\\InStorageEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\Match\\InStorageView.aspx.cs"},{"SourceFile":"HJGL\\Match\\InStorageView.aspx.designer.cs"},{"SourceFile":"HJGL\\Match\\MatchSet.aspx.cs"},{"SourceFile":"HJGL\\Match\\MatchSet.aspx.designer.cs"},{"SourceFile":"HJGL\\Match\\Storage.aspx.cs"},{"SourceFile":"HJGL\\Match\\Storage.aspx.designer.cs"},{"SourceFile":"HJGL\\Match\\OutStorage.aspx.cs"},{"SourceFile":"HJGL\\Match\\OutStorage.aspx.designer.cs"},{"SourceFile":"HJGL\\Match\\OutStorageView.aspx.cs"},{"SourceFile":"HJGL\\Match\\OutStorageView.aspx.designer.cs"},{"SourceFile":"HJGL\\MaterialManage\\ElectrodeBakeRecord.aspx.cs"},{"SourceFile":"HJGL\\MaterialManage\\ElectrodeBakeRecord.aspx.designer.cs"},{"SourceFile":"HJGL\\MaterialManage\\ElectrodeBakeRecordEdit.aspx.cs"},{"SourceFile":"HJGL\\MaterialManage\\ElectrodeBakeRecordEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\MaterialManage\\ElectrodeRecovery.aspx.cs"},{"SourceFile":"HJGL\\MaterialManage\\ElectrodeRecovery.aspx.designer.cs"},{"SourceFile":"HJGL\\MaterialManage\\ElectrodeRecoveryEdit.aspx.cs"},{"SourceFile":"HJGL\\MaterialManage\\ElectrodeRecoveryEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\MaterialManage\\ElectrodeRecoveryView.aspx.cs"},{"SourceFile":"HJGL\\MaterialManage\\ElectrodeRecoveryView.aspx.designer.cs"},{"SourceFile":"HJGL\\MaterialManage\\EMaterialRegist.aspx.cs"},{"SourceFile":"HJGL\\MaterialManage\\EMaterialRegist.aspx.designer.cs"},{"SourceFile":"HJGL\\MaterialManage\\EMaterialRegistEdit.aspx.cs"},{"SourceFile":"HJGL\\MaterialManage\\EMaterialRegistEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\MaterialManage\\EWeldRHRecord.aspx.cs"},{"SourceFile":"HJGL\\MaterialManage\\EWeldRHRecord.aspx.designer.cs"},{"SourceFile":"HJGL\\MaterialManage\\EWeldRHRecordEdit.aspx.cs"},{"SourceFile":"HJGL\\MaterialManage\\EWeldRHRecordEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\RepairManage\\NonRTQualityRating.aspx.cs"},{"SourceFile":"HJGL\\RepairManage\\NonRTQualityRating.aspx.designer.cs"},{"SourceFile":"HJGL\\RepairManage\\QualityRating.aspx.cs"},{"SourceFile":"HJGL\\RepairManage\\QualityRating.aspx.designer.cs"},{"SourceFile":"HJGL\\RepairManage\\QualityRatingView.aspx.cs"},{"SourceFile":"HJGL\\RepairManage\\QualityRatingView.aspx.designer.cs"},{"SourceFile":"HJGL\\RepairManage\\RemakeReasonEdit.aspx.cs"},{"SourceFile":"HJGL\\RepairManage\\RemakeReasonEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\RepairManage\\RepairManageEdit.aspx.cs"},{"SourceFile":"HJGL\\RepairManage\\RepairManageEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\RepairManage\\RepairManageItemEdit.aspx.cs"},{"SourceFile":"HJGL\\RepairManage\\RepairManageItemEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\RepairManage\\RepairNotice.aspx.cs"},{"SourceFile":"HJGL\\RepairManage\\RepairNotice.aspx.designer.cs"},{"SourceFile":"HJGL\\RepairManage\\RepairNoticePrint.aspx.cs"},{"SourceFile":"HJGL\\RepairManage\\RepairNoticePrint.aspx.designer.cs"},{"SourceFile":"HJGL\\RepairManage\\RepairResultManage.aspx.cs"},{"SourceFile":"HJGL\\RepairManage\\RepairResultManage.aspx.designer.cs"},{"SourceFile":"HJGL\\RepairManage\\RTQualityRating.aspx.cs"},{"SourceFile":"HJGL\\RepairManage\\RTQualityRating.aspx.designer.cs"},{"SourceFile":"HJGL\\TestPackageManage\\CompleteDateEdit.aspx.cs"},{"SourceFile":"HJGL\\TestPackageManage\\CompleteDateEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\TestPackageManage\\TestPackageManage.aspx.cs"},{"SourceFile":"HJGL\\TestPackageManage\\TestPackageManage.aspx.designer.cs"},{"SourceFile":"HJGL\\TestPackageManage\\TestPackageManageAudit.aspx.cs"},{"SourceFile":"HJGL\\TestPackageManage\\TestPackageManageAudit.aspx.designer.cs"},{"SourceFile":"HJGL\\TrustManage\\TrustManageEdit.aspx.cs"},{"SourceFile":"HJGL\\TrustManage\\TrustManageEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\TrustManage\\TrustManageItemEdit.aspx.cs"},{"SourceFile":"HJGL\\TrustManage\\TrustManageItemEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\CompleteReportDateEdit.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\CompleteReportDateEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\DetectionPoint.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\DetectionPoint.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\JointInfoOut.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\JointInfoOut.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\IsoInfoFrame.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\IsoInfoFrame.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\JointInfo.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\JointInfo.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\JointInfoBatchEdit.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\JointInfoBatchEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\JointInfoEdit.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\JointInfoEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\JointInfoShowColumn.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\JointInfoShowColumn.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\JointReportUpdate.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\JointReportUpdate.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\MatchedProcedureMaterial.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\MatchedProcedureMaterial.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\PipelineManage.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\PipelineManage.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\PipelineManageEdit.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\PipelineManageEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\PipelineManageOut.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\PipelineManageOut.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\PipelineManageOut2.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\PipelineManageOut2.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\PointManage.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\PointManage.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\PointManageMove.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\PointManageMove.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\PointManageShowColumn.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\PointManageShowColumn.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\PreWeldReportMain.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\PreWeldReportMain.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\ProcedureImageEdit.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\ProcedureImageEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\ProcedureImageList.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\ProcedureImageList.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\RepairItemRecord.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\RepairItemRecord.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\RepairItemRecordTrust.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\RepairItemRecordTrust.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\RepairItemRecordTrustExtend.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\RepairItemRecordTrustExtend.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\SelectWeldingProcedure.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\SelectWeldingProcedure.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\ShowProduce.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\ShowProduce.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\ShowProduceReport.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\ShowProduceReport.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\TestingReportPrompt.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\TestingReportPrompt.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldHotProcessCard.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldHotProcessCard.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldHotProcessCardEdit.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldHotProcessCardEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldHotProcessCardFinalFile.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldHotProcessCardFinalFile.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldingProcedure.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldingProcedure.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldingProcedureEdit.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldingProcedureEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldingProcedureSearch.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldingProcedureSearch.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldingProcessCard.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldingProcessCard.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldingProcessCardEdit.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldingProcessCardEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldingProcessCardFinalFile.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldingProcessCardFinalFile.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldRepairCard.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldRepairCard.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldRepairCardEdit.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldRepairCardEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldRepairCardFinalFile.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldRepairCardFinalFile.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldReport.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldReport.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldReportEdit.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldReportEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldReportItemEdit.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\WeldReportItemEdit.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingManage\\JointInfoOut2.aspx.cs"},{"SourceFile":"HJGL\\WeldingManage\\JointInfoOut2.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\FeedbackResultSelect.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\FeedbackResultSelect.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\FeedbackResultShowColumn.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\FeedbackResultShowColumn.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\HardTestReportRecord.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\HardTestReportRecord.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\HardTestReportRecordStatistics.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\HardTestReportRecordStatistics.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\HeatTreatmentEstimateRecord.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\HeatTreatmentEstimateRecord.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\InspectionBatch.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\InspectionBatch.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\InspectionBatchItem.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\InspectionBatchItem.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\InspectionBatchSelectExportColumn.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\InspectionBatchSelectExportColumn.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\InspectionBatchShowColumn.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\InspectionBatchShowColumn.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\IsoCheckStatistics.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\IsoCheckStatistics.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\IsoCmprehensive.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\IsoCmprehensive.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\IsoCompreInfo.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\IsoCompreInfo.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\RTCheckRateConfirm.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\RTCheckRateConfirm.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\RTTestingResult.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\RTTestingResult.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\StatisticsSampleTable.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\StatisticsSampleTable.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\UnitWorkareaAnalyze.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\UnitWorkareaAnalyze.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\UnitWorkAreaQuality.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\UnitWorkAreaQuality.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\WelderCheckStatistic.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\WelderCheckStatistic.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\WelderCoverageQuery.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\WelderCoverageQuery.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\WelderPerformance.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\WelderPerformance.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\WeldInspectionCheckRecord.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\WeldInspectionCheckRecord.aspx.designer.cs"},{"SourceFile":"HJGL\\WeldingReport\\WeldInspectionCheckRecordItem.aspx.cs"},{"SourceFile":"HJGL\\WeldingReport\\WeldInspectionCheckRecordItem.aspx.designer.cs"},{"SourceFile":"Login.aspx.cs"},{"SourceFile":"Login.aspx.designer.cs"},{"SourceFile":"LogOff.aspx.cs"},{"SourceFile":"LogOff.aspx.designer.cs"},{"SourceFile":"OperationError.aspx.cs"},{"SourceFile":"OperationError.aspx.designer.cs"},{"SourceFile":"common\\PageBase.cs"},{"SourceFile":"Properties\\AssemblyInfo.cs"},{"SourceFile":"APPDownload.aspx.cs"},{"SourceFile":"APPDownload.aspx.designer.cs"},{"SourceFile":"res\\umeditor\\net\\imageUp.ashx.cs"},{"SourceFile":"res\\umeditor\\net\\Uploader.cs"},{"SourceFile":"RLSB\\CheckConfirm.aspx.cs"},{"SourceFile":"RLSB\\CheckConfirm.aspx.designer.cs"},{"SourceFile":"RLSB\\FaceConfirm.aspx.cs"},{"SourceFile":"RLSB\\FaceConfirm.aspx.designer.cs"},{"SourceFile":"RLSB\\RLSBProccess.ashx.cs"},{"SourceFile":"RLSB\\UploadImageCheck.aspx.cs"},{"SourceFile":"RLSB\\UploadImageCheck.aspx.designer.cs"},{"SourceFile":"RLSB\\UploadImageTrain.aspx.cs"},{"SourceFile":"RLSB\\UploadImageTrain.aspx.designer.cs"},{"SourceFile":"RLSB\\uploadimg.aspx.cs"},{"SourceFile":"RLSB\\uploadimg.aspx.designer.cs"},{"SourceFile":"RLSB\\WelderRead.aspx.cs"},{"SourceFile":"RLSB\\WelderRead.aspx.designer.cs"},{"SourceFile":"RLSB\\WelderTrain.aspx.cs"},{"SourceFile":"RLSB\\WelderTrain.aspx.designer.cs"},{"SourceFile":"WebService1.asmx.cs"},{"SourceFile":"Welder\\FilmInfoQuery.aspx.cs"},{"SourceFile":"Welder\\FilmInfoQuery.aspx.designer.cs"},{"SourceFile":"Welder\\PerformanceInquiry.aspx.cs"},{"SourceFile":"Welder\\PerformanceInquiry.aspx.designer.cs"},{"SourceFile":"Welder\\QualificationAnalysis.aspx.cs"},{"SourceFile":"Welder\\QualificationAnalysis.aspx.designer.cs"},{"SourceFile":"Welder\\QualifiedProject.aspx.cs"},{"SourceFile":"Welder\\QualifiedProject.aspx.designer.cs"},{"SourceFile":"Welder\\QualifiedProjectEdit.aspx.cs"},{"SourceFile":"Welder\\QualifiedProjectEdit.aspx.designer.cs"},{"SourceFile":"Welder\\WelderCardPrint1.aspx.cs"},{"SourceFile":"Welder\\WelderCardPrint1.aspx.designer.cs"},{"SourceFile":"Welder\\WelderCardPrint2.aspx.cs"},{"SourceFile":"Welder\\WelderCardPrint2.aspx.designer.cs"},{"SourceFile":"Welder\\WelderManage.aspx.cs"},{"SourceFile":"Welder\\WelderManage.aspx.designer.cs"},{"SourceFile":"Welder\\WelderOKRate.aspx.cs"},{"SourceFile":"Welder\\WelderOKRate.aspx.designer.cs"},{"SourceFile":"Welder\\WelderOKRateEdit.aspx.cs"},{"SourceFile":"Welder\\WelderOKRateEdit.aspx.designer.cs"},{"SourceFile":"Welder\\WelderOKRateStatistics.aspx.cs"},{"SourceFile":"Welder\\WelderOKRateStatistics.aspx.designer.cs"},{"SourceFile":"Welder\\WelderOKRateStatisticsEdit.aspx.cs"},{"SourceFile":"Welder\\WelderOKRateStatisticsEdit.aspx.designer.cs"},{"SourceFile":"Welder\\WeldRecordIn.aspx.cs"},{"SourceFile":"Welder\\WeldRecordIn.aspx.designer.cs"},{"SourceFile":"WeldMat\\BaseInfo\\Specifications.aspx.cs"},{"SourceFile":"WeldMat\\BaseInfo\\Specifications.aspx.designer.cs"},{"SourceFile":"WeldMat\\BaseInfo\\StoremanInfo.aspx.cs"},{"SourceFile":"WeldMat\\BaseInfo\\StoremanInfo.aspx.designer.cs"},{"SourceFile":"WeldMat\\BaseInfo\\Supplier.aspx.cs"},{"SourceFile":"WeldMat\\BaseInfo\\Supplier.aspx.designer.cs"},{"SourceFile":"WeldMat\\BaseInfo\\UnitStore.aspx.cs"},{"SourceFile":"WeldMat\\BaseInfo\\UnitStore.aspx.designer.cs"},{"SourceFile":"WeldMat\\BaseInfo\\WeldInfo.aspx.cs"},{"SourceFile":"WeldMat\\BaseInfo\\WeldInfo.aspx.designer.cs"},{"SourceFile":"WeldMat\\BaseInfo\\WeldInfoIn.aspx.cs"},{"SourceFile":"WeldMat\\BaseInfo\\WeldInfoIn.aspx.designer.cs"},{"SourceFile":"WeldMat\\BaseInfo\\WeldType.aspx.cs"},{"SourceFile":"WeldMat\\BaseInfo\\WeldType.aspx.designer.cs"},{"SourceFile":"WeldMat\\MatBake\\ElectrodeBakeRecord.aspx.cs"},{"SourceFile":"WeldMat\\MatBake\\ElectrodeBakeRecord.aspx.designer.cs"},{"SourceFile":"WeldMat\\MatBake\\ElectrodeBakeRecordEdit.aspx.cs"},{"SourceFile":"WeldMat\\MatBake\\ElectrodeBakeRecordEdit.aspx.designer.cs"},{"SourceFile":"WeldMat\\MatBake\\MatBakeMain.aspx.cs"},{"SourceFile":"WeldMat\\MatBake\\MatBakeMain.aspx.designer.cs"},{"SourceFile":"WeldMat\\MatBake\\ShowStock.aspx.cs"},{"SourceFile":"WeldMat\\MatBake\\ShowStock.aspx.designer.cs"},{"SourceFile":"WeldMat\\Recycle\\RecycleMat.aspx.cs"},{"SourceFile":"WeldMat\\Recycle\\RecycleMat.aspx.designer.cs"},{"SourceFile":"WeldMat\\Recycle\\RecycleMatEdit.aspx.cs"},{"SourceFile":"WeldMat\\Recycle\\RecycleMatEdit.aspx.designer.cs"},{"SourceFile":"WeldMat\\Recycle\\RecycleMatTop.aspx.cs"},{"SourceFile":"WeldMat\\Recycle\\RecycleMatTop.aspx.designer.cs"},{"SourceFile":"WeldMat\\Recycle\\RecycleMatTopEdit.aspx.cs"},{"SourceFile":"WeldMat\\Recycle\\RecycleMatTopEdit.aspx.designer.cs"},{"SourceFile":"WeldMat\\ReleaseRecovery\\ReleaseRecovery.aspx.cs"},{"SourceFile":"WeldMat\\ReleaseRecovery\\ReleaseRecovery.aspx.designer.cs"},{"SourceFile":"WeldMat\\ReleaseRecovery\\ReleaseRecoveryPrint.aspx.cs"},{"SourceFile":"WeldMat\\ReleaseRecovery\\ReleaseRecoveryPrint.aspx.designer.cs"},{"SourceFile":"WeldMat\\ReleaseRecovery\\WeldMatStatistics.aspx.cs"},{"SourceFile":"WeldMat\\ReleaseRecovery\\WeldMatStatistics.aspx.designer.cs"},{"SourceFile":"WeldMat\\ReleaseRecovery\\WeldUseAmount.aspx.cs"},{"SourceFile":"WeldMat\\ReleaseRecovery\\WeldUseAmount.aspx.designer.cs"},{"SourceFile":"WeldMat\\Stock\\ShowWeldInfo.aspx.cs"},{"SourceFile":"WeldMat\\Stock\\ShowWeldInfo.aspx.designer.cs"},{"SourceFile":"WeldMat\\Stock\\StockIn.aspx.cs"},{"SourceFile":"WeldMat\\Stock\\StockIn.aspx.designer.cs"},{"SourceFile":"WeldMat\\Stock\\StockInCheck.aspx.cs"},{"SourceFile":"WeldMat\\Stock\\StockInCheck.aspx.designer.cs"},{"SourceFile":"WeldMat\\Stock\\StockInCheckEdit.aspx.cs"},{"SourceFile":"WeldMat\\Stock\\StockInCheckEdit.aspx.designer.cs"},{"SourceFile":"WeldMat\\Stock\\StockInEdit.aspx.cs"},{"SourceFile":"WeldMat\\Stock\\StockInEdit.aspx.designer.cs"},{"SourceFile":"WeldMat\\Stock\\StockInit.aspx.cs"},{"SourceFile":"WeldMat\\Stock\\StockInit.aspx.designer.cs"},{"SourceFile":"WeldMat\\Stock\\StockInitEdit.aspx.cs"},{"SourceFile":"WeldMat\\Stock\\StockInitEdit.aspx.designer.cs"},{"SourceFile":"WeldMat\\Stock\\StockMove.aspx.cs"},{"SourceFile":"WeldMat\\Stock\\StockMove.aspx.designer.cs"},{"SourceFile":"WeldMat\\Stock\\StockSelect.aspx.cs"},{"SourceFile":"WeldMat\\Stock\\StockSelect.aspx.designer.cs"},{"SourceFile":"WeldMat\\Stock\\StockSelectDetail.aspx.cs"},{"SourceFile":"WeldMat\\Stock\\StockSelectDetail.aspx.designer.cs"},{"SourceFile":"WeldMat\\UsingPlan\\ShowPlanWeld.aspx.cs"},{"SourceFile":"WeldMat\\UsingPlan\\ShowPlanWeld.aspx.designer.cs"},{"SourceFile":"WeldMat\\UsingPlan\\ShowUsingMan.aspx.cs"},{"SourceFile":"WeldMat\\UsingPlan\\ShowUsingMan.aspx.designer.cs"},{"SourceFile":"WeldMat\\UsingPlan\\UsingPlan.aspx.cs"},{"SourceFile":"WeldMat\\UsingPlan\\UsingPlan.aspx.designer.cs"},{"SourceFile":"WeldMat\\UsingPlan\\UsingPlanEdit.aspx.cs"},{"SourceFile":"WeldMat\\UsingPlan\\UsingPlanEdit.aspx.designer.cs"},{"SourceFile":"WeldMat\\UsingPlan\\UsingPlanImport.aspx.cs"},{"SourceFile":"WeldMat\\UsingPlan\\UsingPlanImport.aspx.designer.cs"},{"SourceFile":"WeldMat\\UsingSentMat\\CodeConfirm.aspx.cs"},{"SourceFile":"WeldMat\\UsingSentMat\\CodeConfirm.aspx.designer.cs"},{"SourceFile":"WeldMat\\UsingSentMat\\ModityWeld.aspx.cs"},{"SourceFile":"WeldMat\\UsingSentMat\\ModityWeld.aspx.designer.cs"},{"SourceFile":"WeldMat\\UsingSentMat\\ShowReturnMat.aspx.cs"},{"SourceFile":"WeldMat\\UsingSentMat\\ShowReturnMat.aspx.designer.cs"},{"SourceFile":"WeldMat\\UsingSentMat\\ShowStockIn.aspx.cs"},{"SourceFile":"WeldMat\\UsingSentMat\\ShowStockIn.aspx.designer.cs"},{"SourceFile":"WeldMat\\UsingSentMat\\UsingMat.aspx.cs"},{"SourceFile":"WeldMat\\UsingSentMat\\UsingMat.aspx.designer.cs"},{"SourceFile":"WeldMat\\UsingSentMat\\UsingMatCheck.aspx.cs"},{"SourceFile":"WeldMat\\UsingSentMat\\UsingMatCheck.aspx.designer.cs"},{"SourceFile":"WeldMat\\UsingSentMat\\UsingtMatSelect.aspx.cs"},{"SourceFile":"WeldMat\\UsingSentMat\\UsingtMatSelect.aspx.designer.cs"},{"SourceFile":"WeldMat\\UsingSentMat\\WelderUsing.aspx.cs"},{"SourceFile":"WeldMat\\UsingSentMat\\WelderUsing.aspx.designer.cs"},{"SourceFile":"YLRQ\\BaseInfo\\DetectionTime.aspx.cs"},{"SourceFile":"YLRQ\\BaseInfo\\DetectionTime.aspx.designer.cs"},{"SourceFile":"YLRQ\\BaseInfo\\PV_Testing.aspx.cs"},{"SourceFile":"YLRQ\\BaseInfo\\PV_Testing.aspx.designer.cs"},{"SourceFile":"YLRQ\\ConstructionManagement\\ReworkBeforeConfirmation.aspx.cs"},{"SourceFile":"YLRQ\\ConstructionManagement\\ReworkBeforeConfirmation.aspx.designer.cs"},{"SourceFile":"YLRQ\\ConstructionManagement\\ReworkTestingMethod.aspx.cs"},{"SourceFile":"YLRQ\\ConstructionManagement\\ReworkTestingMethod.aspx.designer.cs"},{"SourceFile":"YLRQ\\ConstructionManagement\\WeldingManagement.aspx.cs"},{"SourceFile":"YLRQ\\ConstructionManagement\\WeldingManagement.aspx.designer.cs"},{"SourceFile":"YLRQ\\ConstructionManagement\\WeldingManagementBatchEdit.aspx.cs"},{"SourceFile":"YLRQ\\ConstructionManagement\\WeldingManagementBatchEdit.aspx.designer.cs"},{"SourceFile":"YLRQ\\ConstructionManagement\\WeldingManagementEdit.aspx.cs"},{"SourceFile":"YLRQ\\ConstructionManagement\\WeldingManagementEdit.aspx.designer.cs"},{"SourceFile":"YLRQ\\ConstructionManagement\\WeldingTestingMethod.aspx.cs"},{"SourceFile":"YLRQ\\ConstructionManagement\\WeldingTestingMethod.aspx.designer.cs"},{"SourceFile":"YLRQ\\ConstructionManagement\\WeldReport.aspx.cs"},{"SourceFile":"YLRQ\\ConstructionManagement\\WeldReport.aspx.designer.cs"},{"SourceFile":"YLRQ\\ConstructionManagement\\WeldReportEdit.aspx.cs"},{"SourceFile":"YLRQ\\ConstructionManagement\\WeldReportEdit.aspx.designer.cs"},{"SourceFile":"YLRQ\\ConstructionManagement\\WeldReportItemEdit.aspx.cs"},{"SourceFile":"YLRQ\\ConstructionManagement\\WeldReportItemEdit.aspx.designer.cs"},{"SourceFile":"YLRQ\\Dto\\PV_SpRpWeldReportItem.cs"},{"SourceFile":"YLRQ\\EntrustedManagement\\InspectionCommissionPrint.aspx.cs"},{"SourceFile":"YLRQ\\EntrustedManagement\\InspectionCommissionPrint.aspx.designer.cs"},{"SourceFile":"YLRQ\\EntrustedManagement\\ReworkCommissionPrint.aspx.cs"},{"SourceFile":"YLRQ\\EntrustedManagement\\ReworkCommissionPrint.aspx.designer.cs"},{"SourceFile":"YLRQ\\EntrustedManagement\\ReworkConfirmation.aspx.cs"},{"SourceFile":"YLRQ\\EntrustedManagement\\ReworkConfirmation.aspx.designer.cs"},{"SourceFile":"YLRQ\\EntrustedManagement\\WeldingConfirmation.aspx.cs"},{"SourceFile":"YLRQ\\EntrustedManagement\\WeldingConfirmation.aspx.designer.cs"},{"SourceFile":"YLRQ\\HardProessManage\\HardProessResult.aspx.cs"},{"SourceFile":"YLRQ\\HardProessManage\\HardProessResult.aspx.designer.cs"},{"SourceFile":"YLRQ\\HardProessManage\\HardProessTrust.aspx.cs"},{"SourceFile":"YLRQ\\HardProessManage\\HardProessTrust.aspx.designer.cs"},{"SourceFile":"YLRQ\\HardProessManage\\HardProessTrustEdit.aspx.cs"},{"SourceFile":"YLRQ\\HardProessManage\\HardProessTrustEdit.aspx.designer.cs"},{"SourceFile":"YLRQ\\HardProessManage\\HardProessTrustItemEdit.aspx.cs"},{"SourceFile":"YLRQ\\HardProessManage\\HardProessTrustItemEdit.aspx.designer.cs"},{"SourceFile":"YLRQ\\HotProessManage\\HardProessTrustConfirm.aspx.cs"},{"SourceFile":"YLRQ\\HotProessManage\\HardProessTrustConfirm.aspx.designer.cs"},{"SourceFile":"YLRQ\\HotProessManage\\HotProessResult.aspx.cs"},{"SourceFile":"YLRQ\\HotProessManage\\HotProessResult.aspx.designer.cs"},{"SourceFile":"YLRQ\\HotProessManage\\HotProessTrust.aspx.cs"},{"SourceFile":"YLRQ\\HotProessManage\\HotProessTrust.aspx.designer.cs"},{"SourceFile":"YLRQ\\HotProessManage\\HotProessTrustEdit.aspx.cs"},{"SourceFile":"YLRQ\\HotProessManage\\HotProessTrustEdit.aspx.designer.cs"},{"SourceFile":"YLRQ\\HotProessManage\\HotProessTrustItemEdit.aspx.cs"},{"SourceFile":"YLRQ\\HotProessManage\\HotProessTrustItemEdit.aspx.designer.cs"},{"SourceFile":"YLRQ\\ReportInputOut\\WeldAppearance.aspx.cs"},{"SourceFile":"YLRQ\\ReportInputOut\\WeldAppearance.aspx.designer.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\FileCode.aspx.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\FileCode.aspx.designer.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\InputTestResults.aspx.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\InputTestResults.aspx.designer.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\MTReportEdit.aspx.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\MTReportEdit.aspx.designer.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\NonRTQualityRating.aspx.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\NonRTQualityRating.aspx.designer.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\PTReportEdit.aspx.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\PTReportEdit.aspx.designer.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\QualityRating.aspx.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\QualityRating.aspx.designer.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\QualityRatingView.aspx.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\QualityRatingView.aspx.designer.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\RemakeReasonEdit.aspx.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\RemakeReasonEdit.aspx.designer.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\ReworkInputTestResults.aspx.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\ReworkInputTestResults.aspx.designer.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\ReworkNonRTQualityRating.aspx.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\ReworkNonRTQualityRating.aspx.designer.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\ReworkQualityRating.aspx.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\ReworkQualityRating.aspx.designer.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\ReworkQualityRatingView.aspx.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\ReworkQualityRatingView.aspx.designer.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\ReworkRTQualityRating.aspx.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\ReworkRTQualityRating.aspx.designer.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\ReworkTestRecordtPrint.aspx.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\ReworkTestRecordtPrint.aspx.designer.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\RTQualityRating.aspx.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\RTQualityRating.aspx.designer.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\RTReportEdit.aspx.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\RTReportEdit.aspx.designer.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\TestingReportPrint.aspx.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\TestingReportPrint.aspx.designer.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\TestRecordtPrint.aspx.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\TestRecordtPrint.aspx.designer.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\UTReportEdit.aspx.cs"},{"SourceFile":"YLRQ\\TestDataManagement\\UTReportEdit.aspx.designer.cs"},{"SourceFile":"YLRQ\\WeldingReport\\FeedbackResultSelect.aspx.cs"},{"SourceFile":"YLRQ\\WeldingReport\\FeedbackResultSelect.aspx.designer.cs"},{"SourceFile":"YLRQ\\WeldingReport\\FeedbackResultShowColumn.aspx.cs"},{"SourceFile":"YLRQ\\WeldingReport\\FeedbackResultShowColumn.aspx.designer.cs"},{"SourceFile":"YLRQ\\WeldingReport\\StatisticsSampleTable.aspx.cs"},{"SourceFile":"YLRQ\\WeldingReport\\StatisticsSampleTable.aspx.designer.cs"},{"SourceFile":"YLRQ\\WeldingReport\\WelderPerformance.aspx.cs"},{"SourceFile":"YLRQ\\WeldingReport\\WelderPerformance.aspx.designer.cs"},{"SourceFile":"obj\\Debug\\.NETFramework,Version=v4.0.AssemblyAttributes.cs"}],"References":[{"Reference":"E:\\MyProject\\ZHHJ\\ZHJA_HJGL\\HJGL_ZH\\BLL\\bin\\Debug\\BLL.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":""},{"Reference":"E:\\MyProject\\ZHHJ\\ZHJA_HJGL\\HJGL_ZH\\packages\\Portable.BouncyCastle.1.8.6\\lib\\net40\\BouncyCastle.Crypto.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\MyProject\\ZHHJ\\ZHJA_HJGL\\HJGL_ZH\\FineUIPro\\FineUIPro.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\MyProject\\ZHHJ\\ZHJA_HJGL\\HJGL_ZH\\packages\\SharpZipLib.0.86.0\\lib\\20\\ICSharpCode.SharpZipLib.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\Microsoft.CSharp.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\Microsoft.JScript.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\MyProject\\ZHHJ\\ZHJA_HJGL\\HJGL_ZH\\Model\\bin\\Debug\\Model.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":true,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\mscorlib.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\MyProject\\ZHHJ\\ZHJA_HJGL\\HJGL_ZH\\packages\\Newtonsoft.Json.13.0.3\\lib\\net40\\Newtonsoft.Json.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\MyProject\\ZHHJ\\ZHJA_HJGL\\HJGL_ZH\\packages\\NPOI.2.5.1\\lib\\net40\\NPOI.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\MyProject\\ZHHJ\\ZHJA_HJGL\\HJGL_ZH\\packages\\NPOI.2.5.1\\lib\\net40\\NPOI.OOXML.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\MyProject\\ZHHJ\\ZHJA_HJGL\\HJGL_ZH\\packages\\NPOI.2.5.1\\lib\\net40\\NPOI.OpenXml4Net.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\MyProject\\ZHHJ\\ZHJA_HJGL\\HJGL_ZH\\packages\\NPOI.2.5.1\\lib\\net40\\NPOI.OpenXmlFormats.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Configuration.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Core.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Data.DataSetExtensions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Data.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Data.Linq.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.DirectoryServices.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Drawing.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.EnterpriseServices.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Management.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Runtime.Serialization.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.ServiceModel.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Web.ApplicationServices.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Web.DataVisualization.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Web.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Web.DynamicData.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Web.Entity.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Web.Extensions.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Web.Services.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Windows.Forms.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Xml.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"C:\\Program Files (x86)\\Reference Assemblies\\Microsoft\\Framework\\.NETFramework\\v4.0\\System.Xml.Linq.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""},{"Reference":"E:\\MyProject\\ZHHJ\\ZHJA_HJGL\\HJGL_ZH\\FineUIPro.Web\\bin\\ThoughtWorks.QRCode.dll","ResolvedFrom":"","OriginalItemSpec":"","Name":"","EmbedInteropTypes":false,"CopyLocal":false,"IsProjectReference":false,"ProjectPath":""}],"Analyzers":[],"Outputs":[{"OutputItemFullPath":"E:\\MyProject\\ZHHJ\\ZHJA_HJGL\\HJGL_ZH\\FineUIPro.Web\\bin\\FineUIPro.Web.dll","OutputItemRelativePath":"FineUIPro.Web.dll"},{"OutputItemFullPath":"E:\\MyProject\\ZHHJ\\ZHJA_HJGL\\HJGL_ZH\\FineUIPro.Web\\bin\\FineUIPro.Web.pdb","OutputItemRelativePath":"FineUIPro.Web.pdb"}],"CopyToOutputEntries":[]}
\ No newline at end of file
diff --git a/HJGL_ZH/FineUIPro.Web/FineUIPro.Web.csproj b/HJGL_ZH/FineUIPro.Web/FineUIPro.Web.csproj
index bee9d4f..fcd0dcc 100644
--- a/HJGL_ZH/FineUIPro.Web/FineUIPro.Web.csproj
+++ b/HJGL_ZH/FineUIPro.Web/FineUIPro.Web.csproj
@@ -99,8 +99,8 @@
-
- ..\..\..\New\HJGL_ZH\FineUIPro.Web\bin\ThoughtWorks.QRCode.dll
+
+ ..\packages\ThoughtWorks.QRCode.1.1.0\lib\ThoughtWorks.QRCode.dll
@@ -261,8 +261,8 @@
-
+
@@ -1253,6 +1253,7 @@
+
@@ -4591,13 +4592,6 @@
PersonQualifiedProjectView.aspx
-
- WelderSave.aspx
- ASPXCodeBehind
-
-
- WelderSave.aspx
-
SeeQRImage.aspx
ASPXCodeBehind
@@ -4605,6 +4599,13 @@
SeeQRImage.aspx
+
+ WelderSave.aspx
+ ASPXCodeBehind
+
+
+ WelderSave.aspx
+
WelderScoreEdit.aspx
ASPXCodeBehind
@@ -6570,6 +6571,13 @@
ReleaseRecoveryPrint.aspx
+
+ TimeOutNoReturn.aspx
+ ASPXCodeBehind
+
+
+ TimeOutNoReturn.aspx
+
WeldMatStatistics.aspx
ASPXCodeBehind
diff --git a/HJGL_ZH/FineUIPro.Web/FineUIPro.Web.csproj.user b/HJGL_ZH/FineUIPro.Web/FineUIPro.Web.csproj.user
index 8ba20cd..b29320e 100644
--- a/HJGL_ZH/FineUIPro.Web/FineUIPro.Web.csproj.user
+++ b/HJGL_ZH/FineUIPro.Web/FineUIPro.Web.csproj.user
@@ -1,8 +1,8 @@
- ProjectFiles
- Debug|Any CPU
+ ShowAllFiles
+ Release|Any CPU
true
diff --git a/HJGL_ZH/FineUIPro.Web/Web.config b/HJGL_ZH/FineUIPro.Web/Web.config
index d288338..ee269a2 100644
--- a/HJGL_ZH/FineUIPro.Web/Web.config
+++ b/HJGL_ZH/FineUIPro.Web/Web.config
@@ -1,4 +1,4 @@
-
+
-
+
-
+
-
+
-
-
-
-
-
-
+
+
+
+
+
+
-
-
+
+
-
+
-
-
+
+
-
+
-
-
+
+
-
+
-
+
-
+
-
+
-
-
+
+
-
-
+
+
-
-
-
+
+
+
-
+
-
-
-
-
+
+
+
+
-
+
-
-
+
+
-
+
-
-
-
+
+
+
-
-
-
+
+
+
-
+
-
+
-
+
-
+
-
-
-
+
+
+
-
-
+
+
@@ -135,8 +135,8 @@
-
-
+
+
diff --git a/HJGL_ZH/FineUIPro.Web/WeldMat/BaseInfo/UnitStore.aspx b/HJGL_ZH/FineUIPro.Web/WeldMat/BaseInfo/UnitStore.aspx
index ec59e34..73312ab 100644
--- a/HJGL_ZH/FineUIPro.Web/WeldMat/BaseInfo/UnitStore.aspx
+++ b/HJGL_ZH/FineUIPro.Web/WeldMat/BaseInfo/UnitStore.aspx
@@ -46,6 +46,8 @@
HeaderText="仓库位置" HeaderTextAlign="Center" TextAlign="Left" SortField="StorePosition"
ExpandUnusedSpace="true">
+
+
@@ -82,6 +84,7 @@
+
@@ -136,6 +139,7 @@
var txtUnitStoreCodeClientID = '<%= txtUnitStoreCode.ClientID %>';
var txtUnitStoreNameClientID = '<%= txtUnitStoreName.ClientID %>';
var txtStorePositionClientID = '<%= txtStorePosition.ClientID %>';
+ var cbIsUseClientID = '<%= cbIsUse.ClientID %>';
function onGridRowSelect(event, rowId) {
var grid = F(gridClientID);
@@ -152,6 +156,7 @@
F(txtUnitStoreCodeClientID).setValue(rowValue['UnitStoreCode']);
F(txtUnitStoreNameClientID).setValue(rowValue['UnitStoreName']);
F(txtStorePositionClientID).setValue(rowValue['tStorePosition']);
+ F(cbIsUseClientID).setValue(rowValue['cbIsUse']);
// 更新提交按钮文本
F(btnSaveClientID).setText('提交数据(编辑)');
diff --git a/HJGL_ZH/FineUIPro.Web/WeldMat/BaseInfo/UnitStore.aspx.cs b/HJGL_ZH/FineUIPro.Web/WeldMat/BaseInfo/UnitStore.aspx.cs
index 813f568..f0c006e 100644
--- a/HJGL_ZH/FineUIPro.Web/WeldMat/BaseInfo/UnitStore.aspx.cs
+++ b/HJGL_ZH/FineUIPro.Web/WeldMat/BaseInfo/UnitStore.aspx.cs
@@ -51,7 +51,7 @@ namespace FineUIPro.Web.WeldMat.BaseInfo
///
private void BindGrid()
{
- string strSql = @"SELECT s.UnitStoreId,s.UnitId,s.UnitStoreCode,s.UnitStoreName,s.StorePosition ,u.UnitName
+ string strSql = @"SELECT s.UnitStoreId,s.UnitId,s.UnitStoreCode,s.UnitStoreName,s.StorePosition ,u.UnitName ,s.IsUse
FROM dbo.Weld_UnitStore s
LEFT JOIN dbo.Base_Unit u ON u.UnitId = s.UnitId
WHERE 1=1";
@@ -235,6 +235,15 @@ namespace FineUIPro.Web.WeldMat.BaseInfo
this.txtUnitStoreCode.Text = unitStore.UnitStoreCode;
this.txtUnitStoreName.Text = unitStore.UnitStoreName;
txtStorePosition.Text = unitStore.StorePosition;
+ if (unitStore.IsUse == true)
+ {
+ cbIsUse.Checked = true;
+ }
+ else
+ {
+ cbIsUse.Checked = false;
+ }
+
hfFormID.Text = Id;
this.btnDelete.Enabled = true;
@@ -269,6 +278,14 @@ namespace FineUIPro.Web.WeldMat.BaseInfo
store.UnitStoreCode = this.txtUnitStoreCode.Text.Trim();
store.UnitStoreName = this.txtUnitStoreName.Text.Trim();
store.StorePosition = txtStorePosition.Text.Trim();
+ if (cbIsUse.Checked == true)
+ {
+ store.IsUse = true;
+ }
+ else
+ {
+ store.IsUse = false;
+ }
if (string.IsNullOrEmpty(strRowID))
{
var stores = BLL.UnitStoreService.GetUnitStoreByUnitId(drpUnitId.SelectedValue);
diff --git a/HJGL_ZH/FineUIPro.Web/WeldMat/BaseInfo/UnitStore.aspx.designer.cs b/HJGL_ZH/FineUIPro.Web/WeldMat/BaseInfo/UnitStore.aspx.designer.cs
index 7ec49ec..be600b2 100644
--- a/HJGL_ZH/FineUIPro.Web/WeldMat/BaseInfo/UnitStore.aspx.designer.cs
+++ b/HJGL_ZH/FineUIPro.Web/WeldMat/BaseInfo/UnitStore.aspx.designer.cs
@@ -7,11 +7,13 @@
// 自动生成>
//------------------------------------------------------------------------------
-namespace FineUIPro.Web.WeldMat.BaseInfo {
-
-
- public partial class UnitStore {
-
+namespace FineUIPro.Web.WeldMat.BaseInfo
+{
+
+
+ public partial class UnitStore
+ {
+
///
/// form1 控件。
///
@@ -20,7 +22,7 @@ namespace FineUIPro.Web.WeldMat.BaseInfo {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::System.Web.UI.HtmlControls.HtmlForm form1;
-
+
///
/// PageManager1 控件。
///
@@ -29,7 +31,7 @@ namespace FineUIPro.Web.WeldMat.BaseInfo {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.PageManager PageManager1;
-
+
///
/// Panel1 控件。
///
@@ -38,7 +40,7 @@ namespace FineUIPro.Web.WeldMat.BaseInfo {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Panel1;
-
+
///
/// Grid1 控件。
///
@@ -47,7 +49,7 @@ namespace FineUIPro.Web.WeldMat.BaseInfo {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Grid Grid1;
-
+
///
/// Toolbar2 控件。
///
@@ -56,7 +58,7 @@ namespace FineUIPro.Web.WeldMat.BaseInfo {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Toolbar Toolbar2;
-
+
///
/// drpUnit 控件。
///
@@ -65,7 +67,7 @@ namespace FineUIPro.Web.WeldMat.BaseInfo {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.DropDownList drpUnit;
-
+
///
/// ToolbarSeparator1 控件。
///
@@ -74,7 +76,7 @@ namespace FineUIPro.Web.WeldMat.BaseInfo {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.ToolbarSeparator ToolbarSeparator1;
-
+
///
/// ToolbarText1 控件。
///
@@ -83,7 +85,7 @@ namespace FineUIPro.Web.WeldMat.BaseInfo {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.ToolbarText ToolbarText1;
-
+
///
/// ddlPageSize 控件。
///
@@ -92,7 +94,7 @@ namespace FineUIPro.Web.WeldMat.BaseInfo {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.DropDownList ddlPageSize;
-
+
///
/// SimpleForm1 控件。
///
@@ -101,7 +103,7 @@ namespace FineUIPro.Web.WeldMat.BaseInfo {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.SimpleForm SimpleForm1;
-
+
///
/// hfFormID 控件。
///
@@ -110,7 +112,7 @@ namespace FineUIPro.Web.WeldMat.BaseInfo {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.HiddenField hfFormID;
-
+
///
/// drpUnitId 控件。
///
@@ -119,7 +121,7 @@ namespace FineUIPro.Web.WeldMat.BaseInfo {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.DropDownList drpUnitId;
-
+
///
/// txtUnitStoreCode 控件。
///
@@ -128,7 +130,7 @@ namespace FineUIPro.Web.WeldMat.BaseInfo {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox txtUnitStoreCode;
-
+
///
/// txtUnitStoreName 控件。
///
@@ -137,7 +139,7 @@ namespace FineUIPro.Web.WeldMat.BaseInfo {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox txtUnitStoreName;
-
+
///
/// txtStorePosition 控件。
///
@@ -146,7 +148,16 @@ namespace FineUIPro.Web.WeldMat.BaseInfo {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox txtStorePosition;
-
+
+ ///
+ /// cbIsUse 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.CheckBox cbIsUse;
+
///
/// Toolbar1 控件。
///
@@ -155,7 +166,7 @@ namespace FineUIPro.Web.WeldMat.BaseInfo {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Toolbar Toolbar1;
-
+
///
/// btnNew 控件。
///
@@ -164,7 +175,7 @@ namespace FineUIPro.Web.WeldMat.BaseInfo {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Button btnNew;
-
+
///
/// btnDelete 控件。
///
@@ -173,7 +184,7 @@ namespace FineUIPro.Web.WeldMat.BaseInfo {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Button btnDelete;
-
+
///
/// ToolbarFill1 控件。
///
@@ -182,7 +193,7 @@ namespace FineUIPro.Web.WeldMat.BaseInfo {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.ToolbarFill ToolbarFill1;
-
+
///
/// btnSave 控件。
///
@@ -191,7 +202,7 @@ namespace FineUIPro.Web.WeldMat.BaseInfo {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Button btnSave;
-
+
///
/// Menu1 控件。
///
@@ -200,7 +211,7 @@ namespace FineUIPro.Web.WeldMat.BaseInfo {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Menu Menu1;
-
+
///
/// btnMenuEdit 控件。
///
@@ -209,7 +220,7 @@ namespace FineUIPro.Web.WeldMat.BaseInfo {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.MenuButton btnMenuEdit;
-
+
///
/// btnMenuDelete 控件。
///
diff --git a/HJGL_ZH/FineUIPro.Web/WeldMat/ReleaseRecovery/TimeOutNoReturn.aspx b/HJGL_ZH/FineUIPro.Web/WeldMat/ReleaseRecovery/TimeOutNoReturn.aspx
new file mode 100644
index 0000000..8d3702a
--- /dev/null
+++ b/HJGL_ZH/FineUIPro.Web/WeldMat/ReleaseRecovery/TimeOutNoReturn.aspx
@@ -0,0 +1,114 @@
+<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="TimeOutNoReturn.aspx.cs" Inherits="FineUIPro.Web.WeldMat.ReleaseRecovery.TimeOutNoReturn" %>
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/HJGL_ZH/FineUIPro.Web/WeldMat/ReleaseRecovery/TimeOutNoReturn.aspx.cs b/HJGL_ZH/FineUIPro.Web/WeldMat/ReleaseRecovery/TimeOutNoReturn.aspx.cs
new file mode 100644
index 0000000..dbedbcf
--- /dev/null
+++ b/HJGL_ZH/FineUIPro.Web/WeldMat/ReleaseRecovery/TimeOutNoReturn.aspx.cs
@@ -0,0 +1,232 @@
+using BLL;
+using System;
+using System.Collections.Generic;
+using System.Data.SqlClient;
+using System.Data;
+using System.Linq;
+using System.Web;
+using System.Web.UI;
+using System.Web.UI.WebControls;
+using System.Text;
+
+namespace FineUIPro.Web.WeldMat.ReleaseRecovery
+{
+ public partial class TimeOutNoReturn : PageBase
+ {
+ protected void Page_Load(object sender, EventArgs e)
+ {
+ if (!IsPostBack)
+ {
+ ddlPageSize.SelectedValue = Grid1.PageSize.ToString();
+
+ this.drpProject.DataTextField = "ProjectCode";
+ this.drpProject.DataValueField = "ProjectId";
+ this.drpProject.DataSource = BLL.Base_ProjectService.GetProjectListByUserId(this.CurrUser.UserId, "1");
+ this.drpProject.DataBind();
+ Funs.FineUIPleaseSelect(this.drpProject);
+
+ BindGrid();
+
+ }
+
+ }
+
+ #region 绑定数据
+ ///
+ /// 绑定数据
+ ///
+ private void BindGrid()
+ {
+ string strSql = @"SELECT project.ProjectCode, weld.WeldName,weld.WeldCode,weld.WeldSpec,
+ wtype.WeldTypeName,welder.WED_Code,welder.WED_Name,m.UsingDate, team.TeamGroupName,unit.UnitName,
+ users.StoreName AS StoreMan,(ISNULL(m.Amount,0)+ ISNULL(m.TwoAmount,0)) AS Amount
+ FROM dbo.Weld_UsingMat m
+ LEFT JOIN dbo.Weld_UsingPlan usingPlan ON usingPlan.UsingPlanId = m.UsingPlanId
+ LEFT JOIN dbo.Weld_RecycleMat r ON m.UsingMatId=r.UsingMatId
+ LEFT JOIN dbo.Weld_WeldInfo weld ON weld.WeldId = m.WeldId
+ LEFT JOIN dbo.Weld_WeldType wtype ON wtype.WeldTypeId = weld.WeldTypeId
+ LEFT JOIN dbo.Base_Project project ON project.ProjectId = m.ProjectId
+ LEFT JOIN dbo.HJGL_BS_Welder welder ON welder.WED_ID=m.UsingMan
+ LEFT JOIN dbo.Base_TeamGroup team ON team.TeamGroupId = usingPlan.TeamGroupId
+ LEFT JOIN dbo.Base_Unit unit ON unit.UnitId=usingPlan.UsingUnit
+ LEFT JOIN dbo.Weld_Storeman users ON users.StoremanId=m.StoreMan
+ WHERE m.IsWelderConfirm=1 AND m.IsStoreManConfirm=1
+ AND (IsClose IS NULL OR IsClose=0)
+ AND (CASE WHEN ((wtype.WeldTypeName='焊丝' AND DATEDIFF(MINUTE ,m.UsingDate,GETDATE())>720) OR
+ (wtype.WeldTypeName='焊条' AND DATEDIFF(MINUTE ,m.UsingDate,GETDATE())>240)) THEN 1
+ ELSE 0 END)=1";
+ List listStr = new List();
+ if (drpProject.SelectedValue != Const._Null)
+ {
+ strSql += " AND m.ProjectId = @ProjectId";
+ listStr.Add(new SqlParameter("@ProjectId", drpProject.SelectedValue));
+ }
+
+ if (!string.IsNullOrEmpty(this.txtWeldName.Text.Trim()))
+ {
+ strSql += " AND weld.WeldName LIKE @WeldName";
+ listStr.Add(new SqlParameter("@WeldName", "%" + this.txtWeldName.Text.Trim() + "%"));
+ }
+
+ if (!string.IsNullOrEmpty(this.txtUnitName.Text.Trim()))
+ {
+ strSql += " AND unit.UnitName LIKE @UnitName";
+ listStr.Add(new SqlParameter("@UnitName", "%" + this.txtUnitName.Text.Trim() + "%"));
+ }
+
+ if (!string.IsNullOrEmpty(this.txtWEDCode.Text.Trim()))
+ {
+ strSql += " AND welder.WED_Code LIKE @WED_Code";
+ listStr.Add(new SqlParameter("@WED_Code", "%" + this.txtWEDCode.Text.Trim() + "%"));
+ }
+
+ if (!string.IsNullOrEmpty(this.txtWEDName.Text.Trim()))
+ {
+ strSql += " AND welder.WED_Name LIKE @WED_Name";
+ listStr.Add(new SqlParameter("@WED_Name", "%" + this.txtWEDName.Text.Trim() + "%"));
+ }
+
+ if (!string.IsNullOrEmpty(this.txtTeamGroupName.Text.Trim()))
+ {
+ strSql += " AND team.TeamGroupName LIKE @TeamGroupName";
+ listStr.Add(new SqlParameter("@TeamGroupName", "%" + this.txtTeamGroupName.Text.Trim() + "%"));
+ }
+
+ if (!string.IsNullOrEmpty(this.txtStarTime.Text))
+ {
+ strSql += " AND m.UsingDate >= @startTime";
+ listStr.Add(new SqlParameter("@startTime", this.txtStarTime.Text.Trim()));
+ }
+
+ if (!string.IsNullOrEmpty(this.txtEndTime.Text))
+ {
+ strSql += " AND m.UsingDate <= @endTime";
+ listStr.Add(new SqlParameter("@endTime", this.txtEndTime.Text.Trim()));
+ }
+
+ strSql += " ORDER BY project.ProjectCode,m.UsingDate";
+
+ SqlParameter[] parameter = listStr.ToArray();
+
+ DataTable tb = SQLHelper.GetDataTableRunText(strSql, parameter);
+
+ Grid1.RecordCount = tb.Rows.Count;
+ var table = this.GetPagedDataTable(Grid1, tb);
+ Grid1.DataSource = table;
+ Grid1.DataBind();
+ }
+
+ #endregion
+
+ #region 页索引改变事件
+ ///
+ /// 页索引改变事件
+ ///
+ ///
+ ///
+ protected void Grid1_PageIndexChange(object sender, GridPageEventArgs e)
+ {
+ Grid1.PageIndex = e.NewPageIndex;
+ BindGrid();
+ }
+ #endregion
+
+ #region 排序
+ ///
+ /// 排序
+ ///
+ ///
+ ///
+ protected void Grid1_Sort(object sender, GridSortEventArgs e)
+ {
+ Grid1.SortDirection = e.SortDirection;
+ Grid1.SortField = e.SortField;
+ BindGrid();
+ }
+ #endregion
+
+ #region 分页选择下拉改变事件
+ ///
+ /// 分页选择下拉改变事件
+ ///
+ ///
+ ///
+ protected void ddlPageSize_SelectedIndexChanged(object sender, EventArgs e)
+ {
+ Grid1.PageSize = Convert.ToInt32(ddlPageSize.SelectedValue);
+ BindGrid();
+ }
+ #endregion
+
+ #region 统计分析
+ ///
+ ///
+ ///
+ ///
+ ///
+ protected void BtnAnalyse_Click(object sender, EventArgs e)
+ {
+ BindGrid();
+ }
+ #endregion
+
+ #region 导出
+
+ /// 导出按钮
+ ///
+ ///
+ ///
+ protected void btnOut_Click(object sender, EventArgs e)
+ {
+ Response.ClearContent();
+ string filename = Funs.GetNewFileName();
+ Response.AddHeader("content-disposition", "attachment; filename=" + System.Web.HttpUtility.UrlEncode("超时未退库统计" + filename, System.Text.Encoding.UTF8) + ".xls");
+ Response.ContentType = "application/excel";
+ Response.ContentEncoding = System.Text.Encoding.UTF8;
+ Response.Write(GetGridTableHtml(Grid1));
+ Response.End();
+ }
+
+ ///
+ /// 导出方法
+ ///
+ ///
+ ///
+ private string GetGridTableHtml(Grid grid)
+ {
+ StringBuilder sb = new StringBuilder();
+ sb.Append("");
+ sb.Append("");
+ sb.Append("");
+
+ this.Grid1.PageSize = 100000;
+ BindGrid();
+
+ foreach (GridColumn column in grid.Columns)
+ {
+ sb.AppendFormat("| {0} | ", column.HeaderText);
+ }
+ sb.Append("
");
+ foreach (GridRow row in grid.Rows)
+ {
+ sb.Append("");
+ foreach (GridColumn column in grid.Columns)
+ {
+ string html = row.Values[column.ColumnIndex].ToString();
+ //if (column.ColumnID == "tfNumber")
+ //{
+ // html = (row.FindControl("labNumber") as AspNet.Label).Text;
+ //}
+ sb.AppendFormat("| {0} | ", html);
+ }
+
+ sb.Append("
");
+ }
+
+ sb.Append("
");
+
+ return sb.ToString();
+ }
+ #endregion
+ }
+}
\ No newline at end of file
diff --git a/HJGL_ZH/FineUIPro.Web/WeldMat/ReleaseRecovery/TimeOutNoReturn.aspx.designer.cs b/HJGL_ZH/FineUIPro.Web/WeldMat/ReleaseRecovery/TimeOutNoReturn.aspx.designer.cs
new file mode 100644
index 0000000..bc222d0
--- /dev/null
+++ b/HJGL_ZH/FineUIPro.Web/WeldMat/ReleaseRecovery/TimeOutNoReturn.aspx.designer.cs
@@ -0,0 +1,233 @@
+//------------------------------------------------------------------------------
+// <自动生成>
+// 此代码由工具生成。
+//
+// 对此文件的更改可能导致不正确的行为,如果
+// 重新生成代码,则所做更改将丢失。
+// 自动生成>
+//------------------------------------------------------------------------------
+
+namespace FineUIPro.Web.WeldMat.ReleaseRecovery
+{
+
+
+ public partial class TimeOutNoReturn
+ {
+
+ ///
+ /// Head1 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::System.Web.UI.HtmlControls.HtmlHead Head1;
+
+ ///
+ /// form1 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::System.Web.UI.HtmlControls.HtmlForm form1;
+
+ ///
+ /// PageManager1 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.PageManager PageManager1;
+
+ ///
+ /// RegionPanel1 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.RegionPanel RegionPanel1;
+
+ ///
+ /// Region1 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Region Region1;
+
+ ///
+ /// Toolbar1 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Toolbar Toolbar1;
+
+ ///
+ /// drpProject 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.DropDownList drpProject;
+
+ ///
+ /// txtWeldName 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.TextBox txtWeldName;
+
+ ///
+ /// txtUnitName 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.TextBox txtUnitName;
+
+ ///
+ /// txtWEDCode 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.TextBox txtWEDCode;
+
+ ///
+ /// txtWEDName 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.TextBox txtWEDName;
+
+ ///
+ /// ToolbarFill2 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.ToolbarFill ToolbarFill2;
+
+ ///
+ /// Toolbar2 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Toolbar Toolbar2;
+
+ ///
+ /// txtTeamGroupName 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.TextBox txtTeamGroupName;
+
+ ///
+ /// txtStarTime 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.DatePicker txtStarTime;
+
+ ///
+ /// txtEndTime 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.DatePicker txtEndTime;
+
+ ///
+ /// ToolbarFill1 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.ToolbarFill ToolbarFill1;
+
+ ///
+ /// BtnAnalyse 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Button BtnAnalyse;
+
+ ///
+ /// btnOut 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Button btnOut;
+
+ ///
+ /// Region2 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Region Region2;
+
+ ///
+ /// Grid1 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Grid Grid1;
+
+ ///
+ /// ToolbarSeparator1 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.ToolbarSeparator ToolbarSeparator1;
+
+ ///
+ /// ToolbarText1 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.ToolbarText ToolbarText1;
+
+ ///
+ /// ddlPageSize 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.DropDownList ddlPageSize;
+ }
+}
diff --git a/HJGL_ZH/FineUIPro.Web/WeldMat/ReleaseRecovery/WeldMatStatistics.aspx b/HJGL_ZH/FineUIPro.Web/WeldMat/ReleaseRecovery/WeldMatStatistics.aspx
index 3bf1a89..3fb02c3 100644
--- a/HJGL_ZH/FineUIPro.Web/WeldMat/ReleaseRecovery/WeldMatStatistics.aspx
+++ b/HJGL_ZH/FineUIPro.Web/WeldMat/ReleaseRecovery/WeldMatStatistics.aspx
@@ -37,74 +37,122 @@
-
+
-
-
-
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
- <%--
- --%>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/HJGL_ZH/FineUIPro.Web/WeldMat/ReleaseRecovery/WeldMatStatistics.aspx.cs b/HJGL_ZH/FineUIPro.Web/WeldMat/ReleaseRecovery/WeldMatStatistics.aspx.cs
index 1e01058..cd9bb0b 100644
--- a/HJGL_ZH/FineUIPro.Web/WeldMat/ReleaseRecovery/WeldMatStatistics.aspx.cs
+++ b/HJGL_ZH/FineUIPro.Web/WeldMat/ReleaseRecovery/WeldMatStatistics.aspx.cs
@@ -77,6 +77,7 @@ namespace FineUIPro.Web.WeldMat.ReleaseRecovery
protected void tvControlItem_NodeCommand(object sender, TreeCommandEventArgs e)
{
this.BindGrid();
+ Grid2.Rows.Clear();
}
#endregion
@@ -103,7 +104,9 @@ namespace FineUIPro.Web.WeldMat.ReleaseRecovery
{
listStr.Add(new SqlParameter("@WeldName", null));
}
-
+
+ listStr.Add(new SqlParameter("@WeldSpec", null));
+
if (!string.IsNullOrEmpty(this.txtStarTime.Text))
{
listStr.Add(new SqlParameter("@StartDate", Convert.ToDateTime(this.txtStarTime.Text.Trim())));
@@ -136,6 +139,71 @@ namespace FineUIPro.Web.WeldMat.ReleaseRecovery
}
#endregion
+ protected void Grid1_RowSelect(object sender, GridRowSelectEventArgs e)
+ {
+ if (!string.IsNullOrEmpty(Grid1.SelectedRowID))
+ {
+ string weldName = Grid1.DataKeys[e.RowIndex][0].ToString();
+ string weldSpec= Grid1.DataKeys[e.RowIndex][1].ToString();
+
+ List listStr = new List();
+ if (this.tvControlItem.SelectedNodeID != null && this.tvControlItem.SelectedNodeID != "0")
+ {
+ listStr.Add(new SqlParameter("@ProjectId", this.tvControlItem.SelectedNodeID));
+ }
+ else
+ {
+ listStr.Add(new SqlParameter("@ProjectId", null));
+ }
+
+ if (!string.IsNullOrEmpty(weldName))
+ {
+ listStr.Add(new SqlParameter("@WeldName", "%" + weldName + "%"));
+ }
+ else
+ {
+ listStr.Add(new SqlParameter("@WeldName", null));
+ }
+
+ if (!string.IsNullOrEmpty(this.txtStarTime.Text))
+ {
+ listStr.Add(new SqlParameter("@StartDate", Convert.ToDateTime(this.txtStarTime.Text.Trim())));
+ }
+ else
+ {
+ listStr.Add(new SqlParameter("@StartDate", null));
+ }
+
+ if (!string.IsNullOrEmpty(this.txtEndTime.Text))
+ {
+ listStr.Add(new SqlParameter("@EndDate", Convert.ToDateTime(this.txtEndTime.Text.Trim())));
+ }
+ else
+ {
+ listStr.Add(new SqlParameter("@EndDate", null));
+ }
+ if (!string.IsNullOrEmpty(weldSpec))
+ {
+ listStr.Add(new SqlParameter("@WeldSpec", weldSpec));
+ }
+ else
+ {
+ listStr.Add(new SqlParameter("@WeldSpec", null));
+ }
+
+ listStr.Add(new SqlParameter("@IsTeamGroup", "1"));
+
+ SqlParameter[] parameter = listStr.ToArray();
+ DataTable dt = SQLHelper.GetDataTableRunProc("sp_Weld_ReleaseRecovery", parameter);
+
+ //Grid2.RecordCount = tb.Rows.Count;
+ //var table = this.GetPagedDataTable(Grid1, tb);
+ //this.OutputSummaryData(tb); ///取合计值
+ Grid2.DataSource = dt;
+ Grid2.DataBind();
+ }
+ }
+
#region 计算合计
///
/// 计算合计
diff --git a/HJGL_ZH/FineUIPro.Web/WeldMat/ReleaseRecovery/WeldMatStatistics.aspx.designer.cs b/HJGL_ZH/FineUIPro.Web/WeldMat/ReleaseRecovery/WeldMatStatistics.aspx.designer.cs
index c26dd7c..0d66b59 100644
--- a/HJGL_ZH/FineUIPro.Web/WeldMat/ReleaseRecovery/WeldMatStatistics.aspx.designer.cs
+++ b/HJGL_ZH/FineUIPro.Web/WeldMat/ReleaseRecovery/WeldMatStatistics.aspx.designer.cs
@@ -7,11 +7,13 @@
// 自动生成>
//------------------------------------------------------------------------------
-namespace FineUIPro.Web.WeldMat.ReleaseRecovery {
-
-
- public partial class WeldMatStatistics {
-
+namespace FineUIPro.Web.WeldMat.ReleaseRecovery
+{
+
+
+ public partial class WeldMatStatistics
+ {
+
///
/// Head1 控件。
///
@@ -20,7 +22,7 @@ namespace FineUIPro.Web.WeldMat.ReleaseRecovery {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::System.Web.UI.HtmlControls.HtmlHead Head1;
-
+
///
/// form1 控件。
///
@@ -29,7 +31,7 @@ namespace FineUIPro.Web.WeldMat.ReleaseRecovery {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::System.Web.UI.HtmlControls.HtmlForm form1;
-
+
///
/// PageManager1 控件。
///
@@ -38,7 +40,7 @@ namespace FineUIPro.Web.WeldMat.ReleaseRecovery {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.PageManager PageManager1;
-
+
///
/// Panel1 控件。
///
@@ -47,7 +49,7 @@ namespace FineUIPro.Web.WeldMat.ReleaseRecovery {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Panel1;
-
+
///
/// panelLeftRegion 控件。
///
@@ -56,7 +58,7 @@ namespace FineUIPro.Web.WeldMat.ReleaseRecovery {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel panelLeftRegion;
-
+
///
/// Toolbar4 控件。
///
@@ -65,7 +67,7 @@ namespace FineUIPro.Web.WeldMat.ReleaseRecovery {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Toolbar Toolbar4;
-
+
///
/// drpProjectId 控件。
///
@@ -74,7 +76,7 @@ namespace FineUIPro.Web.WeldMat.ReleaseRecovery {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.DropDownList drpProjectId;
-
+
///
/// tvControlItem 控件。
///
@@ -83,16 +85,25 @@ namespace FineUIPro.Web.WeldMat.ReleaseRecovery {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Tree tvControlItem;
-
+
///
- /// panelCenterRegion 控件。
+ /// Panel2 控件。
///
///
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
- protected global::FineUIPro.Panel panelCenterRegion;
-
+ protected global::FineUIPro.Panel Panel2;
+
+ ///
+ /// panelTopRegion 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Panel panelTopRegion;
+
///
/// Grid1 控件。
///
@@ -101,7 +112,7 @@ namespace FineUIPro.Web.WeldMat.ReleaseRecovery {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Grid Grid1;
-
+
///
/// Toolbar2 控件。
///
@@ -110,7 +121,7 @@ namespace FineUIPro.Web.WeldMat.ReleaseRecovery {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Toolbar Toolbar2;
-
+
///
/// txtWeldName 控件。
///
@@ -119,7 +130,7 @@ namespace FineUIPro.Web.WeldMat.ReleaseRecovery {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox txtWeldName;
-
+
///
/// txtStarTime 控件。
///
@@ -128,7 +139,7 @@ namespace FineUIPro.Web.WeldMat.ReleaseRecovery {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.DatePicker txtStarTime;
-
+
///
/// txtEndTime 控件。
///
@@ -137,7 +148,7 @@ namespace FineUIPro.Web.WeldMat.ReleaseRecovery {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.DatePicker txtEndTime;
-
+
///
/// ToolbarFill1 控件。
///
@@ -146,7 +157,7 @@ namespace FineUIPro.Web.WeldMat.ReleaseRecovery {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.ToolbarFill ToolbarFill1;
-
+
///
/// btnOut 控件。
///
@@ -155,7 +166,7 @@ namespace FineUIPro.Web.WeldMat.ReleaseRecovery {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Button btnOut;
-
+
///
/// GroupField1 控件。
///
@@ -164,7 +175,7 @@ namespace FineUIPro.Web.WeldMat.ReleaseRecovery {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.GroupField GroupField1;
-
+
///
/// ToolbarSeparator1 控件。
///
@@ -173,7 +184,7 @@ namespace FineUIPro.Web.WeldMat.ReleaseRecovery {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.ToolbarSeparator ToolbarSeparator1;
-
+
///
/// ToolbarText1 控件。
///
@@ -182,7 +193,7 @@ namespace FineUIPro.Web.WeldMat.ReleaseRecovery {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.ToolbarText ToolbarText1;
-
+
///
/// ddlPageSize 控件。
///
@@ -191,5 +202,32 @@ namespace FineUIPro.Web.WeldMat.ReleaseRecovery {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.DropDownList ddlPageSize;
+
+ ///
+ /// panelBottomRegion 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Panel panelBottomRegion;
+
+ ///
+ /// Grid2 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Grid Grid2;
+
+ ///
+ /// GroupField2 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.GroupField GroupField2;
}
}
diff --git a/HJGL_ZH/FineUIPro.Web/WeldMat/ReleaseRecovery/WeldUseAmount.aspx.cs b/HJGL_ZH/FineUIPro.Web/WeldMat/ReleaseRecovery/WeldUseAmount.aspx.cs
index 1085571..c2a9a9e 100644
--- a/HJGL_ZH/FineUIPro.Web/WeldMat/ReleaseRecovery/WeldUseAmount.aspx.cs
+++ b/HJGL_ZH/FineUIPro.Web/WeldMat/ReleaseRecovery/WeldUseAmount.aspx.cs
@@ -76,6 +76,7 @@ namespace FineUIPro.Web.WeldMat.ReleaseRecovery
listStr.Add(new SqlParameter("@EndDate", null));
}
+ listStr.Add(new SqlParameter("@WeldSpec", null));
listStr.Add(new SqlParameter("@IsTeamGroup", "1"));
SqlParameter[] parameter = listStr.ToArray();
diff --git a/HJGL_ZH/FineUIPro.Web/WeldMat/Stock/StockIn.aspx.cs b/HJGL_ZH/FineUIPro.Web/WeldMat/Stock/StockIn.aspx.cs
index 11cc4c0..6227e7d 100644
--- a/HJGL_ZH/FineUIPro.Web/WeldMat/Stock/StockIn.aspx.cs
+++ b/HJGL_ZH/FineUIPro.Web/WeldMat/Stock/StockIn.aspx.cs
@@ -235,7 +235,16 @@ namespace FineUIPro.Web.WeldMat.Stock
var s = BLL.UnitStoreService.GetUnitStoreById(q.UnitStoreId);
if (s != null && s.UnitId == CurrUser.UnitId)
{
- PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("StockInEdit.aspx?StockInId={0}", id, "编辑 - ")));
+ if (s.IsUse == true)
+ {
+ PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("StockInEdit.aspx?StockInId={0}", id, "编辑 - ")));
+ }
+ else
+ {
+ Alert.ShowInTop("该仓库已停用,不能修改!", MessageBoxIcon.Warning);
+ return;
+ }
+
}
else
{
diff --git a/HJGL_ZH/FineUIPro.Web/WeldMat/Stock/StockInit.aspx.cs b/HJGL_ZH/FineUIPro.Web/WeldMat/Stock/StockInit.aspx.cs
index 477dd11..4a008ec 100644
--- a/HJGL_ZH/FineUIPro.Web/WeldMat/Stock/StockInit.aspx.cs
+++ b/HJGL_ZH/FineUIPro.Web/WeldMat/Stock/StockInit.aspx.cs
@@ -234,7 +234,15 @@ namespace FineUIPro.Web.WeldMat.Stock
var s = BLL.UnitStoreService.GetUnitStoreById(q.UnitStoreId);
if (s != null && s.UnitId == CurrUser.UnitId)
{
- PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("StockInitEdit.aspx?StockInId={0}", id, "编辑 - ")));
+ if (s.IsUse == true)
+ {
+ PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("StockInitEdit.aspx?StockInId={0}", id, "编辑 - ")));
+ }
+ else
+ {
+ Alert.ShowInTop("该仓库已停用,不能修改!", MessageBoxIcon.Warning);
+ return;
+ }
}
else
{
diff --git a/HJGL_ZH/FineUIPro.Web/WeldMat/Stock/StockSelectDetail.aspx.cs b/HJGL_ZH/FineUIPro.Web/WeldMat/Stock/StockSelectDetail.aspx.cs
index e1468d1..863f134 100644
--- a/HJGL_ZH/FineUIPro.Web/WeldMat/Stock/StockSelectDetail.aspx.cs
+++ b/HJGL_ZH/FineUIPro.Web/WeldMat/Stock/StockSelectDetail.aspx.cs
@@ -170,7 +170,7 @@ namespace FineUIPro.Web.WeldMat.Stock
if (drpUnit.SelectedValue != Const._Null)
{
drpUnitStore.Items.Clear();
- BLL.UnitStoreService.InitUnitStoreDropDownList(drpUnitStore, drpUnit.SelectedValue, true);
+ BLL.UnitStoreService.InitUnitStoreAll(drpUnitStore, drpUnit.SelectedValue, true);
drpUnitStore.SelectedValue = Const._Null;
}
}
diff --git a/HJGL_ZH/FineUIPro.Web/WeldMat/UsingSentMat/ShowStockIn.aspx.cs b/HJGL_ZH/FineUIPro.Web/WeldMat/UsingSentMat/ShowStockIn.aspx.cs
index e5fa08d..e0e216a 100644
--- a/HJGL_ZH/FineUIPro.Web/WeldMat/UsingSentMat/ShowStockIn.aspx.cs
+++ b/HJGL_ZH/FineUIPro.Web/WeldMat/UsingSentMat/ShowStockIn.aspx.cs
@@ -69,6 +69,7 @@ namespace FineUIPro.Web.WeldMat.UsingSentMat
LEFT JOIN dbo.Weld_Supplier supplier ON supplier.SupplierId=StockIn.SupplierId
LEFT JOIN dbo.Weld_UnitStore store ON store.UnitStoreId = StockIn.UnitStoreId
WHERE (StockIn.Amount-ISNULL(StockIn.UsingAmount,0)+ISNULL(StockIn.RecycleAmount,0))>0
+ AND store.IsUse=1
AND StockIn.WeldId=@WeldId AND store.UnitId=@UnitId";
List listStr = new List();
if (plan != null)