Форум OlegON > Программы и оборудование для автоматизации торговли > Системы автоматизации торговли > Супермаг Плюс (Супермаг 2000)

Создание отчета с количеством дней отсутствия товара, в Супермаг+ : Супермаг Плюс (Супермаг 2000)

22.11.2024 4:12


18.04.2018 07:08
Цитата:
m1n1mal Функцию я ту пробовал, я тогда и пытался дополнить отчет. У меня к сожалению при использовании этой функции не все данные корректно возвращают значения. Например, параметр с "нулевым остатком" возвращал общее количество дней в периоде, кроме дней когда остаток был отрицательным.
А можете задачу свою приложить ? То, что сделали ?
18.04.2018 11:28
Да, конечно, отчет во вложении.
https://storage.olegon.ru/supermag/u...04/отчет БА.7z
(0Мб)

Количество дней с продажей, тот что с параметром "1", показывает верно, а вот с параметром "3", отсутствие, показывает к сожалению не верно.
18.04.2018 12:55
А можно скриншоты - фильтр задачи, результат исполнения, с параметром =3 и скрин ССР для карточки с неверным результатом расчёта ? Желательно в фильтре БА только один спорный артикул указать. У нас просто всё отрабатывает корректно.
18.04.2018 15:14
Фильтр


(0,03Мб)

Результат


(0,15Мб)

ССР


(0,06Мб)
18.04.2018 16:52
А можете код выполнить в SQL+ - что вернёт ?

код:
SQL код:
select nvl(sum(nvl(d.quantity, 0)) over (order by c.dat) + 4, 0) as quantity,
                nvl(sum(nvl(d.salequantity, 0)) over (partition by c.dat), 0) as salequantity
              from
                (select dd.createdat, sum(dd.quantity) as quantity, sum(dd.salequantity) as salequantity
                 from
                   (select d.createdat, sum(s.quantity) as quantity, 0 as salequantity
                    from supermag.smdocuments d, supermag.smspec s
                    where d.doctype = s.doctype and d.id = s.docid and s.article = '406338' and d.locationto = 2
                      and d.docstate >= 2 and d.createdat between trunc(to_date('09.04.2018','dd.mm.yyyy')) and trunc(to_date('18.04.2018','dd.mm.yyyy'))
                    group by d.createdat
                    union all
                    select d.createdat, sum(-s.quantity) as quantity, sum(decode(d.opcode, 1, -s.quantity, 0)) as salequantity
                    from supermag.smdocuments d, supermag.smspec s
                    where d.doctype = s.doctype and d.id = s.docid and s.article = '406338' and d.locationfrom = 2
                      and d.docstate >= 2 and d.createdat between trunc(to_date('09.04.2018','dd.mm.yyyy')) and trunc(to_date('18.04.2018','dd.mm.yyyy'))
                    group by d.createdat) dd
                 group by dd.createdat) d,
                (select dt.dat
                 from 
                   (select trunc(to_date('09.04.2018','dd.mm.yyyy')) - 1 + level as dat
                    from dual connect by level <= trunc(to_date('18.04.2018','dd.mm.yyyy')) - trunc(to_date('09.04.2018','dd.mm.yyyy')) + 1) dt) c
              where c.dat = d.createdat(+); 


только поменяв d.locationto = 2 и d.locationfrom = 2 на код выбранного места хранения и в строке over (order by c.dat) + 4 вместо 4 поставить остаток по этой карточке на конец дня 08.04.2018
18.04.2018 17:04
Возвращает такие же данные, как и в ССР.


(0,01Мб)
18.04.2018 17:16
А если функцию поменять (чуть модифицированная):

функция:
SQL код:
--Получить статистику по карточке товара
--входные параметры - дата начала периода, дата окончания периода, код места хранения, артикул, что хотим узнать.
--варианты что =
--1 - число дней, когда карточка продавалась
--2 - число дней, когда карточка не продавалась
--3 - число дней, когда остаток по карточке был равен нулю
--4 - число дней, когда остаток был не равен нулю
--5 - число дней, когда остаток был отрицательным.
--6 - число дней, когда остаток был положительным. 
--7 - число дней, когда карточка не продавалась и остаток по ней не был равен нулю.
--8 - суммарный остаток за все дни периода (для вычисления среднего остатка)
--9 - число дней, когда карточка не продавалась и остаток по ней был меньше или равен нули

CREATE OR REPLACE function SUPERMAG.Get_Card_Stat(ADateFrom in date, ADateTo in date, ALocID in supermag.smstorelocations.id%type,
  AArticle in supermag.smcard.article%type, AWhat in integer) return integer
