Merge branch 'master' of https://gitee.com/frane-yang/SGGL_CWCEC
This commit is contained in:
commit
8a6e831736
|
@ -23,6 +23,6 @@ GO
|
|||
alter table WBS_Division add SubItemType char(1) null
|
||||
alter table WBS_Breakdown add CheckAcceptType char(1) null
|
||||
GO
|
||||
insert into WBS_Division select * from CNCEC_SUBQHSEDB..WBS_Division
|
||||
insert into WBS_Breakdown select * from CNCEC_SUBQHSEDB..WBS_Breakdown
|
||||
insert into WBS_Division select * from WBS_Division
|
||||
insert into WBS_Breakdown select * from WBS_Breakdown
|
||||
GO
|
||||
|
|
|
@ -52,7 +52,7 @@
|
|||
<Reference Include="EmitMapper, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\EmitMapper.1.0.0\lib\EmitMapper.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="FineUIPro, Version=3.1.0.2, Culture=neutral, PublicKeyToken=9cbe753c029f291a, processorArchitecture=MSIL">
|
||||
<Reference Include="FineUIPro, Version=6.3.0.0, Culture=neutral, PublicKeyToken=9cbe753c029f291a, processorArchitecture=MSIL">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
<HintPath>..\FineUIPro\FineUIPro.dll</HintPath>
|
||||
</Reference>
|
||||
|
|
|
@ -7,6 +7,8 @@ namespace BLL
|
|||
{
|
||||
public static class WorkloadStatisticsService
|
||||
{
|
||||
public static Model.SGGLDB db = Funs.DB;
|
||||
|
||||
/// <summary>
|
||||
/// 获取模拟树表格
|
||||
/// </summary>
|
||||
|
@ -2554,6 +2556,19 @@ namespace BLL
|
|||
}
|
||||
}
|
||||
|
||||
private static IQueryable<Model.WBS_CostControl> getCostControls = from x in db.WBS_CostControl select x;
|
||||
private static IQueryable<Model.View_WBS_CostControlDetail> getDetails = from x in db.View_WBS_CostControlDetail select x;
|
||||
private static IQueryable<Model.View_WBS_CostControlParentDetail> getParentDetails = from x in db.View_WBS_CostControlParentDetail select x;
|
||||
private static IQueryable<Model.Wbs_WbsSet> getWbsSets = from x in db.Wbs_WbsSet select x;
|
||||
private static IQueryable<Model.WBS_WbsSetInit> getWbsSetInits = from x in db.WBS_WbsSetInit select x;
|
||||
private static IQueryable<Model.Wbs_UnitProject> getUnitProjects = from x in db.Wbs_UnitProject select x;
|
||||
private static IQueryable<Model.Wbs_UnitProjectInit> getUnitProjectInits = from x in db.Wbs_UnitProjectInit select x;
|
||||
private static IQueryable<Model.WBS_CnProfession> getCnProfessions = from x in db.WBS_CnProfession select x;
|
||||
private static IQueryable<Model.WBS_CnProfessionInit> getCnProfessionInits = from x in db.WBS_CnProfessionInit select x;
|
||||
private static IQueryable<Model.Project_Installation> getInstallations = from x in db.Project_Installation select x;
|
||||
private static IQueryable<Model.View_WBS_CostControlDetailStatistics> getCostControlDetailStatisticss = from x in db.View_WBS_CostControlDetailStatistics select x;
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 获取模拟树表格
|
||||
/// </summary>
|
||||
|
@ -2598,18 +2613,20 @@ namespace BLL
|
|||
table.Columns.Add(new DataColumn("ThisNum" + (i + 1).ToString(), typeof(String)));
|
||||
}
|
||||
table.Columns.Add(new DataColumn("ShowId", typeof(String)));
|
||||
Model.SGGLDB db = Funs.DB;
|
||||
var costControls = from x in db.WBS_CostControl where x.ProjectId == projectId select x;
|
||||
var details = from x in db.View_WBS_CostControlDetail where x.ProjectId == projectId select x;
|
||||
var parentDetails = from x in db.View_WBS_CostControlParentDetail select x;
|
||||
var wbsSets = from x in db.Wbs_WbsSet where x.ProjectId == projectId select x;
|
||||
var wbsSetInits = from x in db.WBS_WbsSetInit select x;
|
||||
var unitProjects = from x in db.Wbs_UnitProject where x.ProjectId == projectId select x;
|
||||
var unitProjectInits = from x in db.Wbs_UnitProjectInit select x;
|
||||
var cnProfessions = from x in db.WBS_CnProfession where x.ProjectId == projectId select x;
|
||||
var cnProfessionInits = from x in db.WBS_CnProfessionInit select x;
|
||||
var installations = from x in db.Project_Installation where x.ProjectId == projectId select x;
|
||||
CostControlDetailStatisticsList = (from x in db.View_WBS_CostControlDetailStatistics where x.ProjectId == projectId select x).Distinct().ToList();
|
||||
|
||||
var costControls = getCostControls.Where(x => x.ProjectId == projectId);
|
||||
var details = getDetails.Where(x => x.ProjectId == projectId);
|
||||
var parentDetails = getParentDetails;
|
||||
var wbsSets = getWbsSets.Where(x => x.ProjectId == projectId);
|
||||
var wbsSetInits = getWbsSetInits;
|
||||
|
||||
var unitProjects = getUnitProjects.Where(x => x.ProjectId == projectId);
|
||||
var unitProjectInits = getUnitProjectInits;
|
||||
var cnProfessions = getCnProfessions.Where(x => x.ProjectId == projectId);
|
||||
var cnProfessionInits = getCnProfessionInits;
|
||||
var installations = getInstallations.Where(x => x.ProjectId == projectId);
|
||||
|
||||
CostControlDetailStatisticsList = getCostControlDetailStatisticss.Where(x=> x.ProjectId == projectId).Distinct().ToList();
|
||||
List<Model.View_WBS_CostControlDetailStatistics> newList = new List<Model.View_WBS_CostControlDetailStatistics>();
|
||||
var installationList = CostControlDetailStatisticsList.Where(x => x.WBSType == "Installation" && x.SupId == "0");
|
||||
foreach (var item in installationList)
|
||||
|
|
|
@ -1,391 +0,0 @@
|
|||
管道焊接管理操作说明
|
||||
Pipeline welding management operating instructions
|
||||
总体框架(综合平台):
|
||||
首页呈现:包括项目图片,焊工名次(查看明细),焊工工作量,拍片工作量,过期焊工提醒,承包商报表(查看明细)。
|
||||
I. General framework (comprehensive platform).
|
||||
Home page presentation: including project picture, welder name (view details), welder workload, filming workload, expired welder reminder, contractor report (view details).
|
||||
在综合平台的上方:公共信息,现场管道安装可自由切换,快捷菜单为预留功能以后可扩展。进入现场管道安装要先选择项目(选择好以后就默认),皮肤为本软件的呈现风格,动画为软件运行时加载大量数据时等待动画,
|
||||
最右边中英文切换的下拉选择。
|
||||
|
||||
|
||||
At the top of the integrated platform: public information, on-site pipe installation can be freely switched, and the shortcut menu is reserved for functions that can be expanded later. To enter the site pipeline installation to select the project first (after selecting the default), the skin for the presentation style of this software, animation for the software to run when loading a lot of data while waiting ,The rightmost drop-down selection is for switching between Chinese and English.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
选择项目
|
||||
|
||||
|
||||
说明:一个新项目开始,要按下面顺序进行操作。
|
||||
Note: A new project starts with the following sequence of operations.
|
||||
包括:基础设置:项目类型,项目信息,单位信息,焊工信息,首页定制等
|
||||
系统设置:角色管理,用户管理,修改密码,角色授权,日志管理等
|
||||
项目设置:项目的参与单位、参与用户,参与焊工,项目装置,系统环境变量,项目图片等。
|
||||
Including: Basic settings: project type, project information, unit information, welder information, home page customization, etc.
|
||||
System settings: role management, user management, password modification, role authorization, log management, etc.
|
||||
Project settings: project participating units, participating users, participating welders, project installations, system environment variables, project pictures, etc.
|
||||
|
||||
1.基础设置
|
||||
项目类型:主要是区分项目是大项目还是小项目,和焊工业绩统计施工进度和质量统计有关,有增加、删除、修改等功能
|
||||
1.Basic settings
|
||||
Project type: mainly to distinguish whether the project is a large project or a small project, and welder performance statistics construction progress and quality statistics, with functions such as adding, deleting and modifying
|
||||
|
||||
|
||||
项目信息:维护所有项目信息,有增加、删除、修改,查询等功能
|
||||
Project information: maintain all project information, with functions such as adding, deleting, modifying, and querying
|
||||
|
||||
|
||||
|
||||
单位信息:所有和项目有关的单位库,有增加、删除、修改、查询等功能,后面项目的参与单位就从这里选择。
|
||||
Unit information: a library of all units related to the project, with functions such as adding, deleting, modifying, querying, etc. The participating units of the later project are selected from here.
|
||||
|
||||
|
||||
|
||||
焊工信息:项目上所有焊工信息库,包括焊工焊接资质,焊工在所有项目上业
|
||||
绩,有增加、删除、修改、查询、导入等,说明:焊工资质和上交焊接记录有逻辑关系。后面项目上参与焊工就从这个焊工库中选择,"焊工号"自动生成。规则:小项目字母:A~J开头后跟3位流水数字;大项目字母K~Z开头后跟3位流水数字
|
||||
Welder Information: A database of all welders on the project, including welders' welding qualifications, welders' performance on all projects, with add, delete, modify, query, import, etc.
|
||||
Note: There is a logical relationship between welders' qualifications and submitted welding records. The welders involved in later projects are selected from this welders database and the "welders number" is automatically generated.
|
||||
Rules: small project letters: A ~ J beginning followed by 3 running numbers; large project letters K ~ Z beginning followed by 3 running numbers.
|
||||
|
||||
|
||||
|
||||
|
||||
焊工资质
|
||||
Welder qualifications
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
2.系统设置
|
||||
角色管理:操作系统的用户角色,每种角色权限也不一样,有增加、删除、修改、查询等功能。
|
||||
2. System settings
|
||||
Role management: user roles of the operating system, each role has different permissions, with functions such as adding, deleting, modifying and querying.
|
||||
|
||||
|
||||
|
||||
角色授权:用户根据角色设置权限,用来操作具有权限的模块(设置到按钮权限)
|
||||
Role authorization: users set permissions according to their roles, which are used to operate modules with permissions (set to button permissions)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
用户管理和密码修改:所有登陆系统的用户的管理包括增加、删除、修改、查询等功能,用户能修改自己的密码,管理员能重置所有用户的密码。后面项目上参与用户就从中选择。
|
||||
说明:用户可具有多种角色。
|
||||
User management and password modification: The management of all users logged into the system includes the functions of adding, deleting, modifying and querying, users are able to modify their own passwords, and administrators are able to reset the passwords of all users.The participating users on the later project then choose from it.Note: Users can have multiple roles.
|
||||
|
||||
|
||||
|
||||
日志管理:记录用户对软件进行的操作,不能删除。
|
||||
Log management: Record the operations performed by users on the software, which cannot be deleted.
|
||||
|
||||
|
||||
|
||||
|
||||
3.项目设置
|
||||
项目的参与单位,参与用户,参与焊工都属于项目上的信息设置,设置参与该项目的单位、用户、焊工。如下图:参与单位:先从单位库选择参与单位,再双击可编辑参与单位的组织机构和班组信息,用户和焊工与单位设置一样,不再说明。
|
||||
3. Project settings
|
||||
The project's participating units, participating users, participating welders are all part of the project information settings, set the participating units, users, welders on the project.
|
||||
The image below: Participating units: first select the participating units from the unit library, then double-click to edit the organizational structure and shift information of the participating units, users and welders are the same as the unit settings, we will have no further explanation.
|
||||
|
||||
|
||||
选择单位:
|
||||
Select units.
|
||||
|
||||
|
||||
双击编辑单位信息和班组
|
||||
Double click to edit unit information and shift groups
|
||||
|
||||
|
||||
|
||||
项目上参与用户的选择并在这里分配角色,用户根据自己的角色来操作分配给他的任务。
|
||||
TSelection of participating users on the project and assignment of roles here, and the users will operate the tasks assigned to them according to their roles.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
项目焊工:根据参与项目的单位来选择参与的焊工。
|
||||
Project Welders: Welders involved are selected based on the units involved in the project.
|
||||
|
||||
|
||||
|
||||
项目装置:先进行装置的设置,再点击区域设置进行工作区的设置。项目装置和区域设置都具有增加、删除、修改、查询等功能
|
||||
Project device: first set up the device, and then click on the area setting to set up the work area. Both project devices and area settings have functions such as adding, deleting, modifying, and querying
|
||||
|
||||
|
||||
|
||||
环境变量设置:对一些项目可能有一些有别与其它项目的特殊要求,可在这里设置,我们暂未用到,不再说明
|
||||
Environment variable setting: Some projects may have some special requirements that are different from other projects, which can be set here, we have not used it yet, so we will not explain it here.
|
||||
|
||||
|
||||
项目图片设置:上传和项目相关的图片,首页滚动显示设置为显示的最近的5张图片。
|
||||
项目图片设置具有增加、删除、修改、等功能。
|
||||
Project picture setting: upload pictures related to the project, and the scrolling display of the home page is set to the 5 most recent pictures displayed.
|
||||
Project image setting has the functions of adding, deleting, modifying, etc.
|
||||
|
||||
|
||||
公共信息:主要包括通用的基础信息,焊接工艺评定查询,文件控制,过程控制资料。
|
||||
public information: mainly includes general basic information, welding craft evaluation query, document control, process control documents.
|
||||
基础信息:焊接耗材,探伤类型,探伤比例,焊缝类型,管道等级,安装组件,焊接方法,坡口类型,材质定义,介质定义,直径寸径对照表,缺陷性质等。
|
||||
1.Basic information: welding consumables, flaw detection type, flaw detection ratio, weld type, pipe grade, installation components, welding method, bevel type, material definition, media definition, diameter inch diameter comparison table, defect nature, etc.
|
||||
举例说明其中之一,其它不再说明。如下图探伤类型的维护操作:点击增加,录入数据点提交即可完成。选中记录项点击即可删除,如提交即完成修改。如后面管理焊口信息中业务用到则删除不了。
|
||||
说明:基础信息都是后面焊接现场管理的一些统一标准,在进行管线设置、焊口信息设置等会大量用到,所以要事先进行维护。
|
||||
One of the examples is given, and the others are not explained here.
|
||||
The following image shows the maintenance operation of the probing type: click to add, enter the data point to submit to complete. Selected record items can be deleted by clicking, do submission and complete the modification. If the later management of welding port information used in the business, it can not be deleted.
|
||||
Note: The basic information is the unified standards behind the welding site management , in the pipeline settings, weld port information settings, etc. will be used a lot, so we should maintain in advance.
|
||||
|
||||
|
||||
|
||||
|
||||
这里重点说下管道等级的设置,管道等级录入好后要进行条件设置,在进行管线信息的设置时选择管道等级,则相应的组批条件会带出来。
|
||||
Here we focus on the setting of the pipeline grade, after the pipeline grade is entered to set the conditions, select the pipeline grade when setting the pipeline information, then the corresponding group batch conditions will be automatically brought out.
|
||||
|
||||
|
||||
管道等级的条件设置
|
||||
Condition setting for pipeline grade
|
||||
|
||||
|
||||
|
||||
焊接工艺评定:根据焊口的参数而采用什么焊接工艺评定提供相应的参考,有增加、删除、修改、查询,导入,导出等功能。
|
||||
2. Welding process evaluation: According to the parameters of the weld port and what welding process evaluation to provide the corresponding reference, there are functions to add, delete, modify, query, import, export, etc.
|
||||
|
||||
|
||||
|
||||
3.文档控制:可维护和上传国内外焊接管理的一些法律法规和标准规范,便于项目上参考和查看,有增加、删除、修改、查询等功能,这里不再说明。
|
||||
3. Document control: You can maintain and upload some laws and regulations and standard specifications for welding management at home and abroad, for easy reference and viewing on the project, with functions such as adding, deleting, modifying and querying, which we will not explain here.
|
||||
|
||||
|
||||
4.过程控制资料:包括焊接数据统计(日、周、月),施工单位焊接统计,焊接质量月统计报表,焊工名次,项目焊接质量状态,最终存档数据。
|
||||
4. Process control information: including welding data statistics (daily, weekly, monthly), construction unit welding statistics, welding quality monthly statistical reports, welders' names, project welding quality status, and final archived data.
|
||||
焊接数据统计(日、周、月):根据起始时间进行分项目进行统计,并可导出统计结果。
|
||||
Welding data statistics (daily, weekly, monthly): statistics by project according to the start and end time, and can export statistical results.
|
||||
|
||||
|
||||
施工单位焊接统计:根据项目类型和起始时间分单位进行统计,并可导出统计结果。
|
||||
|
||||
Construction unit welding statistics: statistics by unit according to project type and start time, and we can export the statistics.
|
||||
|
||||
焊接质量月统计报表:根据项目和年份分月进行统计,并可导出统计结果。
|
||||
|
||||
|
||||
|
||||
焊工名次:根据项目类型和年份分焊工进行统计,并可导出统计结果。
|
||||
Welder ranking: statistics according to project type and year by welder, and we can export statistics.
|
||||
|
||||
|
||||
项目焊接质量状态:根据起始时间(周)进行分总的和周来进行统计,并可导出统计结果。
|
||||
Project welding quality status: statistics by total and week according to start and end time (weeks) and we can export the the statistical results.
|
||||
|
||||
|
||||
|
||||
Final archived data: statistics on welding conditions and test results for selected items,and we can export the the statistical results.
|
||||
|
||||
|
||||
现场管道焊接管理
|
||||
On-site pipeline welding management
|
||||
进入现场管道焊接:首页也分为六个部分(都是所选项目的数据):焊接工作量、拍片工作量、点口未委托焊口,委托未检测的焊口、检测未审核的焊口、返修未委托的焊口。
|
||||
Access to on-site pipe welding: the home page is divided into six sections (all the data from the selected project): welding workload, filming workload, spot ports without delegated welds, delegated welds without testing, tested welds without audit, reworked welds without delegated welds.
|
||||
|
||||
|
||||
|
||||
焊接管理:
|
||||
管线信息,有增加、删除、修改,查询等功能,也可导入(在通用导入模块),根据用户需要设置要显示的列。
|
||||
1、Welding management.
|
||||
(1) Pipeline information, with functions such as adding, deleting, modifying, querying, etc. It can also be imported (in the general import module) and the columns to be displayed can be set according to user needs.
|
||||
列表页面
|
||||
List page
|
||||
|
||||
|
||||
编辑页面:这里根据管道等级可设置组批条件(默认根据管道等级条件设置带出)
|
||||
Edit page: Here you can set the group batch conditions according to the pipeline class (the default setting is to bring out according to the pipeline class conditions)
|
||||
|
||||
|
||||
焊口信息设置:有增加、批量增加,删除、修改,导出、查询等功能,用户可根据需求选择要显示的列,也可导入(在通用导入模块),根据用户需要显示用户关心的信息,打印焊接工作记录,根据条件查询所需信息。说明:批量增加的焊口信息一至,如有不一至可到编辑页面修改。
|
||||
(2) weld port information setting: there are functions of adding, batch adding, deleting, modifying, exporting, querying, etc. Users can select the columns to be displayed according to their needs, or import (in the general import module), display the information users care about according to their needs, print the welding work records, and query the required information according to the conditions. Note: The information of the weld port added in batch is one to one, if it is some error, you can go to the edit page to modify it.
|
||||
|
||||
|
||||
编辑页面:
|
||||
Edit page.
|
||||
|
||||
|
||||
选择要显示的列
|
||||
Select the columns to be displayed
|
||||
|
||||
|
||||
焊接记录上交:显示当前月份的焊接日报,也可查询所有月份的日报,有增加、删除、修改功能,根据焊工资质系统自动判断有没有焊接资质并给于提示,根据单位加载日报信息,展开显示日报明细信息 注意:日报的焊口如已检测则不能删除。
|
||||
日报提交会根据设置的组批条件自动组批。
|
||||
(3) welding records submitted: display the current month's welding daily, you can also query all the months of the daily, there are functions to add, delete, modify, according to the welder qualification system automatically determine whether there is a welding qualification and give a warning, according to the unit load daily information, expand the display of the daily detailed information Note: the daily report of the weld port if it has been detected can not be deleted.
|
||||
Daily report submission will automatically group batch according to the set group batch conditions.
|
||||
|
||||
|
||||
|
||||
|
||||
录入日报时根据选择的单位装置查找所有未焊的焊口(范围逐渐缩小),提交时要录入日报编号。列表里信息可进行编辑。提交后对应焊口信息也改变。
|
||||
When entering a daily report, find all unweld weld ports according to the selected unit device (the range is gradually reduced), and enter the daily report number when submitting. The information in the list can be edited. After submission, the corresponding weld port information changes.
|
||||
|
||||
|
||||
|
||||
|
||||
选择所焊的口并选择焊工后提交。
|
||||
Select the weld port and select the welder and submit.
|
||||
|
||||
|
||||
|
||||
2. NDE管理
|
||||
2. NDE Management
|
||||
点口管理:也是焊接记录上交时即生成检验批:根据单位、装置、焊缝类型、探伤类型、探伤比例、介质、材质、焊工等条件组批,包括批手动点口关闭(当批超过一定时间,如半个月,还未关闭,这时可手动点口关闭),打开重新点口(当批中自动点的口不能满足检测要求时可打开重新点口),手动结束批(当批点口关闭后这是批如还没结束时可手动结束批),重新选择扩口(当批中扩透口不能满足检测要求时可打开重新择扩口),生成(根据要求生成委托单),打印(委托单打印),点口单查询(可根据批的状态,委托的状态,焊工,月份等查询)等功能。
|
||||
颜色标记说明:批没有关闭:粉色,没有委托:深黄色,存在返修: 蓝色,当天批:红包
|
||||
(1) Welding poet management: also welding records are submitted that generate inspection batch: according to the unit, device, weld port type, flaw detection type, flaw detection ratio, medium, material, welders and other conditions group batch, including batch manual welding point closed (when the batch more than a certain period of time, such as half a month, has not been closed, this is when the Welding point can be closed manually ), open re-welding point (when the automatic welding point in the batch can not meet the testing requirements can be opened to re welding point), manually end the batch (when the batch welding point closed after this is the batch such as not yet closed when you can manually end the batch), re-select the expansion (when the batched
|
||||
Welding expansion port can not meet the detection requirements can be opened to re-select the expansion), generate (according to the requirements of the generation of commission orders), print (commission order printing), welding point single query (according to the state of the batch, the state of the commission, welders, months, etc. query) and other functions.
|
||||
Color marking instructions: batch is not closed: pink, no commission: dark yellow, the existence of rework: blue, the same day batch: red bag
|
||||
|
||||
|
||||
|
||||
无损委托单:即点口时生成委托单(按项目、单位、装置、区域、检测方法、管线来生成。委托单号生成规则:项目号-->单位号-->检测方法-->区域编号(WBS号)-->流水号-->扩口或返修口标记(正常的不用标记)),有查看、打印等功能,左边树可按月份、委托单号来查询。
|
||||
(3) non-destructive commissioning orders: that is, the welding point when generating commissioning orders (generated by project, unit, device, region, testing method, pipeline. Commissioning order number generation rules: project number --> unit number --> testing method --> area number (WBS number) --> flow number --> flare or rework port mark (normal without mark)), there are functions such as viewing, printing, etc., the left tree can be queried by month, commissioning order number.
|
||||
|
||||
列表页面如下图:
|
||||
The list page is as follow picture.
|
||||
|
||||
|
||||
|
||||
|
||||
检测单录入包括: 新增、导入、编辑、审核、删除等功能。左边树可按月份、检测单号来查询。
|
||||
(3) The test sheet entry includes: add, import, edit, review, delete and other functions. The tree on the left can be queried by month and test order number.
|
||||
|
||||
|
||||
|
||||
点击新增:可按单位、装置、探伤类型、管线号来查询还未检测的委托单。再点击要检测的委托单,则会加载委托单的明细,录入数据(探伤单号自动带出即委托单号)和必填字段探伤单号、探伤日期、检测单位等后保存。
|
||||
Click Add: You can query the commissioning orders that have not yet been tested by unit, device, inspection type, and pipeline number. Then click on the order to be tested, it will load the details of the order, enter the data (the inspection order number is automatically brought out that the order number) and required fields such as inspection order number, inspection date, inspection unit, etc. and save.
|
||||
|
||||
|
||||
|
||||
|
||||
检测单导入导入:先下载模板,录入检测结果,浏览选择文件后先审核数据,再导入。
|
||||
模板中红色标记的字段必填。注意:必须和无损委托单及其明细对应。
|
||||
Test sheet import: first download the template, enter the test results, browse the selection file and then review the data before importing.
|
||||
The fields marked in red in the template are required. Note: Must correspond to the nondestructive commission order and its details.
|
||||
|
||||
|
||||
|
||||
|
||||
点编辑页面:如委托单有的明细还未选择录入,或者录入后未审核,则可进行编辑修改。
|
||||
Click on the edit page: If there are details of the commission order that have not yet been selected for entry, or have not been reviewed after entry, you can edit and modify them.
|
||||
|
||||
|
||||
|
||||
点击审核:对录入的数据进行审核。审核后的数据做不能修改,删除等操作。审核后的数据也可取消审核。
|
||||
Click on Audit: The data entered is audited. The audited data cannot be modified, deleted, etc. The audited data can also be cancelled.
|
||||
|
||||
|
||||
如有返修则在其对应的批中自动点扩透口,这时返修口后加R1(一次返修),扩透口加K1
|
||||
也可重新选择扩透口。
|
||||
If there is a rework then the corresponding batch in its automatic point expansion port, then after the rework port plus R1 (a rework), expansion port plus K1
|
||||
You can also reselect the Expansion port
|
||||
|
||||
3.热处理/硬度管理
|
||||
1)热处理委托及数据录入:有新增、编辑、删除等功能。
|
||||
右键可录入热处理报告。可上传报告。
|
||||
3、Heat treatment / hardness management
|
||||
(1) Heat treatment commission and data entry: there are functions such as adding, editing and deleting.
|
||||
Right click to enter heat treatment report. You can upload the report.
|
||||
|
||||
|
||||
|
||||
热处理报告
|
||||
Heat Treatment Report
|
||||
|
||||
|
||||
|
||||
|
||||
点击新增:根据装置、单位查找需要热处理但还没有进行热处理的焊口,填写委托单号和日期保存即可。查找页面左边树可按管线号查询,列表页面分全部、已焊、未焊查找。如还没有进行硬度委托,则可对这个热处理委托单进行编辑和删除操作。
|
||||
Click Add: Search for welded joints that need heat treatment but have not been heat treated according to the device and unit, fill in the commission number and date to save. The left tree of the search page can be queried by pipe number, and the list page is divided into all, welded and unwelded search. If no hardness commissioning has been done, then you can edit and delete this heat treatment commissioning order.
|
||||
|
||||
|
||||
|
||||
|
||||
热处理反馈及硬度委托:勾选是否完成再保存,热处理委托完成可进行硬度委托。
|
||||
(2) Heat treatment feedback and hardness commission: check whether to complete and then save, heat treatment commissioning can be completed for hardness commissioning.
|
||||
|
||||
|
||||
|
||||
|
||||
3)硬度委托及数据录入: 有新增、编辑、删除等功能。
|
||||
点击硬度报告可录入报告内容和上传报告
|
||||
(3) Hardness commissioning and data entry: There are functions of adding, editing, deleting, etc.
|
||||
Click on hardness report to enter report content and upload report
|
||||
|
||||
|
||||
硬度报告录入
|
||||
Hardness report entry
|
||||
|
||||
|
||||
|
||||
点击新增:根据装置、单位查找热处理已完成的焊口,填写委托单号和委托日期等必填字段后保存即可。查找页面左边树可按管线号查询。
|
||||
Click Add: Search for heat treatment completed weld ports according to device and unit, fill in the required fields such as commission order number and commission date and save it. The tree on the left side of the search page can be queried by pipeline number.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
硬度检验结果反馈:勾选合格或不合格结果反馈再保存。
|
||||
(3)hardness test results feedback: check the qualified or unqualified results feedback and then save.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
4. 通用导入:主要是管线、焊口信息的导入,有审核提交,删除临时表数据,模板下载,导入说明等功能。
|
||||
1)下载模板:按模板字段录入内容,红色为必填项。
|
||||
4. General import: mainly the import of pipeline and weld port information, with functions such as audit submission, delete temporary table data, template download, import instructions, etc.
|
||||
(1) Download template: Enter the content according to the template fields, red is required.
|
||||
|
||||
|
||||
|
||||
|
||||
浏览数据-上传保存到临时表中
|
||||
Browse data - upload and save to temporary table
|
||||
|
||||
|
||||
|
||||
审核提交:数据审核后没问题的数据提交成功,有问题的数据将鼠标移到焊口片提示原因。
|
||||
Audit and submit: data audit after no problem data will be submitted successfully, there are problems with the data will be mouse over the weld port piece to prompt the reason.
|
||||
|
||||
|
||||
|
||||
可在焊口处点击修改,修改后再进行审核提交操作,注意:这里有个是否批量修改,如勾选则临时表数据中所有记录都修改,否则只修改当前记录。
|
||||
You can click modify at the weld port, modify and then review and submit the operation, note: there is a whether to modify in bulk, if checked then all records in the temporary table data are modified, otherwise only the current record is modified.
|
||||
|
||||
|
||||
|
||||
更新导入是一样的,这里不再说明
|
||||
The update import is the same and is not explained here
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
5.焊接报表:根据一定的条件分组统计用户所需要的,用列表或图形的形式呈现。数据可导出到Excel。
|
||||
如单位工区进度分析:按单位、装置、区域、钢材类型、日期为条件,按单位、装置、区域分组统计。以列表的形式呈现,
|
||||
5. Welding report: grouping statistics according to certain conditions as required by the user, presented in the form of a list or graph. The data can be exported to Excel.
|
||||
Such as unit work area progress analysis: group statistics by unit, device, area, steel type, date as conditions. Presented in the form of a list.
|
||||
|
||||
|
||||
如积压焊口:按单位、时间段、检测方法为条件来统计一段时间里的积压焊口,以列表和图表的形式呈现。
|
||||
Such as backlog of solder joints: count the backlog of solder joints over a period of time by unit, time period, and inspection method as a condition, and present it in the form of a list and chart.
|
||||
|
||||
|
||||
|
||||
所有焊接报表统计都是一样的操作,这里就不再一一说明了。
|
||||
All welding report statistics are the same operation, so we won't explain them here.
|
|
@ -1,391 +0,0 @@
|
|||
管道焊接管理操作说明
|
||||
Pipeline welding management operating instructions
|
||||
总体框架(综合平台):
|
||||
首页呈现:包括项目图片,焊工名次(查看明细),焊工工作量,拍片工作量,过期焊工提醒,承包商报表(查看明细)。
|
||||
I. General framework (comprehensive platform).
|
||||
Home page presentation: including project picture, welder name (view details), welder workload, filming workload, expired welder reminder, contractor report (view details).
|
||||
在综合平台的上方:公共信息,现场管道安装可自由切换,快捷菜单为预留功能以后可扩展。进入现场管道安装要先选择项目(选择好以后就默认),皮肤为本软件的呈现风格,动画为软件运行时加载大量数据时等待动画,
|
||||
最右边中英文切换的下拉选择。
|
||||
|
||||
|
||||
At the top of the integrated platform: public information, on-site pipe installation can be freely switched, and the shortcut menu is reserved for functions that can be expanded later. To enter the site pipeline installation to select the project first (after selecting the default), the skin for the presentation style of this software, animation for the software to run when loading a lot of data while waiting ,The rightmost drop-down selection is for switching between Chinese and English.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
选择项目
|
||||
|
||||
|
||||
说明:一个新项目开始,要按下面顺序进行操作。
|
||||
Note: A new project starts with the following sequence of operations.
|
||||
包括:基础设置:项目类型,项目信息,单位信息,焊工信息,首页定制等
|
||||
系统设置:角色管理,用户管理,修改密码,角色授权,日志管理等
|
||||
项目设置:项目的参与单位、参与用户,参与焊工,项目装置,系统环境变量,项目图片等。
|
||||
Including: Basic settings: project type, project information, unit information, welder information, home page customization, etc.
|
||||
System settings: role management, user management, password modification, role authorization, log management, etc.
|
||||
Project settings: project participating units, participating users, participating welders, project installations, system environment variables, project pictures, etc.
|
||||
|
||||
1.基础设置
|
||||
项目类型:主要是区分项目是大项目还是小项目,和焊工业绩统计施工进度和质量统计有关,有增加、删除、修改等功能
|
||||
1.Basic settings
|
||||
Project type: mainly to distinguish whether the project is a large project or a small project, and welder performance statistics construction progress and quality statistics, with functions such as adding, deleting and modifying
|
||||
|
||||
|
||||
项目信息:维护所有项目信息,有增加、删除、修改,查询等功能
|
||||
Project information: maintain all project information, with functions such as adding, deleting, modifying, and querying
|
||||
|
||||
|
||||
|
||||
单位信息:所有和项目有关的单位库,有增加、删除、修改、查询等功能,后面项目的参与单位就从这里选择。
|
||||
Unit information: a library of all units related to the project, with functions such as adding, deleting, modifying, querying, etc. The participating units of the later project are selected from here.
|
||||
|
||||
|
||||
|
||||
焊工信息:项目上所有焊工信息库,包括焊工焊接资质,焊工在所有项目上业
|
||||
绩,有增加、删除、修改、查询、导入等,说明:焊工资质和上交焊接记录有逻辑关系。后面项目上参与焊工就从这个焊工库中选择,"焊工号"自动生成。规则:小项目字母:A~J开头后跟3位流水数字;大项目字母K~Z开头后跟3位流水数字
|
||||
Welder Information: A database of all welders on the project, including welders' welding qualifications, welders' performance on all projects, with add, delete, modify, query, import, etc.
|
||||
Note: There is a logical relationship between welders' qualifications and submitted welding records. The welders involved in later projects are selected from this welders database and the "welders number" is automatically generated.
|
||||
Rules: small project letters: A ~ J beginning followed by 3 running numbers; large project letters K ~ Z beginning followed by 3 running numbers.
|
||||
|
||||
|
||||
|
||||
|
||||
焊工资质
|
||||
Welder qualifications
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
2.系统设置
|
||||
角色管理:操作系统的用户角色,每种角色权限也不一样,有增加、删除、修改、查询等功能。
|
||||
2. System settings
|
||||
Role management: user roles of the operating system, each role has different permissions, with functions such as adding, deleting, modifying and querying.
|
||||
|
||||
|
||||
|
||||
角色授权:用户根据角色设置权限,用来操作具有权限的模块(设置到按钮权限)
|
||||
Role authorization: users set permissions according to their roles, which are used to operate modules with permissions (set to button permissions)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
用户管理和密码修改:所有登陆系统的用户的管理包括增加、删除、修改、查询等功能,用户能修改自己的密码,管理员能重置所有用户的密码。后面项目上参与用户就从中选择。
|
||||
说明:用户可具有多种角色。
|
||||
User management and password modification: The management of all users logged into the system includes the functions of adding, deleting, modifying and querying, users are able to modify their own passwords, and administrators are able to reset the passwords of all users.The participating users on the later project then choose from it.Note: Users can have multiple roles.
|
||||
|
||||
|
||||
|
||||
日志管理:记录用户对软件进行的操作,不能删除。
|
||||
Log management: Record the operations performed by users on the software, which cannot be deleted.
|
||||
|
||||
|
||||
|
||||
|
||||
3.项目设置
|
||||
项目的参与单位,参与用户,参与焊工都属于项目上的信息设置,设置参与该项目的单位、用户、焊工。如下图:参与单位:先从单位库选择参与单位,再双击可编辑参与单位的组织机构和班组信息,用户和焊工与单位设置一样,不再说明。
|
||||
3. Project settings
|
||||
The project's participating units, participating users, participating welders are all part of the project information settings, set the participating units, users, welders on the project.
|
||||
The image below: Participating units: first select the participating units from the unit library, then double-click to edit the organizational structure and shift information of the participating units, users and welders are the same as the unit settings, we will have no further explanation.
|
||||
|
||||
|
||||
选择单位:
|
||||
Select units.
|
||||
|
||||
|
||||
双击编辑单位信息和班组
|
||||
Double click to edit unit information and shift groups
|
||||
|
||||
|
||||
|
||||
项目上参与用户的选择并在这里分配角色,用户根据自己的角色来操作分配给他的任务。
|
||||
TSelection of participating users on the project and assignment of roles here, and the users will operate the tasks assigned to them according to their roles.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
项目焊工:根据参与项目的单位来选择参与的焊工。
|
||||
Project Welders: Welders involved are selected based on the units involved in the project.
|
||||
|
||||
|
||||
|
||||
项目装置:先进行装置的设置,再点击区域设置进行工作区的设置。项目装置和区域设置都具有增加、删除、修改、查询等功能
|
||||
Project device: first set up the device, and then click on the area setting to set up the work area. Both project devices and area settings have functions such as adding, deleting, modifying, and querying
|
||||
|
||||
|
||||
|
||||
环境变量设置:对一些项目可能有一些有别与其它项目的特殊要求,可在这里设置,我们暂未用到,不再说明
|
||||
Environment variable setting: Some projects may have some special requirements that are different from other projects, which can be set here, we have not used it yet, so we will not explain it here.
|
||||
|
||||
|
||||
项目图片设置:上传和项目相关的图片,首页滚动显示设置为显示的最近的5张图片。
|
||||
项目图片设置具有增加、删除、修改、等功能。
|
||||
Project picture setting: upload pictures related to the project, and the scrolling display of the home page is set to the 5 most recent pictures displayed.
|
||||
Project image setting has the functions of adding, deleting, modifying, etc.
|
||||
|
||||
|
||||
公共信息:主要包括通用的基础信息,焊接工艺评定查询,文件控制,过程控制资料。
|
||||
public information: mainly includes general basic information, welding craft evaluation query, document control, process control documents.
|
||||
基础信息:焊接耗材,探伤类型,探伤比例,焊缝类型,管道等级,安装组件,焊接方法,坡口类型,材质定义,介质定义,直径寸径对照表,缺陷性质等。
|
||||
1.Basic information: welding consumables, flaw detection type, flaw detection ratio, weld type, pipe grade, installation components, welding method, bevel type, material definition, media definition, diameter inch diameter comparison table, defect nature, etc.
|
||||
举例说明其中之一,其它不再说明。如下图探伤类型的维护操作:点击增加,录入数据点提交即可完成。选中记录项点击即可删除,如提交即完成修改。如后面管理焊口信息中业务用到则删除不了。
|
||||
说明:基础信息都是后面焊接现场管理的一些统一标准,在进行管线设置、焊口信息设置等会大量用到,所以要事先进行维护。
|
||||
One of the examples is given, and the others are not explained here.
|
||||
The following image shows the maintenance operation of the probing type: click to add, enter the data point to submit to complete. Selected record items can be deleted by clicking, do submission and complete the modification. If the later management of welding port information used in the business, it can not be deleted.
|
||||
Note: The basic information is the unified standards behind the welding site management , in the pipeline settings, weld port information settings, etc. will be used a lot, so we should maintain in advance.
|
||||
|
||||
|
||||
|
||||
|
||||
这里重点说下管道等级的设置,管道等级录入好后要进行条件设置,在进行管线信息的设置时选择管道等级,则相应的组批条件会带出来。
|
||||
Here we focus on the setting of the pipeline grade, after the pipeline grade is entered to set the conditions, select the pipeline grade when setting the pipeline information, then the corresponding group batch conditions will be automatically brought out.
|
||||
|
||||
|
||||
管道等级的条件设置
|
||||
Condition setting for pipeline grade
|
||||
|
||||
|
||||
|
||||
焊接工艺评定:根据焊口的参数而采用什么焊接工艺评定提供相应的参考,有增加、删除、修改、查询,导入,导出等功能。
|
||||
2. Welding process evaluation: According to the parameters of the weld port and what welding process evaluation to provide the corresponding reference, there are functions to add, delete, modify, query, import, export, etc.
|
||||
|
||||
|
||||
|
||||
3.文档控制:可维护和上传国内外焊接管理的一些法律法规和标准规范,便于项目上参考和查看,有增加、删除、修改、查询等功能,这里不再说明。
|
||||
3. Document control: You can maintain and upload some laws and regulations and standard specifications for welding management at home and abroad, for easy reference and viewing on the project, with functions such as adding, deleting, modifying and querying, which we will not explain here.
|
||||
|
||||
|
||||
4.过程控制资料:包括焊接数据统计(日、周、月),施工单位焊接统计,焊接质量月统计报表,焊工名次,项目焊接质量状态,最终存档数据。
|
||||
4. Process control information: including welding data statistics (daily, weekly, monthly), construction unit welding statistics, welding quality monthly statistical reports, welders' names, project welding quality status, and final archived data.
|
||||
焊接数据统计(日、周、月):根据起始时间进行分项目进行统计,并可导出统计结果。
|
||||
Welding data statistics (daily, weekly, monthly): statistics by project according to the start and end time, and can export statistical results.
|
||||
|
||||
|
||||
施工单位焊接统计:根据项目类型和起始时间分单位进行统计,并可导出统计结果。
|
||||
|
||||
Construction unit welding statistics: statistics by unit according to project type and start time, and we can export the statistics.
|
||||
|
||||
焊接质量月统计报表:根据项目和年份分月进行统计,并可导出统计结果。
|
||||
|
||||
|
||||
|
||||
焊工名次:根据项目类型和年份分焊工进行统计,并可导出统计结果。
|
||||
Welder ranking: statistics according to project type and year by welder, and we can export statistics.
|
||||
|
||||
|
||||
项目焊接质量状态:根据起始时间(周)进行分总的和周来进行统计,并可导出统计结果。
|
||||
Project welding quality status: statistics by total and week according to start and end time (weeks) and we can export the the statistical results.
|
||||
|
||||
|
||||
|
||||
Final archived data: statistics on welding conditions and test results for selected items,and we can export the the statistical results.
|
||||
|
||||
|
||||
现场管道焊接管理
|
||||
On-site pipeline welding management
|
||||
进入现场管道焊接:首页也分为六个部分(都是所选项目的数据):焊接工作量、拍片工作量、点口未委托焊口,委托未检测的焊口、检测未审核的焊口、返修未委托的焊口。
|
||||
Access to on-site pipe welding: the home page is divided into six sections (all the data from the selected project): welding workload, filming workload, spot ports without delegated welds, delegated welds without testing, tested welds without audit, reworked welds without delegated welds.
|
||||
|
||||
|
||||
|
||||
焊接管理:
|
||||
管线信息,有增加、删除、修改,查询等功能,也可导入(在通用导入模块),根据用户需要设置要显示的列。
|
||||
1、Welding management.
|
||||
(1) Pipeline information, with functions such as adding, deleting, modifying, querying, etc. It can also be imported (in the general import module) and the columns to be displayed can be set according to user needs.
|
||||
列表页面
|
||||
List page
|
||||
|
||||
|
||||
编辑页面:这里根据管道等级可设置组批条件(默认根据管道等级条件设置带出)
|
||||
Edit page: Here you can set the group batch conditions according to the pipeline class (the default setting is to bring out according to the pipeline class conditions)
|
||||
|
||||
|
||||
焊口信息设置:有增加、批量增加,删除、修改,导出、查询等功能,用户可根据需求选择要显示的列,也可导入(在通用导入模块),根据用户需要显示用户关心的信息,打印焊接工作记录,根据条件查询所需信息。说明:批量增加的焊口信息一至,如有不一至可到编辑页面修改。
|
||||
(2) weld port information setting: there are functions of adding, batch adding, deleting, modifying, exporting, querying, etc. Users can select the columns to be displayed according to their needs, or import (in the general import module), display the information users care about according to their needs, print the welding work records, and query the required information according to the conditions. Note: The information of the weld port added in batch is one to one, if it is some error, you can go to the edit page to modify it.
|
||||
|
||||
|
||||
编辑页面:
|
||||
Edit page.
|
||||
|
||||
|
||||
选择要显示的列
|
||||
Select the columns to be displayed
|
||||
|
||||
|
||||
焊接记录上交:显示当前月份的焊接日报,也可查询所有月份的日报,有增加、删除、修改功能,根据焊工资质系统自动判断有没有焊接资质并给于提示,根据单位加载日报信息,展开显示日报明细信息 注意:日报的焊口如已检测则不能删除。
|
||||
日报提交会根据设置的组批条件自动组批。
|
||||
(3) welding records submitted: display the current month's welding daily, you can also query all the months of the daily, there are functions to add, delete, modify, according to the welder qualification system automatically determine whether there is a welding qualification and give a warning, according to the unit load daily information, expand the display of the daily detailed information Note: the daily report of the weld port if it has been detected can not be deleted.
|
||||
Daily report submission will automatically group batch according to the set group batch conditions.
|
||||
|
||||
|
||||
|
||||
|
||||
录入日报时根据选择的单位装置查找所有未焊的焊口(范围逐渐缩小),提交时要录入日报编号。列表里信息可进行编辑。提交后对应焊口信息也改变。
|
||||
When entering a daily report, find all unweld weld ports according to the selected unit device (the range is gradually reduced), and enter the daily report number when submitting. The information in the list can be edited. After submission, the corresponding weld port information changes.
|
||||
|
||||
|
||||
|
||||
|
||||
选择所焊的口并选择焊工后提交。
|
||||
Select the weld port and select the welder and submit.
|
||||
|
||||
|
||||
|
||||
2. NDE管理
|
||||
2. NDE Management
|
||||
点口管理:也是焊接记录上交时即生成检验批:根据单位、装置、焊缝类型、探伤类型、探伤比例、介质、材质、焊工等条件组批,包括批手动点口关闭(当批超过一定时间,如半个月,还未关闭,这时可手动点口关闭),打开重新点口(当批中自动点的口不能满足检测要求时可打开重新点口),手动结束批(当批点口关闭后这是批如还没结束时可手动结束批),重新选择扩口(当批中扩透口不能满足检测要求时可打开重新择扩口),生成(根据要求生成委托单),打印(委托单打印),点口单查询(可根据批的状态,委托的状态,焊工,月份等查询)等功能。
|
||||
颜色标记说明:批没有关闭:粉色,没有委托:深黄色,存在返修: 蓝色,当天批:红包
|
||||
(1) Welding poet management: also welding records are submitted that generate inspection batch: according to the unit, device, weld port type, flaw detection type, flaw detection ratio, medium, material, welders and other conditions group batch, including batch manual welding point closed (when the batch more than a certain period of time, such as half a month, has not been closed, this is when the Welding point can be closed manually ), open re-welding point (when the automatic welding point in the batch can not meet the testing requirements can be opened to re welding point), manually end the batch (when the batch welding point closed after this is the batch such as not yet closed when you can manually end the batch), re-select the expansion (when the batched
|
||||
Welding expansion port can not meet the detection requirements can be opened to re-select the expansion), generate (according to the requirements of the generation of commission orders), print (commission order printing), welding point single query (according to the state of the batch, the state of the commission, welders, months, etc. query) and other functions.
|
||||
Color marking instructions: batch is not closed: pink, no commission: dark yellow, the existence of rework: blue, the same day batch: red bag
|
||||
|
||||
|
||||
|
||||
无损委托单:即点口时生成委托单(按项目、单位、装置、区域、检测方法、管线来生成。委托单号生成规则:项目号-->单位号-->检测方法-->区域编号(WBS号)-->流水号-->扩口或返修口标记(正常的不用标记)),有查看、打印等功能,左边树可按月份、委托单号来查询。
|
||||
(3) non-destructive commissioning orders: that is, the welding point when generating commissioning orders (generated by project, unit, device, region, testing method, pipeline. Commissioning order number generation rules: project number --> unit number --> testing method --> area number (WBS number) --> flow number --> flare or rework port mark (normal without mark)), there are functions such as viewing, printing, etc., the left tree can be queried by month, commissioning order number.
|
||||
|
||||
列表页面如下图:
|
||||
The list page is as follow picture.
|
||||
|
||||
|
||||
|
||||
|
||||
检测单录入包括: 新增、导入、编辑、审核、删除等功能。左边树可按月份、检测单号来查询。
|
||||
(3) The test sheet entry includes: add, import, edit, review, delete and other functions. The tree on the left can be queried by month and test order number.
|
||||
|
||||
|
||||
|
||||
点击新增:可按单位、装置、探伤类型、管线号来查询还未检测的委托单。再点击要检测的委托单,则会加载委托单的明细,录入数据(探伤单号自动带出即委托单号)和必填字段探伤单号、探伤日期、检测单位等后保存。
|
||||
Click Add: You can query the commissioning orders that have not yet been tested by unit, device, inspection type, and pipeline number. Then click on the order to be tested, it will load the details of the order, enter the data (the inspection order number is automatically brought out that the order number) and required fields such as inspection order number, inspection date, inspection unit, etc. and save.
|
||||
|
||||
|
||||
|
||||
|
||||
检测单导入导入:先下载模板,录入检测结果,浏览选择文件后先审核数据,再导入。
|
||||
模板中红色标记的字段必填。注意:必须和无损委托单及其明细对应。
|
||||
Test sheet import: first download the template, enter the test results, browse the selection file and then review the data before importing.
|
||||
The fields marked in red in the template are required. Note: Must correspond to the nondestructive commission order and its details.
|
||||
|
||||
|
||||
|
||||
|
||||
点编辑页面:如委托单有的明细还未选择录入,或者录入后未审核,则可进行编辑修改。
|
||||
Click on the edit page: If there are details of the commission order that have not yet been selected for entry, or have not been reviewed after entry, you can edit and modify them.
|
||||
|
||||
|
||||
|
||||
点击审核:对录入的数据进行审核。审核后的数据做不能修改,删除等操作。审核后的数据也可取消审核。
|
||||
Click on Audit: The data entered is audited. The audited data cannot be modified, deleted, etc. The audited data can also be cancelled.
|
||||
|
||||
|
||||
如有返修则在其对应的批中自动点扩透口,这时返修口后加R1(一次返修),扩透口加K1
|
||||
也可重新选择扩透口。
|
||||
If there is a rework then the corresponding batch in its automatic point expansion port, then after the rework port plus R1 (a rework), expansion port plus K1
|
||||
You can also reselect the Expansion port
|
||||
|
||||
3.热处理/硬度管理
|
||||
1)热处理委托及数据录入:有新增、编辑、删除等功能。
|
||||
右键可录入热处理报告。可上传报告。
|
||||
3、Heat treatment / hardness management
|
||||
(1) Heat treatment commission and data entry: there are functions such as adding, editing and deleting.
|
||||
Right click to enter heat treatment report. You can upload the report.
|
||||
|
||||
|
||||
|
||||
热处理报告
|
||||
Heat Treatment Report
|
||||
|
||||
|
||||
|
||||
|
||||
点击新增:根据装置、单位查找需要热处理但还没有进行热处理的焊口,填写委托单号和日期保存即可。查找页面左边树可按管线号查询,列表页面分全部、已焊、未焊查找。如还没有进行硬度委托,则可对这个热处理委托单进行编辑和删除操作。
|
||||
Click Add: Search for welded joints that need heat treatment but have not been heat treated according to the device and unit, fill in the commission number and date to save. The left tree of the search page can be queried by pipe number, and the list page is divided into all, welded and unwelded search. If no hardness commissioning has been done, then you can edit and delete this heat treatment commissioning order.
|
||||
|
||||
|
||||
|
||||
|
||||
热处理反馈及硬度委托:勾选是否完成再保存,热处理委托完成可进行硬度委托。
|
||||
(2) Heat treatment feedback and hardness commission: check whether to complete and then save, heat treatment commissioning can be completed for hardness commissioning.
|
||||
|
||||
|
||||
|
||||
|
||||
3)硬度委托及数据录入: 有新增、编辑、删除等功能。
|
||||
点击硬度报告可录入报告内容和上传报告
|
||||
(3) Hardness commissioning and data entry: There are functions of adding, editing, deleting, etc.
|
||||
Click on hardness report to enter report content and upload report
|
||||
|
||||
|
||||
硬度报告录入
|
||||
Hardness report entry
|
||||
|
||||
|
||||
|
||||
点击新增:根据装置、单位查找热处理已完成的焊口,填写委托单号和委托日期等必填字段后保存即可。查找页面左边树可按管线号查询。
|
||||
Click Add: Search for heat treatment completed weld ports according to device and unit, fill in the required fields such as commission order number and commission date and save it. The tree on the left side of the search page can be queried by pipeline number.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
硬度检验结果反馈:勾选合格或不合格结果反馈再保存。
|
||||
(3)hardness test results feedback: check the qualified or unqualified results feedback and then save.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
4. 通用导入:主要是管线、焊口信息的导入,有审核提交,删除临时表数据,模板下载,导入说明等功能。
|
||||
1)下载模板:按模板字段录入内容,红色为必填项。
|
||||
4. General import: mainly the import of pipeline and weld port information, with functions such as audit submission, delete temporary table data, template download, import instructions, etc.
|
||||
(1) Download template: Enter the content according to the template fields, red is required.
|
||||
|
||||
|
||||
|
||||
|
||||
浏览数据-上传保存到临时表中
|
||||
Browse data - upload and save to temporary table
|
||||
|
||||
|
||||
|
||||
审核提交:数据审核后没问题的数据提交成功,有问题的数据将鼠标移到焊口片提示原因。
|
||||
Audit and submit: data audit after no problem data will be submitted successfully, there are problems with the data will be mouse over the weld port piece to prompt the reason.
|
||||
|
||||
|
||||
|
||||
可在焊口处点击修改,修改后再进行审核提交操作,注意:这里有个是否批量修改,如勾选则临时表数据中所有记录都修改,否则只修改当前记录。
|
||||
You can click modify at the weld port, modify and then review and submit the operation, note: there is a whether to modify in bulk, if checked then all records in the temporary table data are modified, otherwise only the current record is modified.
|
||||
|
||||
|
||||
|
||||
更新导入是一样的,这里不再说明
|
||||
The update import is the same and is not explained here
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
5.焊接报表:根据一定的条件分组统计用户所需要的,用列表或图形的形式呈现。数据可导出到Excel。
|
||||
如单位工区进度分析:按单位、装置、区域、钢材类型、日期为条件,按单位、装置、区域分组统计。以列表的形式呈现,
|
||||
5. Welding report: grouping statistics according to certain conditions as required by the user, presented in the form of a list or graph. The data can be exported to Excel.
|
||||
Such as unit work area progress analysis: group statistics by unit, device, area, steel type, date as conditions. Presented in the form of a list.
|
||||
|
||||
|
||||
如积压焊口:按单位、时间段、检测方法为条件来统计一段时间里的积压焊口,以列表和图表的形式呈现。
|
||||
Such as backlog of solder joints: count the backlog of solder joints over a period of time by unit, time period, and inspection method as a condition, and present it in the form of a list and chart.
|
||||
|
||||
|
||||
|
||||
所有焊接报表统计都是一样的操作,这里就不再一一说明了。
|
||||
All welding report statistics are the same operation, so we won't explain them here.
|
|
@ -1,391 +0,0 @@
|
|||
管道焊接管理操作说明
|
||||
Pipeline welding management operating instructions
|
||||
总体框架(综合平台):
|
||||
首页呈现:包括项目图片,焊工名次(查看明细),焊工工作量,拍片工作量,过期焊工提醒,承包商报表(查看明细)。
|
||||
I. General framework (comprehensive platform).
|
||||
Home page presentation: including project picture, welder name (view details), welder workload, filming workload, expired welder reminder, contractor report (view details).
|
||||
在综合平台的上方:公共信息,现场管道安装可自由切换,快捷菜单为预留功能以后可扩展。进入现场管道安装要先选择项目(选择好以后就默认),皮肤为本软件的呈现风格,动画为软件运行时加载大量数据时等待动画,
|
||||
最右边中英文切换的下拉选择。
|
||||
|
||||
|
||||
At the top of the integrated platform: public information, on-site pipe installation can be freely switched, and the shortcut menu is reserved for functions that can be expanded later. To enter the site pipeline installation to select the project first (after selecting the default), the skin for the presentation style of this software, animation for the software to run when loading a lot of data while waiting ,The rightmost drop-down selection is for switching between Chinese and English.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
选择项目
|
||||
|
||||
|
||||
说明:一个新项目开始,要按下面顺序进行操作。
|
||||
Note: A new project starts with the following sequence of operations.
|
||||
包括:基础设置:项目类型,项目信息,单位信息,焊工信息,首页定制等
|
||||
系统设置:角色管理,用户管理,修改密码,角色授权,日志管理等
|
||||
项目设置:项目的参与单位、参与用户,参与焊工,项目装置,系统环境变量,项目图片等。
|
||||
Including: Basic settings: project type, project information, unit information, welder information, home page customization, etc.
|
||||
System settings: role management, user management, password modification, role authorization, log management, etc.
|
||||
Project settings: project participating units, participating users, participating welders, project installations, system environment variables, project pictures, etc.
|
||||
|
||||
1.基础设置
|
||||
项目类型:主要是区分项目是大项目还是小项目,和焊工业绩统计施工进度和质量统计有关,有增加、删除、修改等功能
|
||||
1.Basic settings
|
||||
Project type: mainly to distinguish whether the project is a large project or a small project, and welder performance statistics construction progress and quality statistics, with functions such as adding, deleting and modifying
|
||||
|
||||
|
||||
项目信息:维护所有项目信息,有增加、删除、修改,查询等功能
|
||||
Project information: maintain all project information, with functions such as adding, deleting, modifying, and querying
|
||||
|
||||
|
||||
|
||||
单位信息:所有和项目有关的单位库,有增加、删除、修改、查询等功能,后面项目的参与单位就从这里选择。
|
||||
Unit information: a library of all units related to the project, with functions such as adding, deleting, modifying, querying, etc. The participating units of the later project are selected from here.
|
||||
|
||||
|
||||
|
||||
焊工信息:项目上所有焊工信息库,包括焊工焊接资质,焊工在所有项目上业
|
||||
绩,有增加、删除、修改、查询、导入等,说明:焊工资质和上交焊接记录有逻辑关系。后面项目上参与焊工就从这个焊工库中选择,"焊工号"自动生成。规则:小项目字母:A~J开头后跟3位流水数字;大项目字母K~Z开头后跟3位流水数字
|
||||
Welder Information: A database of all welders on the project, including welders' welding qualifications, welders' performance on all projects, with add, delete, modify, query, import, etc.
|
||||
Note: There is a logical relationship between welders' qualifications and submitted welding records. The welders involved in later projects are selected from this welders database and the "welders number" is automatically generated.
|
||||
Rules: small project letters: A ~ J beginning followed by 3 running numbers; large project letters K ~ Z beginning followed by 3 running numbers.
|
||||
|
||||
|
||||
|
||||
|
||||
焊工资质
|
||||
Welder qualifications
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
2.系统设置
|
||||
角色管理:操作系统的用户角色,每种角色权限也不一样,有增加、删除、修改、查询等功能。
|
||||
2. System settings
|
||||
Role management: user roles of the operating system, each role has different permissions, with functions such as adding, deleting, modifying and querying.
|
||||
|
||||
|
||||
|
||||
角色授权:用户根据角色设置权限,用来操作具有权限的模块(设置到按钮权限)
|
||||
Role authorization: users set permissions according to their roles, which are used to operate modules with permissions (set to button permissions)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
用户管理和密码修改:所有登陆系统的用户的管理包括增加、删除、修改、查询等功能,用户能修改自己的密码,管理员能重置所有用户的密码。后面项目上参与用户就从中选择。
|
||||
说明:用户可具有多种角色。
|
||||
User management and password modification: The management of all users logged into the system includes the functions of adding, deleting, modifying and querying, users are able to modify their own passwords, and administrators are able to reset the passwords of all users.The participating users on the later project then choose from it.Note: Users can have multiple roles.
|
||||
|
||||
|
||||
|
||||
日志管理:记录用户对软件进行的操作,不能删除。
|
||||
Log management: Record the operations performed by users on the software, which cannot be deleted.
|
||||
|
||||
|
||||
|
||||
|
||||
3.项目设置
|
||||
项目的参与单位,参与用户,参与焊工都属于项目上的信息设置,设置参与该项目的单位、用户、焊工。如下图:参与单位:先从单位库选择参与单位,再双击可编辑参与单位的组织机构和班组信息,用户和焊工与单位设置一样,不再说明。
|
||||
3. Project settings
|
||||
The project's participating units, participating users, participating welders are all part of the project information settings, set the participating units, users, welders on the project.
|
||||
The image below: Participating units: first select the participating units from the unit library, then double-click to edit the organizational structure and shift information of the participating units, users and welders are the same as the unit settings, we will have no further explanation.
|
||||
|
||||
|
||||
选择单位:
|
||||
Select units.
|
||||
|
||||
|
||||
双击编辑单位信息和班组
|
||||
Double click to edit unit information and shift groups
|
||||
|
||||
|
||||
|
||||
项目上参与用户的选择并在这里分配角色,用户根据自己的角色来操作分配给他的任务。
|
||||
TSelection of participating users on the project and assignment of roles here, and the users will operate the tasks assigned to them according to their roles.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
项目焊工:根据参与项目的单位来选择参与的焊工。
|
||||
Project Welders: Welders involved are selected based on the units involved in the project.
|
||||
|
||||
|
||||
|
||||
项目装置:先进行装置的设置,再点击区域设置进行工作区的设置。项目装置和区域设置都具有增加、删除、修改、查询等功能
|
||||
Project device: first set up the device, and then click on the area setting to set up the work area. Both project devices and area settings have functions such as adding, deleting, modifying, and querying
|
||||
|
||||
|
||||
|
||||
环境变量设置:对一些项目可能有一些有别与其它项目的特殊要求,可在这里设置,我们暂未用到,不再说明
|
||||
Environment variable setting: Some projects may have some special requirements that are different from other projects, which can be set here, we have not used it yet, so we will not explain it here.
|
||||
|
||||
|
||||
项目图片设置:上传和项目相关的图片,首页滚动显示设置为显示的最近的5张图片。
|
||||
项目图片设置具有增加、删除、修改、等功能。
|
||||
Project picture setting: upload pictures related to the project, and the scrolling display of the home page is set to the 5 most recent pictures displayed.
|
||||
Project image setting has the functions of adding, deleting, modifying, etc.
|
||||
|
||||
|
||||
公共信息:主要包括通用的基础信息,焊接工艺评定查询,文件控制,过程控制资料。
|
||||
public information: mainly includes general basic information, welding craft evaluation query, document control, process control documents.
|
||||
基础信息:焊接耗材,探伤类型,探伤比例,焊缝类型,管道等级,安装组件,焊接方法,坡口类型,材质定义,介质定义,直径寸径对照表,缺陷性质等。
|
||||
1.Basic information: welding consumables, flaw detection type, flaw detection ratio, weld type, pipe grade, installation components, welding method, bevel type, material definition, media definition, diameter inch diameter comparison table, defect nature, etc.
|
||||
举例说明其中之一,其它不再说明。如下图探伤类型的维护操作:点击增加,录入数据点提交即可完成。选中记录项点击即可删除,如提交即完成修改。如后面管理焊口信息中业务用到则删除不了。
|
||||
说明:基础信息都是后面焊接现场管理的一些统一标准,在进行管线设置、焊口信息设置等会大量用到,所以要事先进行维护。
|
||||
One of the examples is given, and the others are not explained here.
|
||||
The following image shows the maintenance operation of the probing type: click to add, enter the data point to submit to complete. Selected record items can be deleted by clicking, do submission and complete the modification. If the later management of welding port information used in the business, it can not be deleted.
|
||||
Note: The basic information is the unified standards behind the welding site management , in the pipeline settings, weld port information settings, etc. will be used a lot, so we should maintain in advance.
|
||||
|
||||
|
||||
|
||||
|
||||
这里重点说下管道等级的设置,管道等级录入好后要进行条件设置,在进行管线信息的设置时选择管道等级,则相应的组批条件会带出来。
|
||||
Here we focus on the setting of the pipeline grade, after the pipeline grade is entered to set the conditions, select the pipeline grade when setting the pipeline information, then the corresponding group batch conditions will be automatically brought out.
|
||||
|
||||
|
||||
管道等级的条件设置
|
||||
Condition setting for pipeline grade
|
||||
|
||||
|
||||
|
||||
焊接工艺评定:根据焊口的参数而采用什么焊接工艺评定提供相应的参考,有增加、删除、修改、查询,导入,导出等功能。
|
||||
2. Welding process evaluation: According to the parameters of the weld port and what welding process evaluation to provide the corresponding reference, there are functions to add, delete, modify, query, import, export, etc.
|
||||
|
||||
|
||||
|
||||
3.文档控制:可维护和上传国内外焊接管理的一些法律法规和标准规范,便于项目上参考和查看,有增加、删除、修改、查询等功能,这里不再说明。
|
||||
3. Document control: You can maintain and upload some laws and regulations and standard specifications for welding management at home and abroad, for easy reference and viewing on the project, with functions such as adding, deleting, modifying and querying, which we will not explain here.
|
||||
|
||||
|
||||
4.过程控制资料:包括焊接数据统计(日、周、月),施工单位焊接统计,焊接质量月统计报表,焊工名次,项目焊接质量状态,最终存档数据。
|
||||
4. Process control information: including welding data statistics (daily, weekly, monthly), construction unit welding statistics, welding quality monthly statistical reports, welders' names, project welding quality status, and final archived data.
|
||||
焊接数据统计(日、周、月):根据起始时间进行分项目进行统计,并可导出统计结果。
|
||||
Welding data statistics (daily, weekly, monthly): statistics by project according to the start and end time, and can export statistical results.
|
||||
|
||||
|
||||
施工单位焊接统计:根据项目类型和起始时间分单位进行统计,并可导出统计结果。
|
||||
|
||||
Construction unit welding statistics: statistics by unit according to project type and start time, and we can export the statistics.
|
||||
|
||||
焊接质量月统计报表:根据项目和年份分月进行统计,并可导出统计结果。
|
||||
|
||||
|
||||
|
||||
焊工名次:根据项目类型和年份分焊工进行统计,并可导出统计结果。
|
||||
Welder ranking: statistics according to project type and year by welder, and we can export statistics.
|
||||
|
||||
|
||||
项目焊接质量状态:根据起始时间(周)进行分总的和周来进行统计,并可导出统计结果。
|
||||
Project welding quality status: statistics by total and week according to start and end time (weeks) and we can export the the statistical results.
|
||||
|
||||
|
||||
|
||||
Final archived data: statistics on welding conditions and test results for selected items,and we can export the the statistical results.
|
||||
|
||||
|
||||
现场管道焊接管理
|
||||
On-site pipeline welding management
|
||||
进入现场管道焊接:首页也分为六个部分(都是所选项目的数据):焊接工作量、拍片工作量、点口未委托焊口,委托未检测的焊口、检测未审核的焊口、返修未委托的焊口。
|
||||
Access to on-site pipe welding: the home page is divided into six sections (all the data from the selected project): welding workload, filming workload, spot ports without delegated welds, delegated welds without testing, tested welds without audit, reworked welds without delegated welds.
|
||||
|
||||
|
||||
|
||||
焊接管理:
|
||||
管线信息,有增加、删除、修改,查询等功能,也可导入(在通用导入模块),根据用户需要设置要显示的列。
|
||||
1、Welding management.
|
||||
(1) Pipeline information, with functions such as adding, deleting, modifying, querying, etc. It can also be imported (in the general import module) and the columns to be displayed can be set according to user needs.
|
||||
列表页面
|
||||
List page
|
||||
|
||||
|
||||
编辑页面:这里根据管道等级可设置组批条件(默认根据管道等级条件设置带出)
|
||||
Edit page: Here you can set the group batch conditions according to the pipeline class (the default setting is to bring out according to the pipeline class conditions)
|
||||
|
||||
|
||||
焊口信息设置:有增加、批量增加,删除、修改,导出、查询等功能,用户可根据需求选择要显示的列,也可导入(在通用导入模块),根据用户需要显示用户关心的信息,打印焊接工作记录,根据条件查询所需信息。说明:批量增加的焊口信息一至,如有不一至可到编辑页面修改。
|
||||
(2) weld port information setting: there are functions of adding, batch adding, deleting, modifying, exporting, querying, etc. Users can select the columns to be displayed according to their needs, or import (in the general import module), display the information users care about according to their needs, print the welding work records, and query the required information according to the conditions. Note: The information of the weld port added in batch is one to one, if it is some error, you can go to the edit page to modify it.
|
||||
|
||||
|
||||
编辑页面:
|
||||
Edit page.
|
||||
|
||||
|
||||
选择要显示的列
|
||||
Select the columns to be displayed
|
||||
|
||||
|
||||
焊接记录上交:显示当前月份的焊接日报,也可查询所有月份的日报,有增加、删除、修改功能,根据焊工资质系统自动判断有没有焊接资质并给于提示,根据单位加载日报信息,展开显示日报明细信息 注意:日报的焊口如已检测则不能删除。
|
||||
日报提交会根据设置的组批条件自动组批。
|
||||
(3) welding records submitted: display the current month's welding daily, you can also query all the months of the daily, there are functions to add, delete, modify, according to the welder qualification system automatically determine whether there is a welding qualification and give a warning, according to the unit load daily information, expand the display of the daily detailed information Note: the daily report of the weld port if it has been detected can not be deleted.
|
||||
Daily report submission will automatically group batch according to the set group batch conditions.
|
||||
|
||||
|
||||
|
||||
|
||||
录入日报时根据选择的单位装置查找所有未焊的焊口(范围逐渐缩小),提交时要录入日报编号。列表里信息可进行编辑。提交后对应焊口信息也改变。
|
||||
When entering a daily report, find all unweld weld ports according to the selected unit device (the range is gradually reduced), and enter the daily report number when submitting. The information in the list can be edited. After submission, the corresponding weld port information changes.
|
||||
|
||||
|
||||
|
||||
|
||||
选择所焊的口并选择焊工后提交。
|
||||
Select the weld port and select the welder and submit.
|
||||
|
||||
|
||||
|
||||
2. NDE管理
|
||||
2. NDE Management
|
||||
点口管理:也是焊接记录上交时即生成检验批:根据单位、装置、焊缝类型、探伤类型、探伤比例、介质、材质、焊工等条件组批,包括批手动点口关闭(当批超过一定时间,如半个月,还未关闭,这时可手动点口关闭),打开重新点口(当批中自动点的口不能满足检测要求时可打开重新点口),手动结束批(当批点口关闭后这是批如还没结束时可手动结束批),重新选择扩口(当批中扩透口不能满足检测要求时可打开重新择扩口),生成(根据要求生成委托单),打印(委托单打印),点口单查询(可根据批的状态,委托的状态,焊工,月份等查询)等功能。
|
||||
颜色标记说明:批没有关闭:粉色,没有委托:深黄色,存在返修: 蓝色,当天批:红包
|
||||
(1) Welding poet management: also welding records are submitted that generate inspection batch: according to the unit, device, weld port type, flaw detection type, flaw detection ratio, medium, material, welders and other conditions group batch, including batch manual welding point closed (when the batch more than a certain period of time, such as half a month, has not been closed, this is when the Welding point can be closed manually ), open re-welding point (when the automatic welding point in the batch can not meet the testing requirements can be opened to re welding point), manually end the batch (when the batch welding point closed after this is the batch such as not yet closed when you can manually end the batch), re-select the expansion (when the batched
|
||||
Welding expansion port can not meet the detection requirements can be opened to re-select the expansion), generate (according to the requirements of the generation of commission orders), print (commission order printing), welding point single query (according to the state of the batch, the state of the commission, welders, months, etc. query) and other functions.
|
||||
Color marking instructions: batch is not closed: pink, no commission: dark yellow, the existence of rework: blue, the same day batch: red bag
|
||||
|
||||
|
||||
|
||||
无损委托单:即点口时生成委托单(按项目、单位、装置、区域、检测方法、管线来生成。委托单号生成规则:项目号-->单位号-->检测方法-->区域编号(WBS号)-->流水号-->扩口或返修口标记(正常的不用标记)),有查看、打印等功能,左边树可按月份、委托单号来查询。
|
||||
(3) non-destructive commissioning orders: that is, the welding point when generating commissioning orders (generated by project, unit, device, region, testing method, pipeline. Commissioning order number generation rules: project number --> unit number --> testing method --> area number (WBS number) --> flow number --> flare or rework port mark (normal without mark)), there are functions such as viewing, printing, etc., the left tree can be queried by month, commissioning order number.
|
||||
|
||||
列表页面如下图:
|
||||
The list page is as follow picture.
|
||||
|
||||
|
||||
|
||||
|
||||
检测单录入包括: 新增、导入、编辑、审核、删除等功能。左边树可按月份、检测单号来查询。
|
||||
(3) The test sheet entry includes: add, import, edit, review, delete and other functions. The tree on the left can be queried by month and test order number.
|
||||
|
||||
|
||||
|
||||
点击新增:可按单位、装置、探伤类型、管线号来查询还未检测的委托单。再点击要检测的委托单,则会加载委托单的明细,录入数据(探伤单号自动带出即委托单号)和必填字段探伤单号、探伤日期、检测单位等后保存。
|
||||
Click Add: You can query the commissioning orders that have not yet been tested by unit, device, inspection type, and pipeline number. Then click on the order to be tested, it will load the details of the order, enter the data (the inspection order number is automatically brought out that the order number) and required fields such as inspection order number, inspection date, inspection unit, etc. and save.
|
||||
|
||||
|
||||
|
||||
|
||||
检测单导入导入:先下载模板,录入检测结果,浏览选择文件后先审核数据,再导入。
|
||||
模板中红色标记的字段必填。注意:必须和无损委托单及其明细对应。
|
||||
Test sheet import: first download the template, enter the test results, browse the selection file and then review the data before importing.
|
||||
The fields marked in red in the template are required. Note: Must correspond to the nondestructive commission order and its details.
|
||||
|
||||
|
||||
|
||||
|
||||
点编辑页面:如委托单有的明细还未选择录入,或者录入后未审核,则可进行编辑修改。
|
||||
Click on the edit page: If there are details of the commission order that have not yet been selected for entry, or have not been reviewed after entry, you can edit and modify them.
|
||||
|
||||
|
||||
|
||||
点击审核:对录入的数据进行审核。审核后的数据做不能修改,删除等操作。审核后的数据也可取消审核。
|
||||
Click on Audit: The data entered is audited. The audited data cannot be modified, deleted, etc. The audited data can also be cancelled.
|
||||
|
||||
|
||||
如有返修则在其对应的批中自动点扩透口,这时返修口后加R1(一次返修),扩透口加K1
|
||||
也可重新选择扩透口。
|
||||
If there is a rework then the corresponding batch in its automatic point expansion port, then after the rework port plus R1 (a rework), expansion port plus K1
|
||||
You can also reselect the Expansion port
|
||||
|
||||
3.热处理/硬度管理
|
||||
1)热处理委托及数据录入:有新增、编辑、删除等功能。
|
||||
右键可录入热处理报告。可上传报告。
|
||||
3、Heat treatment / hardness management
|
||||
(1) Heat treatment commission and data entry: there are functions such as adding, editing and deleting.
|
||||
Right click to enter heat treatment report. You can upload the report.
|
||||
|
||||
|
||||
|
||||
热处理报告
|
||||
Heat Treatment Report
|
||||
|
||||
|
||||
|
||||
|
||||
点击新增:根据装置、单位查找需要热处理但还没有进行热处理的焊口,填写委托单号和日期保存即可。查找页面左边树可按管线号查询,列表页面分全部、已焊、未焊查找。如还没有进行硬度委托,则可对这个热处理委托单进行编辑和删除操作。
|
||||
Click Add: Search for welded joints that need heat treatment but have not been heat treated according to the device and unit, fill in the commission number and date to save. The left tree of the search page can be queried by pipe number, and the list page is divided into all, welded and unwelded search. If no hardness commissioning has been done, then you can edit and delete this heat treatment commissioning order.
|
||||
|
||||
|
||||
|
||||
|
||||
热处理反馈及硬度委托:勾选是否完成再保存,热处理委托完成可进行硬度委托。
|
||||
(2) Heat treatment feedback and hardness commission: check whether to complete and then save, heat treatment commissioning can be completed for hardness commissioning.
|
||||
|
||||
|
||||
|
||||
|
||||
3)硬度委托及数据录入: 有新增、编辑、删除等功能。
|
||||
点击硬度报告可录入报告内容和上传报告
|
||||
(3) Hardness commissioning and data entry: There are functions of adding, editing, deleting, etc.
|
||||
Click on hardness report to enter report content and upload report
|
||||
|
||||
|
||||
硬度报告录入
|
||||
Hardness report entry
|
||||
|
||||
|
||||
|
||||
点击新增:根据装置、单位查找热处理已完成的焊口,填写委托单号和委托日期等必填字段后保存即可。查找页面左边树可按管线号查询。
|
||||
Click Add: Search for heat treatment completed weld ports according to device and unit, fill in the required fields such as commission order number and commission date and save it. The tree on the left side of the search page can be queried by pipeline number.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
硬度检验结果反馈:勾选合格或不合格结果反馈再保存。
|
||||
(3)hardness test results feedback: check the qualified or unqualified results feedback and then save.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
4. 通用导入:主要是管线、焊口信息的导入,有审核提交,删除临时表数据,模板下载,导入说明等功能。
|
||||
1)下载模板:按模板字段录入内容,红色为必填项。
|
||||
4. General import: mainly the import of pipeline and weld port information, with functions such as audit submission, delete temporary table data, template download, import instructions, etc.
|
||||
(1) Download template: Enter the content according to the template fields, red is required.
|
||||
|
||||
|
||||
|
||||
|
||||
浏览数据-上传保存到临时表中
|
||||
Browse data - upload and save to temporary table
|
||||
|
||||
|
||||
|
||||
审核提交:数据审核后没问题的数据提交成功,有问题的数据将鼠标移到焊口片提示原因。
|
||||
Audit and submit: data audit after no problem data will be submitted successfully, there are problems with the data will be mouse over the weld port piece to prompt the reason.
|
||||
|
||||
|
||||
|
||||
可在焊口处点击修改,修改后再进行审核提交操作,注意:这里有个是否批量修改,如勾选则临时表数据中所有记录都修改,否则只修改当前记录。
|
||||
You can click modify at the weld port, modify and then review and submit the operation, note: there is a whether to modify in bulk, if checked then all records in the temporary table data are modified, otherwise only the current record is modified.
|
||||
|
||||
|
||||
|
||||
更新导入是一样的,这里不再说明
|
||||
The update import is the same and is not explained here
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
5.焊接报表:根据一定的条件分组统计用户所需要的,用列表或图形的形式呈现。数据可导出到Excel。
|
||||
如单位工区进度分析:按单位、装置、区域、钢材类型、日期为条件,按单位、装置、区域分组统计。以列表的形式呈现,
|
||||
5. Welding report: grouping statistics according to certain conditions as required by the user, presented in the form of a list or graph. The data can be exported to Excel.
|
||||
Such as unit work area progress analysis: group statistics by unit, device, area, steel type, date as conditions. Presented in the form of a list.
|
||||
|
||||
|
||||
如积压焊口:按单位、时间段、检测方法为条件来统计一段时间里的积压焊口,以列表和图表的形式呈现。
|
||||
Such as backlog of solder joints: count the backlog of solder joints over a period of time by unit, time period, and inspection method as a condition, and present it in the form of a list and chart.
|
||||
|
||||
|
||||
|
||||
所有焊接报表统计都是一样的操作,这里就不再一一说明了。
|
||||
All welding report statistics are the same operation, so we won't explain them here.
|
|
@ -16240,7 +16240,7 @@
|
|||
<DevelopmentServerPort>0</DevelopmentServerPort>
|
||||
<DevelopmentServerVPath>
|
||||
</DevelopmentServerVPath>
|
||||
<IISUrl>http://localhost:3345/</IISUrl>
|
||||
<IISUrl>http://localhost:9733/</IISUrl>
|
||||
<NTLMAuthentication>False</NTLMAuthentication>
|
||||
<UseCustomServer>False</UseCustomServer>
|
||||
<CustomServerUrl>
|
||||
|
|
|
@ -136,7 +136,7 @@
|
|||
Width="1400px" Height="650px">
|
||||
</f:Window>
|
||||
<f:Window ID="Window2" Title="项目情况" Hidden="true" EnableIFrame="true" EnableMaximize="true"
|
||||
Target="Self" EnableResize="true" runat="server" OnClose="Window1_Close" IsModal="true"
|
||||
Target="Self" EnableResize="true" runat="server" OnClose="Window1_Close" IsModal="true" Maximized="true"
|
||||
Width="1400px" Height="650px">
|
||||
</f:Window>
|
||||
<f:Menu ID="Menu1" runat="server">
|
||||
|
|
|
@ -1,15 +1,10 @@
|
|||
using System;
|
||||
using BLL;
|
||||
using Newtonsoft.Json.Linq;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Data;
|
||||
using System.Data.OleDb;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Web;
|
||||
using System.Web.UI;
|
||||
using System.Web.UI.WebControls;
|
||||
using BLL;
|
||||
using Newtonsoft.Json.Linq;
|
||||
|
||||
namespace FineUIPro.Web.JDGL.WBS
|
||||
{
|
||||
|
|
|
@ -1,10 +1,6 @@
|
|||
using BLL;
|
||||
using Microsoft.Office.Interop.Excel;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Web;
|
||||
using System.Web.UI;
|
||||
using System.Web.UI.WebControls;
|
||||
|
||||
namespace FineUIPro.Web.ZHGL.Environmental
|
||||
|
|
|
@ -62,6 +62,10 @@
|
|||
background-color: transparent;
|
||||
}
|
||||
|
||||
.f-widget-content {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
.header .layui-nav {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
|
@ -166,6 +170,7 @@
|
|||
.login-icon {
|
||||
|
||||
}
|
||||
|
||||
</style>
|
||||
</head>
|
||||
<body class="wrap" onresize="myFunction()">
|
||||
|
|
Binary file not shown.
Loading…
Reference in New Issue