Custom Query (1133 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (7 - 9 of 1133)

1 2 3 4 5 6 7 8 9 10 11 12 13
Ticket Resolution Summary Owner Reporter
#1258 invalid При поиске по S/N сразу показывать историю Denis_N alx
Description

Сейчас (r342/base) при поиске по S/N отображается таблица найденных изделий. Но, так как поиск ведется по точному совпадению, а серийный номера уникальны, в таблице может быть только ноль или одна строка.

Я не вижу большого смысла отображать результат поиска в виде таблицы из одной строки - там очень мало полезной информации. Предлагаю при непустом результате поиска сразу отображать историю найденного изделия (как если бы в таблице кликнули серийный номер).

#1256 fixed Баг в и-се "Несоответствия". Необходимо заменить процедуру mismatchQuery san Denis_N
Description

Не загружает данные таблицы когда снята галочка "Показывать только несоответствия"

drop procedure mismatchQuery;

DELIMITER $$

CREATE PROCEDURE `mismatchQuery` (`min` INT, `max` INT, `searchName` VARCHAR(100), `searchSerial` VARCHAR(100), `searchComment` VARCHAR(10000))
BEGIN
set @prevtotal := 0;
set @mintotal := 0;
select * from (select *, @mintotal as mintotal, @prevtotal := @mintotal - total as prevtotal from
(select products.serial, history.uid, history.date, hist1.total from history inner join
(select uid, count(uid) as total from history where ((find_in_set ('mismatch', `history`.`type_write`) and (`history`.`status` is null or `history`.`status` = 'fail'))
    or (find_in_set ('mismatch', `history`.`type_write`) and `history`.`status` = 'ok' and `history`.bond is null)) and comment is not null and  comment != '' group by uid) as hist1 on history.uid = hist1.uid
inner join products on products.uid = history.uid where (products.name like searchName
and products.serial like searchSerial and history.comment like searchComment) and (history.uid, history.date) in
(select uid, max(date) from history where ((find_in_set ('mismatch', `history`.`type_write`) and (`history`.`status` is null or `history`.`status` = 'fail'))
    or (find_in_set ('mismatch', `history`.`type_write`) and `history`.`status` = 'ok' and `history`.bond is null)) and history.comment like searchComment and comment is not null and comment != '' group by uid )
group by products.serial, history.uid, history.date, hist1.total order by history.date desc) as hist2
where (@mintotal := @minTotal + total)) as hust2 where hust2.mintotal > min and hust2.prevtotal < max;
END$$

DELIMITER ;
#1255 fixed Необходимо заменить процедуру в MYSQL для работы и-са "Несоответствия" в ревизии 240 Denis_N Denis_N
Description
drop procedure mismatchQuery;

DELIMITER $$

CREATE PROCEDURE `mismatchQuery` (`min` INT, `max` INT, `searchName` VARCHAR(100), `searchSerial` VARCHAR(100), `searchComment` VARCHAR(10000))
BEGIN
set @prevtotal := 0;
set @mintotal := 0;
select * from (select *  from
(select products.serial, history.uid, history.date, hist1.total from history inner join
(select uid, count(uid) as total from history where ((find_in_set ('mismatch', `history`.`type_write`) and (`history`.`status` is null or `history`.`status` = 'fail'))
    or (find_in_set ('mismatch', `history`.`type_write`) and `history`.`status` = 'ok' and `history`.bond is null)) and comment is not null and  comment != '' group by uid) as hist1 on history.uid = hist1.uid
inner join products on products.uid = history.uid where (products.name like searchName
and products.serial like searchSerial and history.comment like searchComment) and (history.uid, history.date) in
(select uid, max(date) from history where ((find_in_set ('mismatch', `history`.`type_write`) and (`history`.`status` is null or `history`.`status` = 'fail'))
    or (find_in_set ('mismatch', `history`.`type_write`) and `history`.`status` = 'ok' and `history`.bond is null)) and history.comment like searchComment and comment is not null and comment != '' group by uid )
group by products.serial, history.uid, history.date, hist1.total order by history.date desc) as hist2
where (@mintotal := @minTotal + total)) as hust2 where hust2.mintotal > min and hust2.prevtotal < max;
END$$

DELIMITER ;

Необходимо изменить adcproducts_tables.sql Также этот тикет связан с тикетом: https://trac.adc-line.ru/mc-04/ticket/1254#ticket.

1 2 3 4 5 6 7 8 9 10 11 12 13
Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.