3
3
3ds2011-01-14 20:03:37
PHP
3ds, 2011-01-14 20:03:37

1C8 -> php site?

How to get the nomenclature and prices for goods from 1C8 from PHP? What format is the database in? (In general, I haven’t met with 1C yet).
Is it really possible to do this at all?

Answer the question

In order to leave comments, you need to log in

6 answer(s)
E
eternals, 2011-01-14
@3ds

1. Real. But it is better to upload from 1C to the site.
2. It is better not to touch the database format for a number of reasons.
3. Yes, really. For example, in 1C-Bitrix it is unloaded from "1C: Trade Management". You can use this mechanism.
4. As a stupid, but simple option: 1C can upload data in xml to a directory periodically. You can read from there.

A
Andrew, 2011-01-15
@Morfi

SOAP

M
mobilez, 2011-01-23
@mobilz

It’s easier to use/hire a 1c developer who will send the necessary reports to the URL (by post or whatever you want), to FTP or wherever you need. We have dozens of links on our account, and each time either an office developer is taken, or a freelancer is hired, who sets up 1c in a couple of hours so that it uploads data to the site. At least in realtime.

W
wmw85, 2011-01-14
@wmw85

Didn't touch the base. They did it in the image and likeness of the exchange 1s with Bitrix. There is documentation for the exchange protocol (although not accurate, outdated in places). The exchange goes through 1s. xml are sent, how you parse them and what database to put them into is up to you.
There is a variant with direct requests in Baschu 1s. For the seven there was a tool that merges data from the database, paid.
Infa six months ago, if you need details or pieces of code - ask.

E
Evgeny Bezymyannikov, 2011-01-14
@psman

All exchanges with sites in 1C are done through CommerceXML (if you don’t reinvent the wheel) /
It’s inconvenient, there is no real time, it’s often 1C that initiates the exchange, not the site.

S
sladkoezhka, 2011-01-23
@sladkoezhka

That's how it's done for me. not optimal, but it works stably
Uploading 1C to a text format with a tab delimiter. perl script parses and loads into MYSQL

open(F1,"< $price_txt_dir/$data{txt_name}") || mydie('Can`t open in price file - price.txt');
while (<F1>) {
 s/[\r\n]//g;
 my @tmp = split("\t",$_,9);
 for (my $i=0;$i<scalar(@tmp);$i++) {
  $tmp[$i] =~ s/^\s+//g;
  $tmp[$i] =~ s/\s+$//g;
 }

#далее уже работа с базой

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question