纱线需求评估

通过此报告,可以确定已计划、已下达和正在运行的订单的纱线需求。

该评估可以确定所需的纱线总量以及每日所需的纱线量。

分组条件:

对于STOLL V7.0 及以上版本的M1plus 创建的编织程序的生产,这个评估功能可用。
这些编织程序必须在 M1plus Sintral 检验时完善纱线和纱线消耗信息。

调用参数

参数

型号

描述

time_interval

text

根据以下因素分组评估:

day
month
year

grouping_feature

text

根据以下因素分组评估:

machine_name
simple_pattern_name
pattern_name
production_id
customer_id
articlenumber

report_start

date

评估开始日期和时间

report_end

date

评估结束日期和时间

machine_ids

bigint[]

要进行评估的机器ID

示例 。 ARRAY[‘9528946’,’9355682’,’12466769’,’9545112’]

 

_article_numbers

text[]

要筛选的货品编号

示例: ARRAY['182736312']

_customer_ids

text[]

要筛选的客户编号

示例: ARRAY['DigitalKnit', 'KnitPerfect']

_production_ids

text[]

要筛选的生产编号

示例: ARRAY['MyProduction_0001', ' MyProduction_0204'']

_pattern_names

text[]

要筛选的花型名

示例: ARRAY['Blue_PJ.seqx', 'CMS530.2LouksEasyPatternB.zip']

返回表

型号

内容

time_group

text

所选数据分组时间

domain_group

text

所选数据其他分组

yarnid

text

纱线 ID

amount_of_yarn_in_kg

double

纱线数量,单位千克

代码示例sample_yarn_demand_grouped.sql

重要点:
此评估不使用数据库 skr,而是使用 pps 数据库,并且无需事先创建评估辅表。

select * from report.yarn_demand_grouped(

    'day'::text, --_time_interval, can be one of: day, month, year

    'pattern_name'::text, -- _grouping_feature, can be one of: 'machine_name', 'pattern_name', 'production_id','customer_id', 'articlenumber'

    '2020-01-08 12:00:00'::date, -- _report_begin,

    '2020-01-15 12:00:00'::date, -- _report_end,

    ARRAY[5021015, 5021005, 5021027]::bigint[], -- _machine_ids

    ARRAY[]::text[], -- _article_numbers

    ARRAY[]::text[], -- _customer_ids

    ARRAY[]::text[], -- _production_ids

    ARRAY['Blue_PJ.seqx', 'CMS530.2LouksEasyPatternB.zip']::text[] -- _pattern_names

);