is
  i integer;
  error_param_value exception;

  function SaleDaysCount(ADateFrom in date, ADateTo in date, ALocID in supermag.smstorelocations.id%type,
    AArticle in supermag.smcard.article%type) return integer is
    res integer := 0;
  begin
    select count(distinct d.createdat)
    into res
    from supermag.smdocuments d, supermag.smspec s
    where d.doctype in ('WO', 'CS') and d.opcode = 1 and d.docstate = 3
      and d.createdat between ADateFrom and ADateTo and d.locationfrom = ALocID
      and s.doctype = d.doctype and s.docid = d.id and s.article = AArticle;
    return(res);
  exception when no_data_found then
    return(0);
  end;
  function GetRemainsOnDate(AOnDate in date, ALocID in supermag.smstorelocations.id%type,
    AArticle in supermag.smcard.article%type) return number
  is
    res number;
  begin
    select nvl(sum(decode(nvl(d.locationto, 0), 0, -1, 1) * s.quantity), 0)
    into res
    from supermag.smdocuments d, supermag.smspec s
    where d.doctype in ('WI', 'WO', 'IW', 'CS', 'CR', 'PN', 'PE', 'PO')
      and d.docstate = 3 and d.createdat <= AOnDate
      and nvl(d.locationto, d.locationfrom) = ALocID
      and s.doctype = d.doctype and s.docid = d.id and s.article = AArticle;
    return(res);
  exception when no_data_found then
    return(0);
  end;
  function Calc(ADateFrom in date, ADateTo in date, ALocID in supermag.smstorelocations.id%type,
    AArticle in supermag.smcard.article%type, AWhat in integer) return integer
  is
    vRemains number := GetRemainsOnDate(trunc(ADateFrom)-1, ALocID, AArticle);
    res integer := 0;
  begin
    for c in (select nvl(sum(nvl(d.quantity, 0)) over (order by c.dat) + vRemains, 0) as quantity,
                nvl(sum(nvl(d.salequantity, 0)) over (partition by c.dat), 0) as salequantity
              from
                (select dd.createdat, sum(dd.quantity) as quantity, sum(dd.salequantity) as salequantity
                 from
                   (select d.createdat, sum(s.quantity) as quantity, 0 as salequantity
                    from supermag.smdocuments d, supermag.smspec s
                    where d.doctype = s.doctype and d.id = s.docid and s.article = AArticle and d.locationto = ALocID
                      and d.docstate >= 2 and d.createdat between ADateFrom and ADateTo
                    group by d.createdat
                    union all
                    select d.createdat, sum(-s.quantity) as quantity, sum(decode(d.opcode, 1, -s.quantity, 0)) as salequantity
                    from supermag.smdocuments d, supermag.smspec s
                    where d.doctype = s.doctype and d.id = s.docid and s.article = AArticle and d.locationfrom = ALocID
                      and d.docstate >= 2 and d.createdat between ADateFrom and ADateTo
                    group by d.createdat) dd
                 group by dd.createdat) d,
                (select dt.dat
                 from
                   (select ADateFrom - 1 + level as dat
                    from dual connect by level <= ADateTo - ADateFrom + 1) dt) c
              where c.dat = d.createdat(+)) loop
      if AWhat = 3 and c.quantity = 0 then -- число дней, когда остаток по карточке был равен нулю
        res := res + 1;
      elsif AWhat = 4 and c.quantity != 0 then -- число дней, когда остаток был не равен нулю
        res := res + 1;
      elsif AWhat = 5 and c.quantity < 0 then -- число дней, когда остаток был отрицательным
        res := res + 1;
      elsif AWhat = 6 and c.quantity > 0 then -- число дней, когда остаток был положительным
        res := res + 1;
      elsif AWhat = 8 and c.quantity > 0 then -- cумм. остаток, когда остаток был положительным (для расчета оборачиваемости)
        res := res + c.quantity;

      elsif AWhat = 7 and (c.salequantity = 0 and c.quantity !=0) then -- число дней, когда карточка не продавалась и остаток по ней не был равен нулю
        res := res + 1;
      elsif ((AWhat = 9) and (c.salequantity = 0 and c.quantity <= 0)) then -- число дней, когда карточка не продавалась и остаток по ней был меньше или равен нулю
        res := res + 1;
      end if;
    end loop;
    return(res);
  exception when no_data_found then
    return(99);
  end;

begin
  if AWhat = 1 then -- число дней, когда карточка продавалась
    return(SaleDaysCount(trunc(ADateFrom), trunc(ADateTo), ALocID, AArticle));
  elsif AWhat = 2 then -- число дней, когда карточка не продавалась
    return(trunc(ADateTo) - trunc(ADateFrom) + 1 - SaleDaysCount(trunc(ADateFrom), trunc(ADateTo), ALocID, AArticle));
  elsif AWhat between 3 and 9 then
    return(Calc(trunc(ADateFrom), trunc(ADateTo), ALocID, AArticle, AWhat));
  else
    raise_application_error(-20999, 'Параметр AWhat должен быть в диапазоне от 1 до 9.', true);
  end if;
end;
/  
commit; 


И попытаться напрямую через SQL+ запросить
SQL код:
select Get_Card_Stat(to_date('09.04.2018','dd.mm.yyyy'),to_date('18.04.2018','dd.mm.yyyy'),2,'406338',3) from dual; 
только вместо 2 поставить код места хранения.
18.04.2018 17:21
С новой функцией, результат работы возвращает значение "0".
18.04.2018 17:24
А если параметром указывать не 3 а различные другие варианты, типа: 1,2,3,4,5,6,7 ?
что возвращает ?
И - код места хранения кстати какой ?
18.04.2018 17:32
Код МХ=4
Результаты по разным параметрам ниже:
1 - возвращает 3
2 - возвращает 7
3 - возвращает 0
4 - возвращает 10
5 - возвращает 0
6 - возвращает 10
7 - возвращает 7
8 - возвращает 79
9 - возвращает 0

Может ему мешают отрицательные значения?
Часовой пояс GMT +3, время: 04:12.

Форум на базе vBulletin®
Copyright © Jelsoft Enterprises Ltd.
В случае заимствования информации гипертекстовая индексируемая ссылка на Форум обязательна.