А чего о ней подробней то? учет суммовой.
Внешняя обработка в 1с, делает запрос (например таб поле товары для документа "ОтчетПроизводстваЗаСмену":
Код:
select /*+ FIRST_ROWS */ d.title Tovar,
case when substr(e.tree,1,instr(e.tree,'.',1,1))='40.' then '0040'
when substr(e.tree,1,instr(e.tree,'.',1,1))='42.' then '0042'
else '0001' end Gr,tax.taxgroupid TaxTovar,
sum(t.Quantity) TQuant,
sum(t.totalpricenotax) TSumNoTax
from supermag.smspec t, supermag.smcard b,supermag.saarticletypes d, supermag.sacardclass e, supermag.smcardtax tax, supermag.smdocuments dd
where t.docid=&idDoc
and t.doctype='PO'
and t.doctype=dd.doctype
and t.docid=dd.id
and t.Article=b.article
and b.datatype=d.id
and b.idclass=e.id
and t.Article=tax.article and tax.rgnid=-1
and (dd.createdat>=tax.datefrom and dd.createdat<tax.dateto)
group by d.title,
case when substr(e.tree,1,instr(e.tree,'.',1,1))='40.' then '0040'
when substr(e.tree,1,instr(e.tree,'.',1,1))='42.' then '0042'
else '0001' end, tax.taxgroupid
И в зависимости от НДС ищет номенклатуру и подставляет её.
Может все таки расскажите технологию написания запросов к супермагу?