添加新条目到缺片管理

借助 UDF skrpps_02.addd_defective_part_data(…),新条目可以添加到缺片管理中。

可以用一次性调用的方式添加多个条目。

参数

类型

描述

_iStateMode

smallint

操作:

  • 0 = 缺片已报告
  • 1 = 机器上的重编织订单
  • 2 = 重编织订单及工票

_iTicketUid

bigint

Ticket UID

_tT imeS

imestamp without time zone

条目的时间戳

_sUserName

text

添加条目的用户

_iSkrMcId

integer

SKR Maschine ID
may be == NULL if _sMcGuid != NULL

_sMcGuid

text

PPS Maschinen ID
may be == NULL if _iSkrMcId != NULL

_sComment

text

任何注释

_iFlags

integer

标志(可用于任何用途)

_sTicketProductionId

text

工票生产 ID

_sTicketProductionSub1Id

text

工票生产子 ID1

_sTicketProductionSub2Id

text

工票生产子 ID2

_sTicketArticleId

text

工票货品 ID

_sTicketCustomerId

text

工票客户 ID

_sSeqName

text

顺序

_asPatternName

text[]

花型名称

_aiPosInSeq

smallint[]

连续编织中的花型位置

_aiCount

integer[]

缺片数量
(如果是取消,也可能为< 0)

代码示例skrpps_02.add_defective_part_data (…)

select skrpps_02.add_defective_part_data

(

0::smallint – Action of missing fabric pieces

, 12345678 -- Ticket UID

, now()::timestamp without time zone – Time and date of the message

, 'armes_wuerstchen'-- User

, NULL -- SKR Machine ID (*1)

,'42.43.44.45.46' -- PPS Machine ID

,'BlaBla...' – any desired comment

,42 -- any desired flags

,'Prod_Id-1321' -- Ticket Production ID

,'sub_1-32' -- Ticket Production Sub1 ID

,'sub_2_53425' -- Ticket Production Sub2 ID

,'artId-322143' -- Ticket Item ID

,'CustomerId-4343' -- Ticket Customer ID

,'My-Seq' -- Sequence

,ARRAY['Pattern1','Pattern2','PatternX'] – pattern name

,ARRAY[1::smallint,2::smallint,5::smallint] – Positions of the pattern within the sequence

,ARRAY[20,11,2] – Quantity of missing fabric pieces

);

数组的内容包括以下含义:

“skrpps_02.v_defective_parts”的代码示例

任务