This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"Ref_Key":"42f51718-ea39-43b2-88d4-c8a073862c0d","Комментарий":null,"БанковскийСчет_Key":"362a9495-7d5c-11ee-81d4-0cc47a9a9dcf","Контрагент_Key":"2c0c0d17-051c-11ee-81bb-0cc47a9a9dcf","Партнер_Key":"9c687bfb-7890-47e2-8df6-b3287533a495","Менеджер_Key":"7d48578f-d1f0-11ed-81b8-0cc47a9a9dcf","Автор":"7d48578f-d1f0-11ed-81b8-0cc47a9a9dcf","Автор_Type":"StandardODATA.Catalog_Пользователи","Склад_Key":"c2472c1d-7ccf-11e7-80d0-0cc47a9a9dcf","Соглашение_Key":"9a55e6f4-51e4-11e8-80e8-0cc47a9a9dcf","АдресДоставки":null,"НалогообложениеНДС":"ПродажаОблагаетсяНДС","Организация_Key":"2ed9e74f-c4a1-11ed-81b7-0cc47a9a9dcf","ЦенаВключаетНДС":true,"ГлавныйБухгалтер_Key":"3be9f2b0-c72c-11ed-81b7-0cc47a9a9dcf","Руководитель_Key":"19ca45e5-c72c-11ed-81b7-0cc47a9a9dcf","Статус":"КОбеспечению","Date":"2024-05-22T21:35:28+03:00","СуммаДокумента":"297460.0","Согласован":false,"Posted":false,"ДатаОтгрузки":"2024-05-22","ДатаСогласования":"2024-05-22","МаксимальныйКодСтроки":11,"Валюта_Key":"e858d07e-c49f-11ed-81b7-0cc47a9a9dcf","То |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as debug from "./debug"; | |
import { deviceDataLogger} from "../../../config/logger"; | |
export class Satlite { | |
PACKAGE_HEADER_SIZE: number = 10; | |
PACKAGE_DATA_HEADER_SIZE: number = 21; | |
PACKAGE_PREAMBLE_VALUE: number = 0x8A2C; | |
incomingRawData: Array<any> = []; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
develop@radiokey:/etc/pgbackrest$ sudo -u postgres pgbackrest --stanza=main stanza-create --log-level-console=debug | |
2023-04-04 16:46:29.240 P00 INFO: stanza-create command begin 2.18: --log-level-console=debug --log-level-file=detail --pg1-path=/var/lib/postgresql/10/main --repo1-cipher-pass=<redacted> --repo1-cipher-type=aes-256-cbc --repo1-path=/ --repo1-s3-bucket=7da688ab-radiokey --repo1-s3-endpoint=s3.timeweb.com --repo1-s3-key=<redacted> --repo1-s3-key-secret=<redacted> --repo1-s3-region=ru-1 --repo1-type=s3 --stanza=main | |
2023-04-04 16:46:29.240 P00 DEBUG: common/lock::lockAcquire: (lockPath: {"/tmp/pgbackrest"}, stanza: {"main"}, lockType: 2, lockTimeout: 0, failOnNoLock: true) | |
2023-04-04 16:46:29.240 P00 DEBUG: common/lock::lockAcquire: => true | |
2023-04-04 16:46:29.240 P00 DEBUG: config/load::cfgLoad: => void | |
2023-04-04 16:46:29.240 P00 DEBUG: command/stanza/create::cmdStanzaCreate: (void) | |
2023-04-04 16:46:29.240 P00 DEBUG: command/control/common::lockStopTest: (void) | |
2023-04 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PROBLEM - 1 | |
Loading composer repositories with package information | |
Updating dependencies (including require-dev) | |
Your requirements could not be resolved to an installable set of packages. | |
Problem 1 | |
- Installation request for ontology/ontology-php-sdk dev-master -> satisfiable by ontology/ontology-php-sdk[dev-master]. | |
- ontology/ontology-php-sdk dev-master requires ext-scrypt 1.4.2 -> the requested PHP extension scrypt is missing from your system. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
context 'send email when loaded' do | |
let(:params) { {ids: {'1': true, '2': true}} } | |
let(:resource) { create(:card_load, id: 1, loaded: false) } | |
let(:resource2) { create(:card_load, id: 2, loaded: false) } | |
it do | |
should enqueue_job(ActionMailer::DeliveryJob). | |
with('CardLoadMailer', 'loaded', any_args).exactly(:twice) | |
end | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
stdClass Object | |
( | |
[Id] => 30000014105 | |
[OpenDateTime] => 2018-09-04T13:39:07.000+02:00 | |
[CloseDateTime] => 2018-09-04T13:39:07.000+02:00 | |
[TranNumber] => 54348 | |
[TableNumber] => 105 | |
[TablePart] => a | |
[Covers] => 1 | |
[UserId] => 5000003011 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { PropTypes as Type} from 'react'; | |
import Loader from 'app/libs/components/Loader/Loader'; | |
import * as actionTypes from '../../constants/auth_constants'; | |
import Formsy from 'formsy-react'; | |
import Input from 'app/libs/components/FormsyComponents/input'; | |
import Checkbox from 'app/libs/components/FormsyComponents/checkbox'; | |
export default class LoginPopupForm extends React.Component { | |
static propTypes = { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Cooking.Views.CashPositions ||= {} | |
class Cooking.Views.CashPositions.IndexView extends Backbone.View | |
template: JST["backbone/templates/cash_positions/index"] | |
model: Cooking.Models.CashPosition | |
initialize: () -> | |
that = @ | |
@collection.bind 'reset', @buildAll |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Cooking.Views.CashPositions ||= {} | |
class Cooking.Views.CashPositions.CashPositionView extends Backbone.View | |
template: JST["backbone/templates/cash_positions/cash_position"] | |
initialize: () -> | |
@model.on('change:status', (cash_position) -> | |
Backbone.trigger 'CashPositionsIndex:cash_position:change', cash_position | |
, @) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module DeliveryFinOperableConcern | |
extend ActiveSupport::Concern | |
def self.included(base) | |
base.class_eval do | |
after_create :process_after_create | |
before_update :clear_to_fin_account_id | |
after_update :process_after_update | |
after_destroy :process_after_destroy |
NewerOlder