Добавлен парсер для текстового формата Inspur (опциональный '|' в начале строки, разделитель '*' перед количеством). На BOM-вкладке вставка такого текста автоматически определяется и разбивается на колонки P/N + Qty без ручного выбора типов. На бэкенде тот же формат поддерживается через POST /api/projects/:uuid/vendor-import. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2.5 KiB
2.5 KiB
09 - Vendor BOM
Storage contract
Vendor BOM is stored in local_configurations.vendor_spec and synced with qt_configurations.vendor_spec.
Each row uses this canonical shape:
{
"sort_order": 10,
"vendor_partnumber": "ABC-123",
"quantity": 2,
"description": "row description",
"unit_price": 4500.0,
"total_price": 9000.0,
"lot_mappings": [
{ "lot_name": "LOT_A", "quantity_per_pn": 1 }
]
}
Rules:
lot_mappings[]is the only persisted PN -> LOT mapping contract;- QuoteForge does not use legacy BOM tables;
- apply flow rebuilds cart rows from
lot_mappings[].
Partnumber books
Partnumber books are pull-only snapshots from PriceForge.
Local tables:
local_partnumber_bookslocal_partnumber_book_items
Server tables:
qt_partnumber_booksqt_partnumber_book_items
Resolution flow:
- load the active local book;
- find
vendor_partnumber; - copy
lots_jsonintolot_mappings[]; - keep unresolved rows editable in the UI.
CFXML import
POST /api/projects/:uuid/vendor-import imports one vendor workspace into an existing project.
Rules:
- accepted file field is
file; - maximum file size is
1 GiB; - one
ProprietaryGroupIdentifierbecomes one QuoteForge configuration; - software rows stay inside their hardware group and never become standalone configurations;
- primary group row is selected structurally, without vendor-specific SKU hardcoding;
- imported configuration order follows workspace order.
Imported configuration fields:
namefrom primary rowProductNameserver_countfrom primary rowQuantityserver_modelfrom primary rowProductDescriptionarticleorsupport_codefromProprietaryProductIdentifier
Imported BOM rows become vendor_spec rows and are resolved through the active local partnumber book when possible.
Inspur BOM import
The same endpoint POST /api/projects/:uuid/vendor-import also accepts Inspur text BOM exports.
Format: one component per line, <partnumber>*<quantity>. A leading | character is optional and stripped. Trailing whitespace around * is normalised.
Example:
|CPU_AMD_9535-EPYC2.4_64C_256M_300W*1
|PowerSupply_1300W_Titanium_220VACor240VDC_GaN*2
Rules:
- the entire file becomes a single configuration (
server_count = 1); - configuration
nameis derived from the uploaded filename (without extension); - lines that do not contain
*<digits>are skipped; - no price data is present in the format;
unit_priceandtotal_priceare left nil.