21 lines
1.3 KiB
Transact-SQL
21 lines
1.3 KiB
Transact-SQL
-- Update vocabolario
|
|
|
|
exec voc.stp_insNewLemma 'Code', 'Code'
|
|
exec voc.stp_insNewLemma 'SecOp', 'SecOp'
|
|
exec voc.stp_insNewLemma 'RatioReadTot', '# Read / Tot'
|
|
exec voc.stp_insNewLemma 'CartSummary', 'Cart Summary'
|
|
exec voc.stp_insNewLemma 'Print', 'Print'
|
|
exec voc.stp_insNewLemma 'FilePrefixError', 'Error: wrong filename, must start with'
|
|
exec voc.stp_insNewLemma 'ModeCart', 'Mode: Invalidate ALL PART on CART'
|
|
exec voc.stp_insNewLemma 'ModePart', 'Mode: Invalidate PART by Code'
|
|
exec voc.stp_insNewLemma 'KS_ADV_CartNotFound', 'Error: Cart not found'
|
|
exec voc.stp_insNewLemma 'KS_ADV_CartAlreadyKitted', 'Error: Cart has already completed KITTING'
|
|
exec voc.stp_insNewLemma 'KS_ADV_CartNotKitting', 'Error: Cart is not on KITTING'
|
|
exec voc.stp_insNewLemma 'CofirmInvalidateFullCart', 'Are you sure to proceed? you will have to re-scan all PART on selected Cart!'
|
|
exec voc.stp_insNewLemma 'CofirmInvalidatePart', 'Are you sure to proceed? You will have to rescan all PART of same code on current Cart!'
|
|
exec voc.stp_insNewLemma 'KS_ADV_ItemNotFound', 'Error: PART not found'
|
|
exec voc.stp_insNewLemma 'KS_ADV_WrongMode', 'Error: Wrong Mode for data'
|
|
|
|
|
|
-- aggiunta config
|
|
INSERT INTO [dbo].[Config] ([chiave], [valore], [valoreStd], [note]) VALUES (N'offlineBasePath', N'y:\', N'y:\', N'Path di base per i file SVG vista da OFFLINE machine') |