npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

gnvls-parser

v1.0.1

Published

Преобразует данные из .xlsx с сайта

Downloads

3

Readme

Чтение реестра ЖНВЛС/ЖНВЛП

Скачать реестр можно тут:

mosgorzdrav.ru

Раздел АРХИВ

Требования к структуре документа: Структура была взята из документа Перечень предельных оптовых и розничных цен по состоянию на 26.04.2021

Настройка

{
    root: __dirname,
    source: 'source.xlsx',
    writeToFile: true,
} 

Где

  • root - корневая директория для работы с файлами
  • source - источник, xlsx скаченный
  • writeToFile - Записать в файл или вернуть в виде массива

Резултат выполнения

Структура исходного JSON файла

type SheetsName = 'Действующие' | 'Измененные' | 'Исключенные';
/**
 * Таблица из Экселя 
 */
interface SheetResult {
    name: SheetsName;
    file: string; 
    data: ReestrItem[];

    fn: (el, index) => ReestrItem;
}

interface ReestrItem {
            name: string,
            tnlp: string,
            form: string,
            owner: string,
            ath: string,
            pack: number,
            price: {
                product: number,
                gross?: number,
                retail?: number,
                grossWithoutNDS?: number,
                grossWithNDS?: number,
                retailWithoutNDS?: number,
                retailWithNDS?: number,
                retailWithUSN?: number,
                firstPack: boolean,

            },
            limit?: {
                gross: number,
                retail: number
            },
            reg: string,
            number: string,
            ean13: string,
            date: string
        }

| Параметр | Название | | ---------------------- | ------------------------------------------------------------------------ | | name | МНН | | tnlp | Торговое наименование лекарственного препарата | | form | Лекарственная форма, дозировка, упаковка (полная) | | owner | Владелец РУ/производитель/упаковщик/Выпускающий контроль | | ath | Код АТХ | | pack | Количество в потреб. упаковке | | price.product | Зарегистрированная предельная отпускная цена производителя, руб. без НДС | | price.gross | Предельная оптовая надбавка, руб.* | | price.retail | Предельная розничная надбавка, руб.* | | price.grossWithoutNDS | Предельная оптовая цена, руб., (без НДС)* | | price.grossWithNDS | Предельная оптовая цена руб., (с НДС)* | | price.retailWithoutNDS | Предельная розничная цена, руб. (без НДС)* | | price.retailWithNDS | Предельная розничная цена, руб. (с НДС)* | | price.retailWithUSN | Предельная розничная цена (при УСН) | | price.firstPack | Цена указана для первич. упаковки | | limit.gross | Предельная оптовая надбавка, % | | limit.retail | Предельная розничная надбавка, % | | reg | № РУ | | number | Дата регистрации цены (№ решения) | | ean13 | Штрих-код (EAN13) | | date | Дата вступления в силу |

* - предельные оптовые и розничные надбавки, предельные оптовые и розничные цены рассчитаны от зарегистрированной предельной отпускной цены производителя!

Вариант использования


const { Reader } = require("./Reader"); 

let reader = new Reader({
    root: __dirname,
    source: 'source.xlsx', 
});
reader.execute().then(arr => {
    console.log(arr);
});