From fde40b1854f1e2ece2162e41d807b04804c0e240 Mon Sep 17 00:00:00 2001 From: Leon Date: Sat, 28 Mar 2020 01:18:32 +0200 Subject: [PATCH 01/10] =?UTF-8?q?=D0=9D=D0=B0=D1=81=D1=82=D1=80=D0=BE?= =?UTF-8?q?=D0=B9=D0=BA=D0=B0=20=20=D0=B2=D1=81=D0=BF=D0=BB=D1=8B=D0=B2?= =?UTF-8?q?=D0=B0=D1=8E=D1=89=D0=B8=D1=85=20=D1=81=D0=BE=D0=BE=D0=B1=D1=89?= =?UTF-8?q?=D0=B5=D0=BD=D0=B8=D0=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- www/app/entity/user.php | 4 ++ www/app/pages/base.php | 59 +++++++++++++++++++--------- www/app/pages/userprofile.php | 6 ++- www/assets/css/toastr.min.css | 1 + www/assets/js/toastr.min.js | 2 + www/templates/pages/base.html | 23 ++++++++++- www/templates/pages/userprofile.html | 6 +++ 7 files changed, 80 insertions(+), 21 deletions(-) create mode 100644 www/assets/css/toastr.min.css create mode 100644 www/assets/js/toastr.min.js diff --git a/www/app/entity/user.php b/www/app/entity/user.php index 18a17358b..8f290c7b0 100644 --- a/www/app/entity/user.php +++ b/www/app/entity/user.php @@ -67,6 +67,8 @@ protected function afterLoad() { $this->defstore = (int) $options['defstore']; $this->defmf = (int) $options['defmf']; $this->pagesize = (int) $options['pagesize']; + + $this->popupmessage = (int) $options['popupmessage']; $this->hidesidebar = (int) $options['hidesidebar']; parent::afterLoad(); @@ -96,6 +98,8 @@ protected function beforeSave() { $options['defmf'] = $this->defmf; $options['pagesize'] = $this->pagesize; $options['hidesidebar'] = $this->hidesidebar; + $options['popupmessage'] = $this->popupmessage; + $this->options = serialize($options); diff --git a/www/app/pages/base.php b/www/app/pages/base.php index 9ae31f868..bca123d2a 100644 --- a/www/app/pages/base.php +++ b/www/app/pages/base.php @@ -144,28 +144,40 @@ public function beforeRender() { $this->_tvars['alertwarning'] = ""; $this->_tvars['alertsuccess'] = ""; $this->_tvars['alertinfo'] = ""; - - if (strlen(System::getErrorMsg()) > 0) { - $this->_tvars['alerterror'] = System::getErrorMsg(); - $this->goAnkor(''); - } - if (strlen(System::getWarnMsg()) > 0) { - $this->_tvars['alertwarning'] = System::getWarnMsg(); - $this->goAnkor(''); - } - if (strlen(System::getSuccesMsg()) > 0) { - $this->_tvars['alertsuccess'] = System::getSuccesMsg(); - $this->goAnkor(''); - } - if (strlen(System::getInfoMsg()) > 0) { - $this->_tvars['alertinfo'] = System::getInfoMsg(); - $this->goAnkor(''); + + if($user->popupmessage != 1) { + + if (strlen(System::getErrorMsg()) > 0) { + $this->_tvars['alerterror'] = System::getErrorMsg(); + $this->goAnkor(''); + } + if (strlen(System::getWarnMsg()) > 0) { + $this->_tvars['alertwarning'] = System::getWarnMsg(); + $this->goAnkor(''); + } + if (strlen(System::getSuccesMsg()) > 0) { + $this->_tvars['alertsuccess'] = System::getSuccesMsg(); + $this->goAnkor(''); + } + if (strlen(System::getInfoMsg()) > 0) { + $this->_tvars['alertinfo'] = System::getInfoMsg(); + $this->goAnkor(''); + } } } protected function afterRender() { - - + $user = System::getUser(); + if($user->popupmessage == 1) { + if (strlen(System::getErrorMsg()) > 0) + $this->addJavaScript("toastr.error('" . System::getErrorMsg() . "') ", true); + if (strlen(System::getWarnMsg()) > 0) + $this->addJavaScript("toastr.warning('" . System::getWarnMsg() . "') ", true); + if (strlen(System::getSuccesMsg()) > 0) + $this->addJavaScript("toastr.success('" . System::getSuccesMsg() . "') ", true); + if (strlen(System::getInfoMsg()) > 0) + $this->addJavaScript("toastr.info('" . System::getInfoMsg() . "') ", true); + } $this->setError(''); $this->setSuccess(''); @@ -179,4 +191,15 @@ protected final function resetURL() { \App\Application::$app->setReloadPage(); } + + /** + * Вставляет JavaScript в конец выходного потока + * @param string Код скрипта + * @param boolean Если true - вставка после загрузки документа в браузер + */ + public function addJavaScript($js, $docready = false){ + App::$app->getResponse()->addJavaScript($js,$docready) ; + } + + } diff --git a/www/app/pages/userprofile.php b/www/app/pages/userprofile.php index 3380f7dc2..797e767f6 100644 --- a/www/app/pages/userprofile.php +++ b/www/app/pages/userprofile.php @@ -30,10 +30,11 @@ public function __construct() { $form->add(new Label('userlogin', $this->user->userlogin)); $form->add(new TextInput('email', $this->user->email)); $form->add(new CheckBox('hidesidebar',$this->user->hidesidebar)); + $form->add(new CheckBox('popupmessage',$this->user->popupmessage)); $form->add(new DropDownChoice('defstore', \App\Entity\Store::getList(), $this->user->defstore)); $form->add(new DropDownChoice('defmf', \App\Entity\MoneyFund::getList(), $this->user->defmf)); $form->add(new DropDownChoice('pagesize', array(15 => 15, 25 => 25, 50 => 50, 100 => 100 ), $this->user->pagesize)); - + $w = ""; if ($this->user->acltype == 2) { if (strlen($this->user->aclview) > 0) { @@ -66,10 +67,11 @@ public function onsubmit($sender) { $this->user->email = $sender->email->getText(); $this->user->hidesidebar = $sender->hidesidebar->isChecked() ? 1:0; + $this->user->popupmessage = $sender->popupmessage->isChecked() ? 1:0; $this->user->defstore = $sender->defstore->getValue(); $this->user->defmf = $sender->defmf->getValue(); $this->user->pagesize = $sender->pagesize->getValue(); - + $smartmenu = array(); foreach ($sender->mlist->getDataRows() as $row) { diff --git a/www/assets/css/toastr.min.css b/www/assets/css/toastr.min.css new file mode 100644 index 000000000..064afd071 --- /dev/null +++ b/www/assets/css/toastr.min.css @@ -0,0 +1 @@ +.toast-title{font-weight:700}.toast-message{-ms-word-wrap:break-word;word-wrap:break-word}.toast-message a,.toast-message label{color:#FFF}.toast-message a:hover{color:#CCC;text-decoration:none}.toast-close-button{position:relative;right:-.3em;top:-.3em;float:right;font-size:20px;font-weight:700;color:#FFF;-webkit-text-shadow:0 1px 0 #fff;text-shadow:0 1px 0 #fff;opacity:.8;-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=80);filter:alpha(opacity=80);line-height:1}.toast-close-button:focus,.toast-close-button:hover{color:#000;text-decoration:none;cursor:pointer;opacity:.4;-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=40);filter:alpha(opacity=40)}.rtl .toast-close-button{left:-.3em;float:left;right:.3em}button.toast-close-button{padding:0;cursor:pointer;background:0 0;border:0;-webkit-appearance:none}.toast-top-center{top:0;right:0;width:100%}.toast-bottom-center{bottom:0;right:0;width:100%}.toast-top-full-width{top:0;right:0;width:100%}.toast-bottom-full-width{bottom:0;right:0;width:100%}.toast-top-left{top:12px;left:12px}.toast-top-right{top:12px;right:12px}.toast-bottom-right{right:12px;bottom:12px}.toast-bottom-left{bottom:12px;left:12px}#toast-container{position:fixed;z-index:999999;pointer-events:none}#toast-container *{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}#toast-container>div{position:relative;pointer-events:auto;overflow:hidden;margin:0 0 6px;padding:15px 15px 15px 50px;width:300px;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;background-position:15px center;background-repeat:no-repeat;-moz-box-shadow:0 0 12px #999;-webkit-box-shadow:0 0 12px #999;box-shadow:0 0 12px #999;color:#FFF;opacity:.8;-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=80);filter:alpha(opacity=80)}#toast-container>div.rtl{direction:rtl;padding:15px 50px 15px 15px;background-position:right 15px center}#toast-container>div:hover{-moz-box-shadow:0 0 12px #000;-webkit-box-shadow:0 0 12px #000;box-shadow:0 0 12px #000;opacity:1;-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);filter:alpha(opacity=100);cursor:pointer}#toast-container>.toast-info{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGwSURBVEhLtZa9SgNBEMc9sUxxRcoUKSzSWIhXpFMhhYWFhaBg4yPYiWCXZxBLERsLRS3EQkEfwCKdjWJAwSKCgoKCcudv4O5YLrt7EzgXhiU3/4+b2ckmwVjJSpKkQ6wAi4gwhT+z3wRBcEz0yjSseUTrcRyfsHsXmD0AmbHOC9Ii8VImnuXBPglHpQ5wwSVM7sNnTG7Za4JwDdCjxyAiH3nyA2mtaTJufiDZ5dCaqlItILh1NHatfN5skvjx9Z38m69CgzuXmZgVrPIGE763Jx9qKsRozWYw6xOHdER+nn2KkO+Bb+UV5CBN6WC6QtBgbRVozrahAbmm6HtUsgtPC19tFdxXZYBOfkbmFJ1VaHA1VAHjd0pp70oTZzvR+EVrx2Ygfdsq6eu55BHYR8hlcki+n+kERUFG8BrA0BwjeAv2M8WLQBtcy+SD6fNsmnB3AlBLrgTtVW1c2QN4bVWLATaIS60J2Du5y1TiJgjSBvFVZgTmwCU+dAZFoPxGEEs8nyHC9Bwe2GvEJv2WXZb0vjdyFT4Cxk3e/kIqlOGoVLwwPevpYHT+00T+hWwXDf4AJAOUqWcDhbwAAAAASUVORK5CYII=)!important}#toast-container>.toast-error{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=)!important}#toast-container>.toast-success{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==)!important}#toast-container>.toast-warning{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGYSURBVEhL5ZSvTsNQFMbXZGICMYGYmJhAQIJAICYQPAACiSDB8AiICQQJT4CqQEwgJvYASAQCiZiYmJhAIBATCARJy+9rTsldd8sKu1M0+dLb057v6/lbq/2rK0mS/TRNj9cWNAKPYIJII7gIxCcQ51cvqID+GIEX8ASG4B1bK5gIZFeQfoJdEXOfgX4QAQg7kH2A65yQ87lyxb27sggkAzAuFhbbg1K2kgCkB1bVwyIR9m2L7PRPIhDUIXgGtyKw575yz3lTNs6X4JXnjV+LKM/m3MydnTbtOKIjtz6VhCBq4vSm3ncdrD2lk0VgUXSVKjVDJXJzijW1RQdsU7F77He8u68koNZTz8Oz5yGa6J3H3lZ0xYgXBK2QymlWWA+RWnYhskLBv2vmE+hBMCtbA7KX5drWyRT/2JsqZ2IvfB9Y4bWDNMFbJRFmC9E74SoS0CqulwjkC0+5bpcV1CZ8NMej4pjy0U+doDQsGyo1hzVJttIjhQ7GnBtRFN1UarUlH8F3xict+HY07rEzoUGPlWcjRFRr4/gChZgc3ZL2d8oAAAAASUVORK5CYII=)!important}#toast-container.toast-bottom-center>div,#toast-container.toast-top-center>div{width:300px;margin-left:auto;margin-right:auto}#toast-container.toast-bottom-full-width>div,#toast-container.toast-top-full-width>div{width:96%;margin-left:auto;margin-right:auto}.toast{background-color:#030303}.toast-success{background-color:#51A351}.toast-error{background-color:#BD362F}.toast-info{background-color:#2F96B4}.toast-warning{background-color:#F89406}.toast-progress{position:absolute;left:0;bottom:0;height:4px;background-color:#000;opacity:.4;-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=40);filter:alpha(opacity=40)}@media all and (max-width:240px){#toast-container>div{padding:8px 8px 8px 50px;width:11em}#toast-container>div.rtl{padding:8px 50px 8px 8px}#toast-container .toast-close-button{right:-.2em;top:-.2em}#toast-container .rtl .toast-close-button{left:-.2em;right:.2em}}@media all and (min-width:241px) and (max-width:480px){#toast-container>div{padding:8px 8px 8px 50px;width:18em}#toast-container>div.rtl{padding:8px 50px 8px 8px}#toast-container .toast-close-button{right:-.2em;top:-.2em}#toast-container .rtl .toast-close-button{left:-.2em;right:.2em}}@media all and (min-width:481px) and (max-width:768px){#toast-container>div{padding:15px 15px 15px 50px;width:25em}#toast-container>div.rtl{padding:15px 50px 15px 15px}} \ No newline at end of file diff --git a/www/assets/js/toastr.min.js b/www/assets/js/toastr.min.js new file mode 100644 index 000000000..7c0c07c2a --- /dev/null +++ b/www/assets/js/toastr.min.js @@ -0,0 +1,2 @@ +!function(e){e(["jquery"],function(e){return function(){function t(e,t,n){return g({type:O.error,iconClass:m().iconClasses.error,message:e,optionsOverride:n,title:t})}function n(t,n){return t||(t=m()),v=e("#"+t.containerId),v.length?v:(n&&(v=d(t)),v)}function o(e,t,n){return g({type:O.info,iconClass:m().iconClasses.info,message:e,optionsOverride:n,title:t})}function s(e){C=e}function i(e,t,n){return g({type:O.success,iconClass:m().iconClasses.success,message:e,optionsOverride:n,title:t})}function a(e,t,n){return g({type:O.warning,iconClass:m().iconClasses.warning,message:e,optionsOverride:n,title:t})}function r(e,t){var o=m();v||n(o),u(e,o,t)||l(o)}function c(t){var o=m();return v||n(o),t&&0===e(":focus",t).length?void h(t):void(v.children().length&&v.remove())}function l(t){for(var n=v.children(),o=n.length-1;o>=0;o--)u(e(n[o]),t)}function u(t,n,o){var s=!(!o||!o.force)&&o.force;return!(!t||!s&&0!==e(":focus",t).length)&&(t[n.hideMethod]({duration:n.hideDuration,easing:n.hideEasing,complete:function(){h(t)}}),!0)}function d(t){return v=e("
").attr("id",t.containerId).addClass(t.positionClass),v.appendTo(e(t.target)),v}function p(){return{tapToDismiss:!0,toastClass:"toast",containerId:"toast-container",debug:!1,showMethod:"fadeIn",showDuration:300,showEasing:"swing",onShown:void 0,hideMethod:"fadeOut",hideDuration:1e3,hideEasing:"swing",onHidden:void 0,closeMethod:!1,closeDuration:!1,closeEasing:!1,closeOnHover:!0,extendedTimeOut:1e3,iconClasses:{error:"toast-error",info:"toast-info",success:"toast-success",warning:"toast-warning"},iconClass:"toast-info",positionClass:"toast-top-right",timeOut:5e3,titleClass:"toast-title",messageClass:"toast-message",escapeHtml:!1,target:"body",closeHtml:'',closeClass:"toast-close-button",newestOnTop:!0,preventDuplicates:!1,progressBar:!1,progressClass:"toast-progress",rtl:!1}}function f(e){C&&C(e)}function g(t){function o(e){return null==e&&(e=""),e.replace(/&/g,"&").replace(/"/g,""").replace(/'/g,"'").replace(//g,">")}function s(){c(),u(),d(),p(),g(),C(),l(),i()}function i(){var e="";switch(t.iconClass){case"toast-success":case"toast-info":e="polite";break;default:e="assertive"}I.attr("aria-live",e)}function a(){E.closeOnHover&&I.hover(H,D),!E.onclick&&E.tapToDismiss&&I.click(b),E.closeButton&&j&&j.click(function(e){e.stopPropagation?e.stopPropagation():void 0!==e.cancelBubble&&e.cancelBubble!==!0&&(e.cancelBubble=!0),E.onCloseClick&&E.onCloseClick(e),b(!0)}),E.onclick&&I.click(function(e){E.onclick(e),b()})}function r(){I.hide(),I[E.showMethod]({duration:E.showDuration,easing:E.showEasing,complete:E.onShown}),E.timeOut>0&&(k=setTimeout(b,E.timeOut),F.maxHideTime=parseFloat(E.timeOut),F.hideEta=(new Date).getTime()+F.maxHideTime,E.progressBar&&(F.intervalId=setInterval(x,10)))}function c(){t.iconClass&&I.addClass(E.toastClass).addClass(y)}function l(){E.newestOnTop?v.prepend(I):v.append(I)}function u(){if(t.title){var e=t.title;E.escapeHtml&&(e=o(t.title)),M.append(e).addClass(E.titleClass),I.append(M)}}function d(){if(t.message){var e=t.message;E.escapeHtml&&(e=o(t.message)),B.append(e).addClass(E.messageClass),I.append(B)}}function p(){E.closeButton&&(j.addClass(E.closeClass).attr("role","button"),I.prepend(j))}function g(){E.progressBar&&(q.addClass(E.progressClass),I.prepend(q))}function C(){E.rtl&&I.addClass("rtl")}function O(e,t){if(e.preventDuplicates){if(t.message===w)return!0;w=t.message}return!1}function b(t){var n=t&&E.closeMethod!==!1?E.closeMethod:E.hideMethod,o=t&&E.closeDuration!==!1?E.closeDuration:E.hideDuration,s=t&&E.closeEasing!==!1?E.closeEasing:E.hideEasing;if(!e(":focus",I).length||t)return clearTimeout(F.intervalId),I[n]({duration:o,easing:s,complete:function(){h(I),clearTimeout(k),E.onHidden&&"hidden"!==P.state&&E.onHidden(),P.state="hidden",P.endTime=new Date,f(P)}})}function D(){(E.timeOut>0||E.extendedTimeOut>0)&&(k=setTimeout(b,E.extendedTimeOut),F.maxHideTime=parseFloat(E.extendedTimeOut),F.hideEta=(new Date).getTime()+F.maxHideTime)}function H(){clearTimeout(k),F.hideEta=0,I.stop(!0,!0)[E.showMethod]({duration:E.showDuration,easing:E.showEasing})}function x(){var e=(F.hideEta-(new Date).getTime())/F.maxHideTime*100;q.width(e+"%")}var E=m(),y=t.iconClass||E.iconClass;if("undefined"!=typeof t.optionsOverride&&(E=e.extend(E,t.optionsOverride),y=t.optionsOverride.iconClass||y),!O(E,t)){T++,v=n(E,!0);var k=null,I=e("
"),M=e("
"),B=e("
"),q=e("
"),j=e(E.closeHtml),F={intervalId:null,hideEta:null,maxHideTime:null},P={toastId:T,state:"visible",startTime:new Date,options:E,map:t};return s(),r(),a(),f(P),E.debug&&console&&console.log(P),I}}function m(){return e.extend({},p(),b.options)}function h(e){v||(v=n()),e.is(":visible")||(e.remove(),e=null,0===v.children().length&&(v.remove(),w=void 0))}var v,C,w,T=0,O={error:"error",info:"info",success:"success",warning:"warning"},b={clear:r,remove:c,error:t,getContainer:n,info:o,options:{},subscribe:s,success:i,version:"2.1.3",warning:a};return b}()})}("function"==typeof define&&define.amd?define:function(e,t){"undefined"!=typeof module&&module.exports?module.exports=t(require("jquery")):window.toastr=t(window.jQuery)}); +//# sourceMappingURL=toastr.js.map diff --git a/www/templates/pages/base.html b/www/templates/pages/base.html index 0b77b24bf..93cf11f0c 100644 --- a/www/templates/pages/base.html +++ b/www/templates/pages/base.html @@ -9,7 +9,8 @@ - + + @@ -18,6 +19,7 @@ + @@ -598,6 +600,25 @@
_______________
- - - + @@ -95,7 +93,7 @@
- v4.0.3 © zippy.com.ua + v4.1.0 © zippy.com.ua
diff --git a/www/templates_ua/404.html b/www/templates_ua/404.html new file mode 100644 index 000000000..324d989a6 --- /dev/null +++ b/www/templates_ua/404.html @@ -0,0 +1,9 @@ + + + + + + + Страница не найдена. Перейлите на главную + + diff --git a/www/templates_ua/index.html b/www/templates_ua/index.html new file mode 100644 index 000000000..f81e9ddd4 --- /dev/null +++ b/www/templates_ua/index.html @@ -0,0 +1,12 @@ + + + + + + + + + Страница не найдена. Перейдите на главную + + + \ No newline at end of file diff --git a/www/templates_ua/lang.json b/www/templates_ua/lang.json new file mode 100644 index 000000000..bf36b52d8 --- /dev/null +++ b/www/templates_ua/lang.json @@ -0,0 +1,4 @@ +{ + "msg_saved":"Збережено" + +} \ No newline at end of file diff --git a/www/templates_ua/modules/issue/pages/calendar.html b/www/templates_ua/modules/issue/pages/calendar.html new file mode 100644 index 000000000..6477f2936 --- /dev/null +++ b/www/templates_ua/modules/issue/pages/calendar.html @@ -0,0 +1,134 @@ + + + + + + + + + + + + + + + + + + + + + +
+ + + + +
+
+
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ Отменить +    + +
+ +
+
+
+ + + diff --git a/www/templates_ua/modules/issue/pages/issuelist.html b/www/templates_ua/modules/issue/pages/issuelist.html new file mode 100644 index 000000000..90de02104 --- /dev/null +++ b/www/templates_ua/modules/issue/pages/issuelist.html @@ -0,0 +1,250 @@ + + + + + + + + +
+
+

Список задач

+ + + Новая задача + +
+
+
+
+ + + + + + +
+ + + + + +
+ + + + +
+ +
+
+
+
+ +

+ Создан Admin 11.11.2011. Проект ddddd +

+ Редактировать   Удалить +
+
+ + + + + + + +
+ +
+ + + x   + + + +
+ + +
+
Коментарии
+ + + + + +
+ + +
+ +
x
+ +
+ +
+ +
+
+ Уведомить +
+ Наберите пользователей, которых надо уведомить о сообщении +
+
+ +
+
+ + +
+
+ +
+ +
+ + + + +
+
+ + + + + + +
+
+ + + + +
+
+ + +
+ + + + +
+
+ + + + + + +
+ + +
+
+
+ + + +
+ +
+
+
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+ +
+ + + + +
+ + +
+ Отмена  + +
+
+ + +
+
+ + + + + + + + + + + \ No newline at end of file diff --git a/www/templates_ua/modules/issue/pages/projectlist.html b/www/templates_ua/modules/issue/pages/projectlist.html new file mode 100644 index 000000000..c176a6433 --- /dev/null +++ b/www/templates_ua/modules/issue/pages/projectlist.html @@ -0,0 +1,170 @@ + + + + + + + + +
+
+

Проекты

+ +
+ Новый проект + + + + + + + + + + + + + + + + + + + +
НазваниеЗаказчикСтатусЗадачи
+ +    + + +    +
+
+
+ +
+
+
+ + +
+ + +
+
+ + +
+
+ + +
+ +
+   + +
+ +
+
+ + + + + + + + diff --git a/www/templates_ua/modules/issue/pages/stat.html b/www/templates_ua/modules/issue/pages/stat.html new file mode 100644 index 000000000..7a60ee910 --- /dev/null +++ b/www/templates_ua/modules/issue/pages/stat.html @@ -0,0 +1,54 @@ + + + + + + +
+
+ + +

Статистика по задачам

+ + +
+
+ +
+
+ + + + + + + + +
Всего:
+ +
+
+ + + + \ No newline at end of file diff --git a/www/templates_ua/modules/note/pages/main.html b/www/templates_ua/modules/note/pages/main.html new file mode 100644 index 000000000..2c8000e16 --- /dev/null +++ b/www/templates_ua/modules/note/pages/main.html @@ -0,0 +1,269 @@ + + + + + + + + +
+ + + {{^editor}} +
+
+
+
+   Новый топик + + + + + + + +
+ + + + + + + +
+ + +
+ +
+ +
+
+
+ + +
+ +
+
+
+ +
+
+ + + + + + + + + + +
+ + +
+ + +
+  
+
+ +
+ + +
+
+ + {{/editor}} + {{#editor}} +
+
+
+
+
+ + +
+
+ + +
+
+ +
+
+
+ + +
+ Отмена  + Сохранить +
+
+
+
+ {{/editor}} +
+
+
+
+ + + + + + +
+ +
+
+
+ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/www/templates_ua/modules/note/pages/showtopic.html b/www/templates_ua/modules/note/pages/showtopic.html new file mode 100644 index 000000000..4fd2a8ef5 --- /dev/null +++ b/www/templates_ua/modules/note/pages/showtopic.html @@ -0,0 +1,43 @@ + + + + + + + Zippy Note + + + + + + + + + + + + + + + + + + + Вставить как копию + + + +       + Вставить как ссылку + + + + +

+
+ + + + + + \ No newline at end of file diff --git a/www/templates_ua/modules/ocstore/items.html b/www/templates_ua/modules/ocstore/items.html new file mode 100644 index 000000000..76980f09a --- /dev/null +++ b/www/templates_ua/modules/ocstore/items.html @@ -0,0 +1,110 @@ + + + + +
+
+ +

Экспорт новых товаров

+ + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
НаименованиеАртикулКол.Цена Описание
+
+
+ + + + +   + +
+
+
+
+ +

Обновление цен и количеств

+ + +
+ +
+ +

Загрузка товаров с магазина

+ + +
+
+ + + diff --git a/www/templates_ua/modules/ocstore/options.html b/www/templates_ua/modules/ocstore/options.html new file mode 100644 index 000000000..0d9924e11 --- /dev/null +++ b/www/templates_ua/modules/ocstore/options.html @@ -0,0 +1,59 @@ + + + + +
+
+

Настройки соединения

+
+
+ + +
+
+ + +
+
+ + +
+
+ + + + Условный контрагент от имени котрого будут формироватся заказы + +
+
+ + + + +
+
+ + + + +
+
+
+
+ + + + diff --git a/www/templates_ua/modules/ocstore/orders.html b/www/templates_ua/modules/ocstore/orders.html new file mode 100644 index 000000000..a8a3bbc04 --- /dev/null +++ b/www/templates_ua/modules/ocstore/orders.html @@ -0,0 +1,127 @@ + + + + +
+
+ +

Импорт заказов

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
НомерДатаКлиентСумма Комментарий
+ +
+
+ +

Экспорт статусов в магазин

+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
НомерOC НомерДатаКлиентСумма Статус
+ + +
+ + + + + + +
+
+ +
+
+ + + + diff --git a/www/templates_ua/modules/shop/pages/aboutus.html b/www/templates_ua/modules/shop/pages/aboutus.html new file mode 100644 index 000000000..c002350cd --- /dev/null +++ b/www/templates_ua/modules/shop/pages/aboutus.html @@ -0,0 +1,10 @@ + + +
+
+ + {{{aboutus}}} +
+
+ + \ No newline at end of file diff --git a/www/templates_ua/modules/shop/pages/base.html b/www/templates_ua/modules/shop/pages/base.html new file mode 100644 index 000000000..80f71b6f7 --- /dev/null +++ b/www/templates_ua/modules/shop/pages/base.html @@ -0,0 +1,112 @@ + + + + + + + Онлайн каталог + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ +
+
+ +
+ +
+ + + + +
+ + + + + + + diff --git a/www/templates_ua/modules/shop/pages/catalog.html b/www/templates_ua/modules/shop/pages/catalog.html new file mode 100644 index 000000000..fa5520084 --- /dev/null +++ b/www/templates_ua/modules/shop/pages/catalog.html @@ -0,0 +1,104 @@ + + +
+
+ +
+
+
+
+ +
+
+ + +
+ +
+
+ с + + по + +
+
+ Бренд +
+
+
+
+
+
+ +
+  Сброс +
+
+ +
+
+
+
+
+ + + + + +

+
+
+
+ +
+
+ Новинка + Топ продаж + + +

+
+
+ +
+
+ +

{{currencyname}}

+
+
+ Купить + +
+
+
+ +
+
+ +
+ +

Недавно просмотренные

+
+
+
+ + +
+
+
+
+ +
+
+ + + diff --git a/www/templates_ua/modules/shop/pages/compare.html b/www/templates_ua/modules/shop/pages/compare.html new file mode 100644 index 000000000..d93769ec0 --- /dev/null +++ b/www/templates_ua/modules/shop/pages/compare.html @@ -0,0 +1,11 @@ + + +
+
+

Сравнение товаров

+
+ +
+
+ + diff --git a/www/templates_ua/modules/shop/pages/contact.html b/www/templates_ua/modules/shop/pages/contact.html new file mode 100644 index 000000000..043d0118b --- /dev/null +++ b/www/templates_ua/modules/shop/pages/contact.html @@ -0,0 +1,33 @@ + + +
+
+ {{{contact}}} +
+
+
+

Обратная связь

+
+
+ + +
+
+ + +
+
+ + +
+ + +
+ +
+
+ +
+
+ + \ No newline at end of file diff --git a/www/templates_ua/modules/shop/pages/delivery.html b/www/templates_ua/modules/shop/pages/delivery.html new file mode 100644 index 000000000..91a301f37 --- /dev/null +++ b/www/templates_ua/modules/shop/pages/delivery.html @@ -0,0 +1,9 @@ + + +
+
+ {{{delivery}}} +
+
+ + \ No newline at end of file diff --git a/www/templates_ua/modules/shop/pages/grouplist.html b/www/templates_ua/modules/shop/pages/grouplist.html new file mode 100644 index 000000000..05a123452 --- /dev/null +++ b/www/templates_ua/modules/shop/pages/grouplist.html @@ -0,0 +1,131 @@ + + + + +
+
+

Категории товаров

+
+
+
+
+ +
+ +
+ + +
+ +
+ + +
+
+ +
+ +
+
+
+ +
+ +
+ +
+ +
+
+

Список атрибутов

+ Новый атрибут
+ + + + + + + + + + + + + + + + + +
НаименованиеТипЗначение   
+
+ +
+
+
+ + + +
+
+ + +
+
+ + +
+
+ + +
+ + +
+ + + +
+
+ + +
+ +
+
+ + + +
+
+ + + diff --git a/www/templates_ua/modules/shop/pages/main.html b/www/templates_ua/modules/shop/pages/main.html new file mode 100644 index 000000000..28074f0e1 --- /dev/null +++ b/www/templates_ua/modules/shop/pages/main.html @@ -0,0 +1,63 @@ + + + +
+
+ +
+
+
+
+
+ {{#leftmenu}} + {{name}} + {{/leftmenu}} +
+ + +
+ +
+ +
+ + +
+
+ + +
+ + +
+
+
+ +
+ + +
+

Новинки

+
+
+
+ + +
+
+
+
+ + + +
+
+ + + diff --git a/www/templates_ua/modules/shop/pages/manufacturers.html b/www/templates_ua/modules/shop/pages/manufacturers.html new file mode 100644 index 000000000..27939cb68 --- /dev/null +++ b/www/templates_ua/modules/shop/pages/manufacturers.html @@ -0,0 +1,39 @@ + + + + +
+ +
+

Список производителей, брендов

+ Добавить + + + + + + +
 
+ +
+
+ +

Редактирование

+
+ + +
+
+ + +
+
+ +   +
+ +
+
+ + + \ No newline at end of file diff --git a/www/templates_ua/modules/shop/pages/options.html b/www/templates_ua/modules/shop/pages/options.html new file mode 100644 index 000000000..bfa42db4c --- /dev/null +++ b/www/templates_ua/modules/shop/pages/options.html @@ -0,0 +1,114 @@ + + + + +
+
+

Администрирование

+ Обновить цены +
+
+ +
+
+

Настройки

+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ + Условный контрагент от имени котрого будут формироватся заказы +
+
+ +
+ +
+ +
+
+
+ +
+ +
+
+ +
+ +
+ +
+
+ + + +
+
+ +
+
+ +
+
+
+

Тексты страниц

+
+
+
+
+ + +
+
+ + +
+
+ + +
+
+ + + +
+
+
+ + + + + + + \ No newline at end of file diff --git a/www/templates_ua/modules/shop/pages/order.html b/www/templates_ua/modules/shop/pages/order.html new file mode 100644 index 000000000..7eb40981f --- /dev/null +++ b/www/templates_ua/modules/shop/pages/order.html @@ -0,0 +1,85 @@ + + +
+
+

Формирование заказа

+
+ + + + + + + + + + + + + + + + + + + + + + +
 НаименованиеЦeнаКoл.
Всего:
+ +
+
+
+
+
+
+ +
+ +
+
+
+ +
+ +
+
+ +
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+
+ + + +
+
+ + + + + diff --git a/www/templates_ua/modules/shop/pages/productlist.html b/www/templates_ua/modules/shop/pages/productlist.html new file mode 100644 index 000000000..c4e7566c0 --- /dev/null +++ b/www/templates_ua/modules/shop/pages/productlist.html @@ -0,0 +1,199 @@ + + + + +
+
+

Список товаров

+
+ +
+
+
+
+
+
+ + + Добавить новый + + + + + + + + + + + + + + + + +
Наименование Цена Кол.
+
+ Код: + +

+
+
+
+ + + +
+

Редактирование

+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+ +
+ +
+ + + +
+
+ +
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+ + +
+ + + +
+ + +
+
+ + +
+ +
+ +
+
+
+ + + +
+
+ + Отмена +   +  Удалить + +
+
+
+ +
+ К списку продуктов +

Список изображений

+ +
+ + +
+ + +
+
+
+
+ + + diff --git a/www/templates_ua/modules/shop/pages/productview.html b/www/templates_ua/modules/shop/pages/productview.html new file mode 100644 index 000000000..7f1eb04a9 --- /dev/null +++ b/www/templates_ua/modules/shop/pages/productview.html @@ -0,0 +1,141 @@ + + + +
+
+ +
+
+
+ +
+
+ + + +
+ {{#islistimage}} +
+
+ +
+
+ {{/islistimage}} + +
+ + +
+
+
+ Новинка + Топ продаж + +

+
+

+ +
+
+ +

  {{currencyname}}

+
+
+ +
+ + +
+ + +
+ +
+
+
+
+
+

Характеритики

+ + + + + +
+
+
+

Отзывы

+ + + + + +
+ +    +
: +

+ +
+ {{#islogined}} + + {{/islogined}} +
+
+ +
+ +
+ + +
+
+ + +
+ +
+ + +
+ +
+ +
+ + + + +
+ +
+ + + +
+ + + + diff --git a/www/templates_ua/modules/wc/items.html b/www/templates_ua/modules/wc/items.html new file mode 100644 index 000000000..d7c3180b1 --- /dev/null +++ b/www/templates_ua/modules/wc/items.html @@ -0,0 +1,106 @@ + + + + +
+
+ +

Экспорт новых товаров

+ + +
+ + + + + + + + + + + + + + + + + + + + + + + + +
НаименованиеАртикулКол.Цена Описание
+
+
+ + +   + + +
+
+
+
+ +

Обновление цен и количеств

+ + +
+ +
+ +

Загрузка товаров с магазина

+ + +
+
+ + + diff --git a/www/templates_ua/modules/wc/options.html b/www/templates_ua/modules/wc/options.html new file mode 100644 index 000000000..785be98e4 --- /dev/null +++ b/www/templates_ua/modules/wc/options.html @@ -0,0 +1,66 @@ + + + + +
+
+

Настройки соединения

+
+
+ + +
+
+ + +
+
+ + +
+
+ + + + +
+ +
+ + + + Условный контрагент от имени котрого будут формироватся заказы + +
+
+ + + + +
+
+ + + + +
+
+
+
+ + + + diff --git a/www/templates_ua/modules/wc/orders.html b/www/templates_ua/modules/wc/orders.html new file mode 100644 index 000000000..811e1e846 --- /dev/null +++ b/www/templates_ua/modules/wc/orders.html @@ -0,0 +1,120 @@ + + + + +
+
+ +

Импорт заказов

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
НомерДатаКлиентСумма Комментарий
+ +
+
+ +

Экспорт статусов в магазин

+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
НомерWC НомерДатаКлиентСумма Статус
+ + +
+ + + + + + + +
+
+ +
+
+ + + + diff --git a/www/templates_ua/pages/base.html b/www/templates_ua/pages/base.html new file mode 100644 index 000000000..93cf11f0c --- /dev/null +++ b/www/templates_ua/pages/base.html @@ -0,0 +1,645 @@ + + + + + Zippy Склад + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + +
+ +
+
+
+ + {{#alerterror}} + + {{/alerterror}} + {{#alertwarning}} + + {{/alertwarning}} + {{#alertinfo}} + + {{/alertinfo}} + {{#alertsuccess}} + + {{/alertsuccess}} +
+
+
+
+ + {{#smart}} + + + + {{/smart}} + + + +
+
+
+ +
+ + +
+ + + + + + + + diff --git a/www/templates_ua/pages/branchlist.html b/www/templates_ua/pages/branchlist.html new file mode 100644 index 000000000..dbb4964d4 --- /dev/null +++ b/www/templates_ua/pages/branchlist.html @@ -0,0 +1,70 @@ + + + + + +
+
+
+

Список филиалов

+ Добавить + + + + + + + + + + + +
+ + +
+ +
+
+ + +
+
+ + + Если задано используется вместо настроек +
+ +
+ + + Если задан используется вместо настроек +
+
+ + + Если задан используется вместо настроек +
+ + + +
+ + +
+
+ + +
+ +    + + +
+
+
+ + + \ No newline at end of file diff --git a/www/templates_ua/pages/doc/goodsissue.html b/www/templates_ua/pages/doc/goodsissue.html new file mode 100644 index 000000000..634264515 --- /dev/null +++ b/www/templates_ua/pages/doc/goodsissue.html @@ -0,0 +1,350 @@ + + + + + +
+

Расходная накладная

+
+
+
+ + +
+ +
+ + + +
+
+ + +
+
+ + + + Добавить нового + +
+ + + + +
+
+
+ + +
+ + +
+
+ + +
+
+ + + + + +
+ + + +
+
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+ +
+ + +
+
+ + +
+ +
+
+
+
+ {{#usescanner}} + + {{/usescanner}} + + Добавить позицию + + + + + + {{#usesnumber}} + + + {{/usesnumber}} + + + + + + + + + + + + + + {{#usesnumber}} + + + {{/usesnumber}} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
НазваниеКодЕд.СерияДатаКол.ЦенаСумма
Всего:
Скидка:
К оплате:
Внесена оплата:
+
+
+
+
+ + +   +   + + + +
+
+ + + + +
+
+

Ввод товара

+
+
+ +
+ + + + Наличие: + +
+ {{#usesnumber}} +
+ + + +
+ + {{/usesnumber}} +
+ + + +
+ +
+ + + +
+ + +
+ +   +
+ + +
+
+
+
+

 Новый контрагент

+
+
+ +
+ + +
+
+ + +
+
+ + +
+ + +
+ + +
+
+
+
+ + + {{#usescanner}} + + {{/usescanner}} + + diff --git a/www/templates_ua/pages/doc/goodsreceipt.html b/www/templates_ua/pages/doc/goodsreceipt.html new file mode 100644 index 000000000..6917219ec --- /dev/null +++ b/www/templates_ua/pages/doc/goodsreceipt.html @@ -0,0 +1,385 @@ + + + + + + + +
+

Приходная накладная

+
+
+
+ + +
+
+ + +
+ +
+ + + +
+
+ + + + +
+ +
+
+ +
+ + +
+ +
+ + + +
+ +
+ + + + +
+
+
+
+
+ {{#usescanner}} + + {{/usescanner}} +  Добавить позицию + + + + + + + {{#usesnumber}} + + + {{/usesnumber}} + + + + + + + + + + + + + {{#usesnumber}} + + + {{/usesnumber}} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
НаименованиеКодЕд.СерияДатаКол.ЦенаСумма
+
Всего:
НДС:
Скидка:
Курс валюты:
К оплате:
Внесена оплата:
+ +
+
+
+
+
+ + +
+
+
+
+
+ + +   + + +
+
+ + + + + + + + + + + + + +
+ + +
+

Ввод товара

+
+
+ + +
+ + + Добавить новый +
+ {{#usesnumber}} +
+ + + +
+
+ + + +
+ {{/usesnumber}} + +
+ + +
+ + +
+ + +
+ +
+ +
+
+
+ + +
+ +
+

 Новый товар

+
+
+ +
+ + +
+
+ + +
+
+ + +
+
+ + + + +
+ {{#usesnumber}} +
+ + + +
+
+ + + +
+ {{/usesnumber}} +
+ + +
+
+
+
+ {{#usescanner}} + + {{/usescanner}} + + diff --git a/www/templates_ua/pages/doc/incomeitem.html b/www/templates_ua/pages/doc/incomeitem.html new file mode 100644 index 000000000..1c982622a --- /dev/null +++ b/www/templates_ua/pages/doc/incomeitem.html @@ -0,0 +1,168 @@ + + + + + + + +
+

Оприходование ТМЦ

+
+
+
+ + +
+
+ + +
+ +
+ + +
+ +
+ + + + +
+ +
+
+
+
+ {{#usescanner}} + + {{/usescanner}} + Добавить товар + + + + + {{#usesnumber}} + + + {{/usesnumber}} + + + + + + + + + + {{#usesnumber}} + + + {{/usesnumber}} + + + + + + + + + + {{^usesnumber}} + + {{/usesnumber}} + {{#usesnumber}} + + {{/usesnumber}} + + + +
НазваниеЕд.СерияДатаКол.ЦенаСумма
Всего:Всего:
+ + +
+
+
+
+ +   +   + +
+
+ + +

+ +
+
+

Ввод товара

+
+
+ +
+ + + + +
+ {{#usesnumber}} +
+ + + + +
+
+ + + +
+ {{/usesnumber}} +
+ + + + +
+
+ + +
+ +
+   +
+
+
+ +
+ + + + + diff --git a/www/templates_ua/pages/doc/incomemoney.html b/www/templates_ua/pages/doc/incomemoney.html new file mode 100644 index 000000000..c34af1978 --- /dev/null +++ b/www/templates_ua/pages/doc/incomemoney.html @@ -0,0 +1,64 @@ + + + + + + + +
+

Приходный ордер

+
+
+
+ + +
+
+ + +
+ +
+ + +
+
+ + +
+
+ + +
+ +
+ + + + +
+ +
+
+ +
+
+ +   +   + +
+
+ + + +
+ + + + + + diff --git a/www/templates_ua/pages/doc/inventory.html b/www/templates_ua/pages/doc/inventory.html new file mode 100644 index 000000000..4fb824b0a --- /dev/null +++ b/www/templates_ua/pages/doc/inventory.html @@ -0,0 +1,161 @@ + + + + + + + +
+

Инвентаризация + +

+ +
+
+
+ + +
+
+ + +
+
+ + +
+ +
+ + + + +
+ +
+
+
+
+ {{#usescanner}} + + {{/usescanner}} +   Добавить товар + + + + + + {{#usesnumber}} + + + {{/usesnumber}} + + + + + + + + + + + + {{#usesnumber}} + + + {{/usesnumber}} + + + + + + + + + +
НазваниеСерияДата Кол.
+ + + + + +  
+ + +
+
+
+
+ +   +   + +
+
+ + +

+ +
+
+

Ввод товара

+
+
+ +
+ + + +
+ {{#usesnumber}} +
+ +
+ +
+
+ {{/usesnumber}} +
+ +
+ +
+
+ +
+   +
+
+
+ +
+ + + + + diff --git a/www/templates_ua/pages/doc/invoice.html b/www/templates_ua/pages/doc/invoice.html new file mode 100644 index 000000000..61c264f7b --- /dev/null +++ b/www/templates_ua/pages/doc/invoice.html @@ -0,0 +1,258 @@ + + + + + +
+

Счет-фактура

+
+
+
+ + +
+
+ + + + + Добавить нового + +
+
+ + + + +
+
+ + + + +
+
+ + +
+ +
+
+
+ + +
+
+ + +
+
+ + +
+ + +
+ + + + +
+
+
+
+
+ + Добавить товар + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
НазваниеКодЕд.Кол.ЦенаСумма
Всего:
Скидка:
К оплате:
Внесена оплата:
+
+
+
+
+ +   +   + +
+
+ + + + +
+
+

Ввод товара

+
+
+ +
+ + + + Наличие : + +
+
+ + + +
+
+ + + +
+ + +
+ +   +
+ + +
+
+
+
+

 Новый контрагент

+
+
+ +
+ + +
+
+ + +
+ + +
+ + +
+
+
+
+ + + diff --git a/www/templates_ua/pages/doc/invoicecust.html b/www/templates_ua/pages/doc/invoicecust.html new file mode 100644 index 000000000..76f33ba9d --- /dev/null +++ b/www/templates_ua/pages/doc/invoicecust.html @@ -0,0 +1,322 @@ + + + + + + + +
+

Счет входящий

+
+
+
+ + +
+ +
+ + + +
+ +
+ + + + +
+
+
+
+ + +
+
+ + +
+ + + +
+
+
+
+ Добавить позицию + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
НаименованиеКодЕд.Кол.ЦенаСумма
+
Всего:
НДС:
Скидка:
Курс валюты:
К оплате:
Внесена оплата:
+ +
+
+
+
+
+ + +
+
+
+
+
+ +   +   + + +
+
+ + + + + + + + + + + + + + + + +
+ + +
+

Ввод товара

+
+
+ + +
+ + + + Добавить новый + + + +
+ +
+ + +
+ + +
+ + +
+ +
+ +
+
+
+
+ +
+

 Новый товар

+
+
+ +
+ + +
+
+ + +
+
+ + + + +
+ +
+ + +
+
+
+
+ + + + + diff --git a/www/templates_ua/pages/doc/order.html b/www/templates_ua/pages/doc/order.html new file mode 100644 index 000000000..33faed272 --- /dev/null +++ b/www/templates_ua/pages/doc/order.html @@ -0,0 +1,183 @@ + + + + + +
+

Заказ

+
+
+
+ + +
+
+ + + + Добавить нового + +
+
+ + + + +
+
+ + + + +
+ +
+ + + + + +
+
+
+
+ + +
+
+ + +
+
+ + +
+ +
+ + + + +
+
+ + + + +
+ +
+
+
+
+ + Добавить товар + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
НазваниеКодЕд.Кол.ЦенаСумма
Всего:
+
+
+
+
+ +   +   + + + +
+
+
+
+

Ввод товара

+
+
+ +
+ + + + Наличие : + +
+
+ + + +
+
+ + + +
+ + +
+ +   +
+ + +
+
+
+
+

 Новый контрагент

+
+
+ +
+ + +
+
+ + +
+ + +
+ + +
+
+
+
+ + + diff --git a/www/templates_ua/pages/doc/ordercust.html b/www/templates_ua/pages/doc/ordercust.html new file mode 100644 index 000000000..d5a4efa2f --- /dev/null +++ b/www/templates_ua/pages/doc/ordercust.html @@ -0,0 +1,167 @@ + + + + + + + +
+

Заявка поставщику

+
+
+
+ + +
+
+ + +
+
+ + + +
+ + + +
+ + + + +
+
+
+ + + + +
+
+
+
+ Добавить позицию + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
НаименованиеКодЕд.Кол.ЦенаСумма
+
Всего:
+ +
+
+
+
+ + +   +   + + +
+
+ + +
+ + +
+

Ввод товара

+
+
+ + +
+ + + + Добавить новый + + + +
+ +
+ + +
+ + +
+ + +
+ +
+ +
+
+
+
+ +
+

 Новый товар

+
+
+ +
+ + +
+
+ + +
+
+ + + + +
+ +
+ + +
+
+
+
+ + + + + diff --git a/www/templates_ua/pages/doc/outcomeitem.html b/www/templates_ua/pages/doc/outcomeitem.html new file mode 100644 index 000000000..8ad113b24 --- /dev/null +++ b/www/templates_ua/pages/doc/outcomeitem.html @@ -0,0 +1,145 @@ + + + + + + + +
+

Списание ТМЦ

+
+
+
+ + +
+
+ + +
+
+ + +
+ +
+ + + + +
+ +
+
+
+
+ {{#usescanner}} + + {{/usescanner}} + Добавить товар + + + + + {{#usesnumber}} + + + {{/usesnumber}} + + + + + + + + {{#usesnumber}} + + + {{/usesnumber}} + + + + + + +
НазваниеЕд.СерияКол.
+ + +
+
+
+
+ +   +   + +
+
+ + +

+ +
+
+

Ввод товара

+
+
+ +
+ + + + + Наличие + + +
+ {{#usesnumber}} +
+ + + + +
+ {{/usesnumber}} +
+ + + + +
+ +
+   +
+
+
+ +
+ + + + + diff --git a/www/templates_ua/pages/doc/outcomemoney.html b/www/templates_ua/pages/doc/outcomemoney.html new file mode 100644 index 000000000..48981bb9d --- /dev/null +++ b/www/templates_ua/pages/doc/outcomemoney.html @@ -0,0 +1,65 @@ + + + + + + + +
+

Расходный ордер

+
+
+
+ + +
+
+ + +
+ +
+ + +
+
+ + +
+
+ + +
+ +
+ + + + +
+ +
+
+ +
+
+ +   +   + +
+
+ + + + +
+ + + + + + diff --git a/www/templates_ua/pages/doc/poscheck.html b/www/templates_ua/pages/doc/poscheck.html new file mode 100644 index 000000000..e90058cb0 --- /dev/null +++ b/www/templates_ua/pages/doc/poscheck.html @@ -0,0 +1,391 @@ + + + + + +
+

Кассовый чек

+
+
+
+ + +
+ +
+ + +
+
+ + +
+
+ + + + Добавить нового + +
+ + + + +
+
+
+ + +
+ + +
+
+ + +
+ +
+ + + + + +
+ +
+ +
+
+
+ {{#usescanner}} + + {{/usescanner}} + + Добавить товар + Добавить услугу + + + + + + {{#usesnumber}} + + + {{/usesnumber}} + + + + + + + + + + + + + + {{#usesnumber}} + + + {{/usesnumber}} + + + + + + + + + + + + + + + {{#usesnumber}} + + + {{/usesnumber}} + + + + + + + + + + + + + {{^usesnumber}} + + {{/usesnumber}} + {{#usesnumber}} + + {{/usesnumber}} + + + + + + + {{^usesnumber}} + + {{/usesnumber}} + {{#usesnumber}} + + {{/usesnumber}} + + + + + + + {{^usesnumber}} + + {{/usesnumber}} + {{#usesnumber}} + + {{/usesnumber}} + + + + + + {{^usesnumber}} + + {{/usesnumber}} + {{#usesnumber}} + + {{/usesnumber}} + + + + + + + {{^usesnumber}} + + {{/usesnumber}} + {{#usesnumber}} + + {{/usesnumber}} + + + + + +
НазваниеКодЕд.СерияДатаКол.ЦенаСумма
Всего:Всего:
Скидка:Скидка:
К оплате:К оплате:
Внесена оплата:Внесена оплата:
Сдача:Сдача:
+
+
+
+
+ + +   + + + +
+
+ + + + +
+
+

Ввод товара

+
+
+ +
+ + + + Наличие: + +
+ {{#usesnumber}} +
+ + + +
+ + {{/usesnumber}} +
+ + + +
+ +
+ + + +
+ + +
+ +   +
+ + +
+
+
+
+

Ввод услуги

+
+
+ +
+ + + + + +
+ +
+ + + +
+ +
+ + + +
+ + +
+ +   +
+ + +
+
+
+
+

 Новый контрагент

+
+
+ +
+ + +
+
+ + +
+ + +
+ + +
+
+
+
+ + + {{#usescanner}} + + {{/usescanner}} + + diff --git a/www/templates_ua/pages/doc/prodissue.html b/www/templates_ua/pages/doc/prodissue.html new file mode 100644 index 000000000..8233bcad8 --- /dev/null +++ b/www/templates_ua/pages/doc/prodissue.html @@ -0,0 +1,158 @@ + + + + + +
+

Списание на производство

+
+
+
+ + +
+
+ + +
+
+ + + + + +
+
+
+
+ + +
+
+ + +
+ + + +
+
+
+
+ {{#usescanner}} + + {{/usescanner}} + Добавить ТМЦ + + + + + + + {{#usesnumber}} + + + {{/usesnumber}} + + + + + + + + + + + + + {{#usesnumber}} + + + {{/usesnumber}} + + + + + + + + + + +
НазваниеКодЕд.СерияДатаКол.
+
+
+
+
+ + +   + + +
+
+
+
+

Ввод товара

+
+
+ +
+ + + + Наличие : + +
+ {{#usesnumber}} +
+ + + +
+ + {{/usesnumber}} +
+ + + +
+ + + +
+ +   +
+ + +
+
+
+ {{#usescanner}} + + {{/usescanner}} + + + diff --git a/www/templates_ua/pages/doc/prodreceipt.html b/www/templates_ua/pages/doc/prodreceipt.html new file mode 100644 index 000000000..c5dc6781a --- /dev/null +++ b/www/templates_ua/pages/doc/prodreceipt.html @@ -0,0 +1,170 @@ + + + + + + + +
+

Оприходование с производства

+
+
+
+ + +
+
+ + +
+ +
+
+
+ + +
+ +
+ + +
+
+ + + + +
+ + +
+
+
+
+ Добавить позицию + + + + + + + {{#usesnumber}} + + + {{/usesnumber}} + + + + + + + + + + + + + + {{#usesnumber}} + + + {{/usesnumber}} + + + + + + + + + + + {{^usesnumber}} + + {{/usesnumber}} + {{#usesnumber}} + + {{/usesnumber}} + + + + + + + +
НаименованиеКодЕд.СерияДатаКол.ЦенаСумма
+
Всего:Всего:
+ +
+
+
+
+ + +   + + +
+
+ + +
+ + +
+

Ввод товара

+
+
+ + +
+ + + + Добавить новый + + + +
+ {{#usesnumber}} +
+ + + +
+
+ + + +
+ {{/usesnumber}} +
+ + +
+ + +
+ + +
+ +
+ +
+
+
+
+ + + + + + + diff --git a/www/templates_ua/pages/doc/retcustissue.html b/www/templates_ua/pages/doc/retcustissue.html new file mode 100644 index 000000000..4121614df --- /dev/null +++ b/www/templates_ua/pages/doc/retcustissue.html @@ -0,0 +1,193 @@ + + + + + +
+

Возврат поставщику

+
+
+
+ + +
+
+ + +
+ +
+ + + + + + +
+ + +
+ + + + + +
+ + + +
+
+
+ + +
+
+ + +
+ +
+
+
+
+ + Добавить товар + + + + + + {{#usesnumber}} + + + {{/usesnumber}} + + + + + + + + + + + + {{#usesnumber}} + + + {{/usesnumber}} + + + + + + + + + + + {{^usesnumber}} + + {{/usesnumber}} + {{#usesnumber}} + + {{/usesnumber}} + + + + + + {{^usesnumber}} + + {{/usesnumber}} + {{#usesnumber}} + + {{/usesnumber}} + + + + + + +
НазваниеКодЕд.СерияДатаКол.ЦенаСумма
Всего:Всего:
Внесена оплата:Внесена оплата:
+
+
+
+
+ + +   + + + +
+
+ + + +
+
+

Ввод товара

+
+
+ +
+ + + + Наличие : + +
+
+ + + +
+
+ + + +
+ + +
+ +   +
+ + +
+
+
+ + + + diff --git a/www/templates_ua/pages/doc/returnissue.html b/www/templates_ua/pages/doc/returnissue.html new file mode 100644 index 000000000..aad969d25 --- /dev/null +++ b/www/templates_ua/pages/doc/returnissue.html @@ -0,0 +1,182 @@ + + + + + +
+

Возвратная накладная

+
+
+
+ + +
+
+ + + +
+
+ + + + + +
+ +
+
+
+ + +
+
+ + +
+
+ + +
+ +
+
+
+
+ + Добавить товар + + + + + {{#usesnumber}} + + + {{/usesnumber}} + + + + + + + + + + + + {{#usesnumber}} + + + {{/usesnumber}} + + + + + + + + + + + + {{^usesnumber}} + + {{/usesnumber}} + {{#usesnumber}} + + {{/usesnumber}} + + + + + + + {{^usesnumber}} + + {{/usesnumber}} + {{#usesnumber}} + + {{/usesnumber}} + + + + +
НазваниеЕд.СерияДатаКол.ЦенаСумма
Всего:Всего:
Внесена оплата:Внесена оплата:
+
+
+
+
+ + +   + + +
+
+ + + +
+
+

Ввод товара

+
+
+ +
+ + + + +
+
+ + + +
+
+ + + +
+ + +
+ +   +
+ + +
+
+
+ + + + diff --git a/www/templates_ua/pages/doc/serviceact.html b/www/templates_ua/pages/doc/serviceact.html new file mode 100644 index 000000000..a04a87b9b --- /dev/null +++ b/www/templates_ua/pages/doc/serviceact.html @@ -0,0 +1,253 @@ + + + + + +
+

Акт выполненых работ + + +

+ +
+
+
+ + +
+
+ + + + + Добавить нового +
+
+ + + Заполняется в cервисных центрах, мастерских, СТО... +
+
+ + + +
+ +
+
+
+ + +
+ +
+ + + + +
+ + +
+
+ + + + +
+
+ +
+
+
+ Добавить работу + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
НазваниеОписаниеСтоимость
+
Всего:
Скидка:
К оплате:
Внесена оплата:
+ +
+
+
+
+ + +   +   + +
+
+ + + + +
+ + + +
+

Редактирование

+
+
+ +
+ + +
+
+ + + +
+ +
+
+ +
+ + +
+
+ + + + +
+
+ + +
+ + + +
+
+
+
+ + Добавить работу + +
Работы
+ + + + + + + + + + + + + + + + + + + +
НазваниеЧасов
+ + + +
+ + Добавить исполнителя +
Исполнители
+ + + + + + + + + + + +
ФИО
+ +
+ Добавить оборудование +
Оборудование
+ + + + + + + + + + + + + +
НаименованиеИнв. номер
+ +
+ + +
+
+
+
+ + +   + +
+
+ +
+ + + +
+

Редактирование

+
+
+ +
+ + +
+ + +
+
+ +
+ + +
+
+
+
+ + +
+

Добавить исполнителя

+
+
+ +
+ + +
+ +
+ +
+
+
+
+
+

Добавить оборудование

+
+
+ +
+ + +
+ +
+ + +
+
+
+
+ + + diff --git a/www/templates_ua/pages/doc/transitem.html b/www/templates_ua/pages/doc/transitem.html new file mode 100644 index 000000000..f41c006c1 --- /dev/null +++ b/www/templates_ua/pages/doc/transitem.html @@ -0,0 +1,80 @@ + + + + + + + +
+

Перекомплектация ТМЦ

+
+
+
+ + +
+
+ + +
+
+ + +
+ +
+ + + + +
+ +
+ +
+
+ + + +
+
+ +
+ +
+
+
+ + + +
+
+ +
+ +
+
+
+
+
+
+ +   +   + +
+
+ + +

+ +
+ + + + + + diff --git a/www/templates_ua/pages/doc/warranty.html b/www/templates_ua/pages/doc/warranty.html new file mode 100644 index 000000000..fab483039 --- /dev/null +++ b/www/templates_ua/pages/doc/warranty.html @@ -0,0 +1,119 @@ + + + + + +
+

Гарантийный талон

+ +
+
+
+ + +
+
+ + +
+ +
+ + +
+
+ + + + +
+
+
+ +
+
+ Добавить товар + + + + + + + + + + + + + + + + + + + + + + + +
НазваниеЕд.Кол.ЦенаСуммаСерийный номерГарантия
+
+ +
+
+
+
+ + +   + +
+
+
+
+

Ввод товара

+
+
+
+ + + Наличие : + + +
+
+ + + +
+
+ + + +
+
+ + + +
+
+ + + +
+
+ +   +
+ + +
+
+ +
+ + + + diff --git a/www/templates_ua/pages/main.html b/www/templates_ua/pages/main.html new file mode 100644 index 000000000..a6914684f --- /dev/null +++ b/www/templates_ua/pages/main.html @@ -0,0 +1,73 @@ + + + + +
+
+ +
+
+
+ +
+
+ {{#usesnumber}} +
+
+
+ {{/usesnumber}} + +
+ +
+
+
+
+
+
+ +
+
+
+ +
+
+
+ +
+
+
+ +
+
+
+ + + + +
+ + + diff --git a/www/templates_ua/pages/notifylist.html b/www/templates_ua/pages/notifylist.html new file mode 100644 index 000000000..2d57bdee3 --- /dev/null +++ b/www/templates_ua/pages/notifylist.html @@ -0,0 +1,38 @@ + + + +
+
+

Уведомления

+ + + + + + + + + + +
+     +

+

Новое
+
+ +
+
+ + + + \ No newline at end of file diff --git a/www/templates_ua/pages/options.html b/www/templates_ua/pages/options.html new file mode 100644 index 000000000..65f508e1b --- /dev/null +++ b/www/templates_ua/pages/options.html @@ -0,0 +1,290 @@ + + +

Настройки

+
+
+

Настройки системы

+ +
+
+ + + +
+
+ + + Учет отдельно по каждой закупочной цене позволяет точно учтитывать + прибыль но осложняет списание партий + +
+ +
+ + + + + + + Введите наименования типов цен. Ненужные поля оставте пустыми + +
+
+ + + +
+
+ + + +
+
+ + + Используется если не задана цена в товаре или в категории товара +
+ + + +
+ + + +
+ +
+ + + +
+
+ + + +
+ +
+ + + +
+
+ + + +
+
+ + + +
+ + + +
+ +
+ +
+ +

Данные о компании

+
+ +
+ + +
+
+ + +
+
+ + + Вводится если название маазина отличается от названия компании +
+ +
+ + +
+ + +
+ + +
+
+ +
+ +
+

Настройка принтера

+ Настройки узкого принтера для печати чеков и этикеток +
+
+ + +
+
+ +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+ + + +
+ +
+
+ +
+
+

Настройка меню

+
+
+
+
+
+ + + +
+ +
+ + + +
+
+ + + +
+
+ + + +
+
+ + + +
+ + +
+ Добавить + + + + + + + + + + + + + + + +
НазваниеИмя PHP классаТипГруппа
+   
+
+
+
+
+
+
Редактирование пункта меню
+
+ + +
+ + +
+
+ + +
+
+ + +
+
+ + +
+ +
+ + + +
+ + +
+ +     Отменить +
+ +
+
+ +
+ + +
+ +
+ + + + \ No newline at end of file diff --git a/www/templates_ua/pages/poslist.html b/www/templates_ua/pages/poslist.html new file mode 100644 index 000000000..e8c839a11 --- /dev/null +++ b/www/templates_ua/pages/poslist.html @@ -0,0 +1,85 @@ + + + + + +
+
+
+

Справочник POS терминалов

+ Добавить + + + + + + + + + + + + + + + +
НазваниеФилиал
+ + +
+ +
+
+
+ +
+ + +
+
+ + +
+ + +
+ + +
+
+ + +
+
+ + +
+ + +
+ + +
+
+    + +
+
+ + + +
+
+ + + \ No newline at end of file diff --git a/www/templates_ua/pages/reference/categorylist.html b/www/templates_ua/pages/reference/categorylist.html new file mode 100644 index 000000000..80bc6e441 --- /dev/null +++ b/www/templates_ua/pages/reference/categorylist.html @@ -0,0 +1,66 @@ + + + + + +
+
+
+

Категории товаров + + +

+ Добавить + + + + + + + + + + + +
Название
+ + +
+ + +
+
+
+
+ +
+
+ + +
+
+ +
+ + + + + + Типы цен задаются в настройках. +
+
+ +    + + +
+
+
+ + + + + \ No newline at end of file diff --git a/www/templates_ua/pages/reference/customerlist.html b/www/templates_ua/pages/reference/customerlist.html new file mode 100644 index 000000000..2e8e9f51e --- /dev/null +++ b/www/templates_ua/pages/reference/customerlist.html @@ -0,0 +1,224 @@ + + + + + +
+
+
+

Справочник контрагентов

+ + Добавить контрагента +
+ + + + + + + + + + + + + +
   + +   +   +
+
+
+ + +
+
+ + + +
+

  Редактировать контрагента

+
+
+ +
+ + +
+ +
+ + +
+
+ + +
+ + +
+ + +
+
+ + +
+ + + +
+
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+ +
+ + +
+
+ + +
+
+
+
+
+    + + +
+
+
+ + + +
+
+
Расписание событий
+ + + + + + +

+ +

+

+
+
+
+ +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+ +
+
+
+
Коментарии
+ + + + + +
+ + +

+
+
+
+
+ + +
+ +
+
+
+
Прикрепленные файлы
+ + + + + +
+
+
+
+ + + +
+ +
+ + +
+ + + + +
+
+ +
+ + + + diff --git a/www/templates_ua/pages/reference/employeelist.html b/www/templates_ua/pages/reference/employeelist.html new file mode 100644 index 000000000..a024de278 --- /dev/null +++ b/www/templates_ua/pages/reference/employeelist.html @@ -0,0 +1,114 @@ + + + + + +
+ + +
+

Справочник сотрудников

+ Добавить + + + + + + + {{#usebranch}} {{/usebranch}} + + + + + + + + + {{#usebranch}} {{/usebranch}} + + + + + +
ФИОЛогинФилиал
+
+ +
+ + +
+
+
+
+
+ + + +
+
+ + + +
+
+ + +
+
+ + +
+ {{#usebranch}} +
+ + +
+ {{/usebranch}} +
+ + +
+
+ + +
+
+    + +
+
+ +
+
+
+
+ + + + + \ No newline at end of file diff --git a/www/templates_ua/pages/reference/eqlist.html b/www/templates_ua/pages/reference/eqlist.html new file mode 100644 index 000000000..da843cf66 --- /dev/null +++ b/www/templates_ua/pages/reference/eqlist.html @@ -0,0 +1,136 @@ + + + + + +
+ +
+

Справочник оборудования

+ + Добавить + + + + + + + + + + + + + + + + + + + +
НаименованиеИнв. номерСер. номер
+ +   +   +
+
+
+ +
+

Редактирование

+
+ +
+ +
+
+
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+
+ +
+ +
+ +
+
+ +
+ + +
+
+
+    + +
+
+ + +
+ + + К списку +

+ + + + + + + + + + + + + + + + +
НарядУчасток
+ +
+ +
+ + + diff --git a/www/templates_ua/pages/reference/itemlist.html b/www/templates_ua/pages/reference/itemlist.html new file mode 100644 index 000000000..b8345d8c5 --- /dev/null +++ b/www/templates_ua/pages/reference/itemlist.html @@ -0,0 +1,250 @@ + + + + + + + + +
+ +
+

Справочник товаров

+ + Добавить + + + {{#useimages}} {{/useimages}} + + + + + + + + + + + + + + + {{#useimages}} {{/useimages}} + + + + + + + + + + + + + + +
НаименованиеАртикулКатегорияЕд.Отп. ценаЯчейкаПримечание
+ + + + {{#useset}} +   + {{/useset}} +    +   + + +
+
+
+ + +
+
+

Редактирование товара

+
+ +
+ +
+
+
+ +
+ +
+
+ +
+ +
+ + + + + + Типы цен задаются в настройках. Для наценок указать '%' после цифры +
+
+ + +
+ +
+ +
+
+ +
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ + Если задано то при уменьшении количества на складе меньше заданного + товар появится в соответствующем виджете на главной странице +
+
+ {{#usesnumber}} +
+ + +
+ + + {{/usesnumber}} +
+ +
+ +
+
+
+ + +
+
+ + +
+ {{#useimages}} +
+ + +
+
+ +
+ + +
+ +
+
+ + {{/useimages}} +
+ +
+ +
+
+ +
+    + +
+
+ +
+
+ +
+ +
+ К справочнику +

+
+ + + + + + +
+ + + +
НаименованиеКодКол.
+
+ +
+ + + + + + + + diff --git a/www/templates_ua/pages/reference/mflist.html b/www/templates_ua/pages/reference/mflist.html new file mode 100644 index 000000000..0f4d0a598 --- /dev/null +++ b/www/templates_ua/pages/reference/mflist.html @@ -0,0 +1,72 @@ + + + + + +
+
+
+

Кассы

+ Добавить + + + + {{#usebranch}} {{/usebranch}} + + + + + + + + + {{#usebranch}} {{/usebranch}} + + + + + + +
НазваниеФилиалОписаниеБаланс
+ +
+ + +
+ + +
+
+
+
+ +
+
+ + +
+ {{#usebranch}} +
+ + +
+ {{/usebranch}} +
+ + +
+ + +    + + +
+
+
+ + + + + \ No newline at end of file diff --git a/www/templates_ua/pages/reference/prodarealist.html b/www/templates_ua/pages/reference/prodarealist.html new file mode 100644 index 000000000..0f525d26c --- /dev/null +++ b/www/templates_ua/pages/reference/prodarealist.html @@ -0,0 +1,44 @@ + + + + + +
+
+
+

Производственные участки

+ Добавить + + + + + + + + + + + + +
Название
+ + +
+ +
+
+ + +
+ + +    + + +
+
+
+ + + \ No newline at end of file diff --git a/www/templates_ua/pages/reference/servicelist.html b/www/templates_ua/pages/reference/servicelist.html new file mode 100644 index 000000000..5afca4a28 --- /dev/null +++ b/www/templates_ua/pages/reference/servicelist.html @@ -0,0 +1,82 @@ + + + + + +
+
+
+

Услуги, работы

+ + Добавить + + + + + + + + + + + + + + + + +
НазваниеСтоимостьНормо-часы
+
+ +
+ + +
+
+
+
+
+ + +
+
+ +
+ +
+
+
+ +
+ +
+
+
+ + +
+    + + +
+
+ + + \ No newline at end of file diff --git a/www/templates_ua/pages/reference/storelist.html b/www/templates_ua/pages/reference/storelist.html new file mode 100644 index 000000000..6f4d78781 --- /dev/null +++ b/www/templates_ua/pages/reference/storelist.html @@ -0,0 +1,66 @@ + + + + + + + + +
+
+

Справочник складов

+ + + + {{#usebranch}} {{/usebranch}} + + + + + + {{#usebranch}} {{/usebranch}} + + + + +
НазваниеФилиалОписание
+ +
+ + Добавить +
+
+
+
+ + +
+ + +
+ {{#usebranch}} +
+ + +
+ {{/usebranch}} +
+ + +
+
+   + +
+ + + +
+
+ + + + + diff --git a/www/templates_ua/pages/register/doclist.html b/www/templates_ua/pages/register/doclist.html new file mode 100644 index 000000000..729a5dcf3 --- /dev/null +++ b/www/templates_ua/pages/register/doclist.html @@ -0,0 +1,129 @@ + + +
+
+ +

Журнал документов + +

+ + + + Скачать CSV + + + + + + + + + {{#usebranch}} {{/usebranch}} + + + + + + + + + + + + + + + + + + + + {{#usebranch}} {{/usebranch}} + + + + + + + + + + + + +
ДокументНомерДатаКонтрагентСуммаСтатусФилиалОснование
   +    +    + + + + + +
+ + +
+
+ +
+ + + + +
+ +
+
+
+
+
+ + + + diff --git a/www/templates_ua/pages/register/gilist.html b/www/templates_ua/pages/register/gilist.html new file mode 100644 index 000000000..9e704ddb0 --- /dev/null +++ b/www/templates_ua/pages/register/gilist.html @@ -0,0 +1,117 @@ + + +
+
+ +

Журнал продаж

+ + + + Создать РН  + Создать СФ +
Скачать CSV + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
НомерДатаЗаказКлиентСумма СтатусПримечание
+ + +   + +
+ +
+
+ +
+ +
+ + + +
+
+ + + + +
+ +
+
+ + + + + diff --git a/www/templates_ua/pages/register/grlist.html b/www/templates_ua/pages/register/grlist.html new file mode 100644 index 000000000..9b80b0c92 --- /dev/null +++ b/www/templates_ua/pages/register/grlist.html @@ -0,0 +1,108 @@ + + +
+
+ +

Журнал закупок

+ + + + Создать +
Скачать CSV + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
НомерДатаПоставщикСумма СтатусПримечание
+ + +   + +
+ +
+
+ +
+ +
+ + + +
+
+ + + + +
+ +
+
+ + + + + diff --git a/www/templates_ua/pages/register/itemlist.html b/www/templates_ua/pages/register/itemlist.html new file mode 100644 index 000000000..786bb6d4e --- /dev/null +++ b/www/templates_ua/pages/register/itemlist.html @@ -0,0 +1,178 @@ + + + + + + + + +
+ +
+

Товары на складе

+ + Скачать CSV + + + + {{#useimages}} {{/useimages}} + + + + + + + + + + + + + + + + + + + + + {{#useimages}} {{/useimages}} + + + + + + + + + + + + + + + + + + {{#useimages}} {{/useimages}} + + + + + + +
НазваниеАртикулКатегорияЕд.Мин. Кол. Кол. Прод. цена На сумму
+ + +
Всего на сумму:
+
+ +
+
+ К списку +

+ + + + {{#usesnumber}} + + + + {{/usesnumber}} + + + + + + + + + + + {{#usesnumber}} + + + + {{/usesnumber}} + + + + + + + +
СкладСерияДата серииГоден до Зак. ценаКол. На суммуПрод. цена
+ Перемещение партий + +
+ Перемещение между партиями, например для исправления отрицательных количеств. + Создается и автоматически проводится документ 'Перекомплектация ТМЦ', который не подлежит дальнейшему редактированию, + только отмене. + +
+ + + + + + + + + + + + +
+ +
+
+ + + +
+ + + diff --git a/www/templates_ua/pages/register/ordercustlist.html b/www/templates_ua/pages/register/ordercustlist.html new file mode 100644 index 000000000..2b5f48bbd --- /dev/null +++ b/www/templates_ua/pages/register/ordercustlist.html @@ -0,0 +1,114 @@ + + +
+
+ +

Журнал заявок

+ + + + Создать +
Скачать CSV + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
НомерДатаПоставщикСумма Статус
Комментарий + +   + +
+ +
+
+ + + + +
+ +
+ + + +
+
+ + + + +
+ +
+
+ + + + + diff --git a/www/templates_ua/pages/register/orderlist.html b/www/templates_ua/pages/register/orderlist.html new file mode 100644 index 000000000..f79e517d9 --- /dev/null +++ b/www/templates_ua/pages/register/orderlist.html @@ -0,0 +1,127 @@ + + +
+
+ +

Журнал заказов

+ + + + Новый заказ + + +
Скачать CSV + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
НомерДатаЗаказчикСумма Статус
+ +   + +
+ +
+
+
+ +
+ + + +
+
+ + + + +
+ +
+
+ + {{#askclose}} + + + + {{/askclose}} + + + diff --git a/www/templates_ua/pages/register/paycustlist.html b/www/templates_ua/pages/register/paycustlist.html new file mode 100644 index 000000000..8ef62296b --- /dev/null +++ b/www/templates_ua/pages/register/paycustlist.html @@ -0,0 +1,124 @@ + + +
+
+

Расчеты с контрагентами

+ + +
Скачать CSV + + + + + + + + + + + + + + + + + + + + + + + + + +
ИмяТел.Долг нашДолг нам
Документы
+
+ +
+ к списку +

+
Скачать CSV + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ДокументНомерДатаСуммаК оплате
+ +     + + +
+ +
+ +
+ + + + + Оплаты ( )
+ + + + + + + + + + +
  
+ + +
+
+
+
+
+ + + + diff --git a/www/templates_ua/pages/register/paylist.html b/www/templates_ua/pages/register/paylist.html new file mode 100644 index 000000000..dd784d4ef --- /dev/null +++ b/www/templates_ua/pages/register/paylist.html @@ -0,0 +1,141 @@ + + +
+
+ +

Журнал платежей

+ + + +
+ +
+
+ + +
Скачать CSV + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ДатаСчетПриход Расход НомерСоздалКонтрагентТип дохода/расходаПримечание
+ +       + + +
+ +
+ +
+ +
+ +
+ +
+
+
+ +
+ + + + + + + + + diff --git a/www/templates_ua/pages/register/serlist.html b/www/templates_ua/pages/register/serlist.html new file mode 100644 index 000000000..9772a8b15 --- /dev/null +++ b/www/templates_ua/pages/register/serlist.html @@ -0,0 +1,112 @@ + + +
+
+ +

Журнал услуг

+ + + + + Создать новый +
Скачать CSV + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
НомерДатаКлиентСумма СтатусПримечание
+ + +   + +
+ +
+
+ +
+ +
+ + +
+
+ + + + +
+ +
+
+ + + + + diff --git a/www/templates_ua/pages/register/stocklist.html b/www/templates_ua/pages/register/stocklist.html new file mode 100644 index 000000000..3413f98b9 --- /dev/null +++ b/www/templates_ua/pages/register/stocklist.html @@ -0,0 +1,99 @@ + + +
+
+ +

Журнал движения ТМЦ

+ + +
+
+
+
+ + + + + + + + + + + {{#usesnumber}} + + {{/usesnumber}} + + + + + + + + + + + + + + + {{#usesnumber}} + + {{/usesnumber}} + + + + + + + + + + +
ДатаДокументУч. цена Серия Кол Цена
+ + + + +
+ +
+ + + +
+ +
+ +
+ +
+
+
+ + + + + + diff --git a/www/templates_ua/pages/register/tasklist.html b/www/templates_ua/pages/register/tasklist.html new file mode 100644 index 000000000..39ead7f2c --- /dev/null +++ b/www/templates_ua/pages/register/tasklist.html @@ -0,0 +1,156 @@ + + + + + + + + + + + + + + + + + + + +
+
+

Журнал нарядов

+ +
+
+
+ + +
+ + + +
+
+ Создать + +
+
+ Скачать CSV + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
НомерНачалоЧас.ИсполнительРаботаСтатусОписание
+ +    + +
+
+
+ + +
+
+ + + + +
+ +
+ +
+
+ +
+ + +
+ +
+ +
+ + + + diff --git a/www/templates_ua/pages/report/abc.html b/www/templates_ua/pages/report/abc.html new file mode 100644 index 000000000..309b01a24 --- /dev/null +++ b/www/templates_ua/pages/report/abc.html @@ -0,0 +1,49 @@ + + + + +
+
+

АВС анализ

+ + + +
+
+   Результат отчета в тысячах

+ + + + +
+ +
+
+ +
+
+
+ + + diff --git a/www/templates_ua/pages/report/custorder.html b/www/templates_ua/pages/report/custorder.html new file mode 100644 index 000000000..c33c5044d --- /dev/null +++ b/www/templates_ua/pages/report/custorder.html @@ -0,0 +1,42 @@ + + + + + +
+
+

Товары в пути + +

+ + + + +
+
+ + + + + +
+
+
+ +
+
+
+ + \ No newline at end of file diff --git a/www/templates_ua/pages/report/emptask.html b/www/templates_ua/pages/report/emptask.html new file mode 100644 index 000000000..8653bd129 --- /dev/null +++ b/www/templates_ua/pages/report/emptask.html @@ -0,0 +1,41 @@ + + + + + +
+
+

Отчет по нарядам

+ + + +
+
+ + + + + +
+
+
+ +
+
+
+ + \ No newline at end of file diff --git a/www/templates_ua/pages/report/income.html b/www/templates_ua/pages/report/income.html new file mode 100644 index 000000000..dc6e671ce --- /dev/null +++ b/www/templates_ua/pages/report/income.html @@ -0,0 +1,44 @@ + + + + + +
+
+

Отчет по закупкам

+ + + +
+
+ + + + + +
+
+
+ +
+
+
+ + \ No newline at end of file diff --git a/www/templates_ua/pages/report/itemactivity.html b/www/templates_ua/pages/report/itemactivity.html new file mode 100644 index 000000000..22394b7cd --- /dev/null +++ b/www/templates_ua/pages/report/itemactivity.html @@ -0,0 +1,52 @@ + + + + + +
+
+

Движение по складу

+ + + +
+
+ + + + + +
+ + + +
+
+ +
+
+
+ + \ No newline at end of file diff --git a/www/templates_ua/pages/report/outcome.html b/www/templates_ua/pages/report/outcome.html new file mode 100644 index 000000000..ddf7a622c --- /dev/null +++ b/www/templates_ua/pages/report/outcome.html @@ -0,0 +1,49 @@ + + + + + +
+
+

Отчет по продажам

+ + + +
+
+ + + + + +
+
+
+ +
+
+
+ + \ No newline at end of file diff --git a/www/templates_ua/pages/report/payactivity.html b/www/templates_ua/pages/report/payactivity.html new file mode 100644 index 000000000..9dd435b3e --- /dev/null +++ b/www/templates_ua/pages/report/payactivity.html @@ -0,0 +1,45 @@ + + + + + +
+
+

Движение по счетам

+ + + +
+
+ + + + +
+ + + +
+
+ +
+
+
+ + \ No newline at end of file diff --git a/www/templates_ua/pages/report/paybalance.html b/www/templates_ua/pages/report/paybalance.html new file mode 100644 index 000000000..16e11e9fb --- /dev/null +++ b/www/templates_ua/pages/report/paybalance.html @@ -0,0 +1,44 @@ + + + + + +
+
+

Платежный баланс

+ + + +
+
+ + + + + + +
+ + + +
+
+ +
+
+
+ + \ No newline at end of file diff --git a/www/templates_ua/pages/report/price.html b/www/templates_ua/pages/report/price.html new file mode 100644 index 000000000..4725f9d3a --- /dev/null +++ b/www/templates_ua/pages/report/price.html @@ -0,0 +1,69 @@ + + + + + +
+
+

Прайс

+ + + +
+
+ + + + +
+ +
+
+ +
+
+
+ + \ No newline at end of file diff --git a/www/templates_ua/pages/report/prod.html b/www/templates_ua/pages/report/prod.html new file mode 100644 index 000000000..c41f5f5d1 --- /dev/null +++ b/www/templates_ua/pages/report/prod.html @@ -0,0 +1,45 @@ + + + + + +
+
+

Отчет по производству

+ + + +
+
+ + + + +
+
+
+ +
+
+
+ + \ No newline at end of file diff --git a/www/templates_ua/pages/service/armpos.html b/www/templates_ua/pages/service/armpos.html new file mode 100644 index 000000000..31521b234 --- /dev/null +++ b/www/templates_ua/pages/service/armpos.html @@ -0,0 +1,369 @@ + + + + + +

        АРМ кассира

+
+
+ +
+
+
+ + +
+ + +
+ +
+
+ +
+ +
+ +
+ +
+
+ {{#usescanner}} + + {{/usescanner}} + + +   Добавить товар +   Добавить услугу +    + + + + + + + + {{#usesnumber}} + + + {{/usesnumber}} + + + + + + + + + + + + + + + {{#usesnumber}} + + + {{/usesnumber}} + + + + + + + + + + + + + + + {{#usesnumber}} + + + {{/usesnumber}} + + + + + + + + + + + + {{^usesnumber}} + + {{/usesnumber}} + {{#usesnumber}} + + {{/usesnumber}} + + + + +
НазваниеКодЕд.СерияДатаКол.ЦенаСумма
Всего:Всего:
+
+
+ + + + + +
+
+ +
+
+
+ + +
+ +
+ + +
+
+ + + + + +
+ +
+ +
+
+ + + + Добавить нового + +
+ +
+ + +
+ + + + +
+ + + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+ +
+ + +
+ +
+
+ + +
+
+
+ +    +
+ +
+
+ +
+
+
+
+
+ +
+
+
+ +    +
+ +
+
+
+
+

Ввод товара

+
+
+ +
+ + + + Наличие: + +
+ {{#usesnumber}} +
+ + + +
+ + {{/usesnumber}} +
+ + + +
+ +
+ + + +
+ + +
+ +   +
+ + +
+
+
+ +
+

Ввод услуги

+
+
+ +
+ + + + + +
+ +
+ + + +
+ +
+ + + +
+ + +
+ +   +
+ + +
+
+
+
+

 Новый контрагент

+
+
+ +
+ + +
+
+ + +
+ + +
+ + +
+
+
+
+ + + + + + + + diff --git a/www/templates_ua/pages/service/export.html b/www/templates_ua/pages/service/export.html new file mode 100644 index 000000000..cea2c4813 --- /dev/null +++ b/www/templates_ua/pages/service/export.html @@ -0,0 +1,79 @@ + + + +
+
+

Экспорт номенклатуры

+
+
+ +
+ + +
+
+ + +
+
+ + +
+ +
+ + +
+
+ + + +
+
+ +
+
+ + +
+
+
+

Экспорт контрагентов

+
+
+ +
+ + +
+ + +
+ + +
+
+ + + +
+
+ +
+
+ + +
+
+
+ + + \ No newline at end of file diff --git a/www/templates_ua/pages/service/import.html b/www/templates_ua/pages/service/import.html new file mode 100644 index 000000000..b105b33b9 --- /dev/null +++ b/www/templates_ua/pages/service/import.html @@ -0,0 +1,257 @@ + + + +
+
+

Импорт номенклатуры + +

+ +

+
+ +
+ + +
+
+ + +
+
+ + +
+
+ + + +
+
+ + +
+
+ + +
+
+ + +
+ +
+ +
+
+
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+ +
+ + +
+
+ + +
+
+ + +
+ + +
+ + + +
+ {{#preview}} +
+
+ + + + + + + + + + + {{#list}} + + + + + + + + + + {{/list}} +
НаименованиеКодГруппаЕд.Кол.Уч. ценаОтп. цена
{{colname}}{{colcode}}{{colgr}}{{colmsr}}{{colqty}}{{colinprice}}{{colprice}}
+
+
+ {{/preview}} +
+
+

Импорт контрагентов + +

+ +

+
+
+ + +
+
+ + +
+ +
+ + + +
+
+ + +
+
+ + + +
+ +
+ + +
+ +
+ +
+ +
+
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+ + + + +
+ + + +
+ {{#preview2}} +
+
+ + + + + + + + + + {{#list2}} + + + + + + + + {{/list2}} +
НаименованиеТел.EmailГородАдрес
{{colname}}{{colphone}}{{colemail}}{{colcity}}{{coladdress}}
+
+
+ {{/preview2}} +
+
+ + + + + + \ No newline at end of file diff --git a/www/templates_ua/pages/userlogin.html b/www/templates_ua/pages/userlogin.html new file mode 100644 index 000000000..636416e9c --- /dev/null +++ b/www/templates_ua/pages/userlogin.html @@ -0,0 +1,106 @@ + + + + + + Zippy Склад + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + {{#alerterror}} + + {{/alerterror}} + +
+
+ +
+
+
+ v4.1.0 © zippy.com.ua +
+
+ + + + + + \ No newline at end of file diff --git a/www/templates_ua/pages/userprofile.html b/www/templates_ua/pages/userprofile.html new file mode 100644 index 000000000..1b826a74a --- /dev/null +++ b/www/templates_ua/pages/userprofile.html @@ -0,0 +1,144 @@ + + + + +
+
+ +

Мой профиль

+
+
+ + +
+ +
+ + +
+
+ + + +
+
+ + + +
+
+ + + +
+ +
+ + + +
+
+ + + +
+ + +
+
+
+ + + + + + + + + +
+ +
+
+
+ +
+
+
+
+ +

Смена пароля

+
+ +
+ + +
+ +
+ + +
+ + +
+
+
+ +

Сообщение пользователю

+
+
+ + + +
+
+ + + +
+
+ + + +
+ +
+ + + + +
+
+ + + + + + +
+ +
+ +
+ + +
+ +
+ + +
+ + + +
+ +
+
+
+ +
+
+ +
+ + + + + + + +
+ Родительский документ: +
+
+
+ + +
+ +
+ + +
+
+ +
+ +
+ +
+
+ +
+
История изменений статусов
+ + + + + + + + + + + + + + + +
СтатусДатаИзменил
+
+
+
История оплат
+ + + + + + + + + + + + + + + + + + +
ДатаСчетПриходРасход
+
+
+
Проводки по складу
+ + + + + + + + + + + + + + + + + + +
ТМЦКодКол.ЦенаСумма
+
+
+ + +
+ +
+
+ + + + + diff --git a/www/templates_ua/widgets/wdebitors.html b/www/templates_ua/widgets/wdebitors.html new file mode 100644 index 000000000..712286896 --- /dev/null +++ b/www/templates_ua/widgets/wdebitors.html @@ -0,0 +1,31 @@ + + + +
+ + Документы у которых сумма оплаты меньше суммы документаю Оплату можно + добавить в журнале Расчеты с контрагентами. +
+ + + + + + + + + + + + + + +
НомерТипКонтрагентДолг
+
+
+ +
+ + diff --git a/www/templates_ua/widgets/wminqty.html b/www/templates_ua/widgets/wminqty.html new file mode 100644 index 000000000..2eac905c1 --- /dev/null +++ b/www/templates_ua/widgets/wminqty.html @@ -0,0 +1,33 @@ + + + +
+ + Товары для которых задано минимальное количество на складе и актуальное количество меньше заданного +
+ Скачать CSV + + + + + + + + + + + + + + + + +
СкладТоварКодФактМин.
+
+ +
+
+ + diff --git a/www/templates_ua/widgets/wnoliq.html b/www/templates_ua/widgets/wnoliq.html new file mode 100644 index 000000000..458dc2fa8 --- /dev/null +++ b/www/templates_ua/widgets/wnoliq.html @@ -0,0 +1,33 @@ + + + +
+ + Товары которые не имели продаж в течение месяца. если товар больше не используется + нужно отметить это флажком в карточке товара +
+ Скачать CSV + + + + + + + + + + + + + + + +
СкладТоварКодКол.
+
+ +
+
+ + diff --git a/www/templates_ua/widgets/wopendocs.html b/www/templates_ua/widgets/wopendocs.html new file mode 100644 index 000000000..e9f887df3 --- /dev/null +++ b/www/templates_ua/widgets/wopendocs.html @@ -0,0 +1,30 @@ + + + +
+ + Документы со статусом новый, отредактирован или отменен +
+ + + + + + + + + + + + + + +
НомерТипДатаСумма
+
+
+ +
+ + diff --git a/www/templates_ua/widgets/wplanneddocs.html b/www/templates_ua/widgets/wplanneddocs.html new file mode 100644 index 000000000..0e527e7dd --- /dev/null +++ b/www/templates_ua/widgets/wplanneddocs.html @@ -0,0 +1,25 @@ + + + +
+ + Документы с флажком Запланирован ожидающие окончательного проведения +
+ + + + + + + + + + + +
НомерТипДата
+
+
+ + diff --git a/www/templates_ua/widgets/wrdoc.html b/www/templates_ua/widgets/wrdoc.html new file mode 100644 index 000000000..8f9391f9e --- /dev/null +++ b/www/templates_ua/widgets/wrdoc.html @@ -0,0 +1,28 @@ + + + + + + diff --git a/www/templates_ua/widgets/wreserved.html b/www/templates_ua/widgets/wreserved.html new file mode 100644 index 000000000..2473ddf82 --- /dev/null +++ b/www/templates_ua/widgets/wreserved.html @@ -0,0 +1,27 @@ + + + +
+ + Товары зарезервированные для продажи +
+ + + + + + + + + + + +
СкладТоварКол.
+
+ +
+
+ + diff --git a/www/templates_ua/widgets/wsdate.html b/www/templates_ua/widgets/wsdate.html new file mode 100644 index 000000000..1dea04821 --- /dev/null +++ b/www/templates_ua/widgets/wsdate.html @@ -0,0 +1,34 @@ + + + +
+ + Товары для которых истек или истекает срок годности +
+ + + + + + + + + + + + + + + + +
СкладТоварСерияГоден доКол.
+
+ +
+
+ + + diff --git a/www/templates_ua/widgets/wwaited.html b/www/templates_ua/widgets/wwaited.html new file mode 100644 index 000000000..1d11b7085 --- /dev/null +++ b/www/templates_ua/widgets/wwaited.html @@ -0,0 +1,27 @@ + + + +
+ + Товары ожидающие поступления +
+ + + + + + + + + + + +
СкладТоварКол.
+
+ +
+
+ + From 9506dc65e1bfe4137177aaace55a97b2e82f5fae Mon Sep 17 00:00:00 2001 From: Leon Date: Mon, 30 Mar 2020 13:37:50 +0300 Subject: [PATCH 04/10] =?UTF-8?q?=D0=B4=D0=B0=D1=82=D0=B0=20=20=D0=B2=20?= =?UTF-8?q?=20=D0=BF=D0=BB=D0=B0=D1=82=D0=B5=D0=B6=D0=B0=D1=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- www/app/entity/doc/document.php | 8 +------- www/app/entity/doc/goodsissue.php | 2 +- www/app/entity/doc/goodsreceipt.php | 2 +- www/app/entity/doc/incomemoney.php | 2 +- www/app/entity/doc/invoice.php | 2 +- www/app/entity/doc/invoicecust.php | 2 +- www/app/entity/doc/outcomemoney.php | 2 +- www/app/entity/doc/poscheck.php | 2 +- www/app/entity/doc/retcustissue.php | 2 +- www/app/entity/doc/returnissue.php | 2 +- www/app/entity/doc/serviceact.php | 2 +- www/app/entity/pay.php | 3 ++- www/app/pages/doc/goodsreceipt.php | 2 +- www/app/pages/register/paycustlist.php | 4 +++- www/app/pages/register/paylist.php | 4 ++-- www/app/pages/report/custorder.php | 4 ++-- www/templates/pages/register/paycustlist.html | 2 ++ www/templates_ua/pages/register/paycustlist.html | 2 ++ 18 files changed, 25 insertions(+), 24 deletions(-) diff --git a/www/app/entity/doc/document.php b/www/app/entity/doc/document.php index 33f60bbc2..741812571 100644 --- a/www/app/entity/doc/document.php +++ b/www/app/entity/doc/document.php @@ -273,13 +273,7 @@ protected function Cancel() { //отменяем оплаты $conn->Execute("delete from paylist where document_id = " . $this->document_id); - /* - $sql = "select coalesce( sum(amount),0) from paylist where document_id=" . $this->document_id; - $payed = $conn->GetOne($sql); - if ($payed != 0) { - \App\Entity\Pay::addPayment($this->document_id, 0 - $payed, $this->headerdata['payment'], ($payed>0) \App\Entity\Pay::PAY_OTHER_OUTCOME ? : \App\Entity\Pay::PAY_OTHER_INCOME, 'Отмена документа'); - } - */ + // возвращаем бонусы if ($this->headerdata['paydisc'] > 0) { diff --git a/www/app/entity/doc/goodsissue.php b/www/app/entity/doc/goodsissue.php index 616f3619f..aa4a8556c 100644 --- a/www/app/entity/doc/goodsissue.php +++ b/www/app/entity/doc/goodsissue.php @@ -98,7 +98,7 @@ public function Execute() { if ($this->headerdata['payment'] > 0 && $this->payed > 0) { - \App\Entity\Pay::addPayment($this->document_id, $this->payed, $this->headerdata['payment'], \App\Entity\Pay::PAY_BASE_INCOME); + \App\Entity\Pay::addPayment($this->document_id,$this->document_date, $this->payed, $this->headerdata['payment'], \App\Entity\Pay::PAY_BASE_INCOME); } return true; diff --git a/www/app/entity/doc/goodsreceipt.php b/www/app/entity/doc/goodsreceipt.php index 60e3ae6ea..38b0b307c 100644 --- a/www/app/entity/doc/goodsreceipt.php +++ b/www/app/entity/doc/goodsreceipt.php @@ -97,7 +97,7 @@ public function Execute() { if ($this->headerdata['payment'] > 0 && $this->payed > 0) { - \App\Entity\Pay::addPayment($this->document_id, 0 - $this->payed, $this->headerdata['payment'], \App\Entity\Pay::PAY_BASE_OUTCOME); + \App\Entity\Pay::addPayment($this->document_id,$this->document_date, 0 - $this->payed, $this->headerdata['payment'], \App\Entity\Pay::PAY_BASE_OUTCOME); } diff --git a/www/app/entity/doc/incomemoney.php b/www/app/entity/doc/incomemoney.php index 50988c806..0c9d5dd7b 100644 --- a/www/app/entity/doc/incomemoney.php +++ b/www/app/entity/doc/incomemoney.php @@ -15,7 +15,7 @@ class IncomeMoney extends Document { public function Execute() { - Pay::addPayment($this->document_id, $this->amount, $this->headerdata['payment'], $this->headerdata['type'], $this->notes); + Pay::addPayment($this->document_id,$this->document_date, $this->amount, $this->headerdata['payment'], $this->headerdata['type'], $this->notes); return true; diff --git a/www/app/entity/doc/invoice.php b/www/app/entity/doc/invoice.php index c3321aaf8..ffd547215 100644 --- a/www/app/entity/doc/invoice.php +++ b/www/app/entity/doc/invoice.php @@ -69,7 +69,7 @@ public function Execute() { } if ($this->headerdata['payment'] > 0 && $this->payed > 0) { - \App\Entity\Pay::addPayment($this->document_id, $this->payed, $this->headerdata['payment'], \App\Entity\Pay::PAY_BASE_OUTCOME); + \App\Entity\Pay::addPayment($this->document_id,$this->document_date, $this->payed, $this->headerdata['payment'], \App\Entity\Pay::PAY_BASE_OUTCOME); } return true; } diff --git a/www/app/entity/doc/invoicecust.php b/www/app/entity/doc/invoicecust.php index ccd0658b9..ee2dff2e7 100644 --- a/www/app/entity/doc/invoicecust.php +++ b/www/app/entity/doc/invoicecust.php @@ -53,7 +53,7 @@ public function generateReport() { public function Execute() { if ($this->headerdata['payment'] > 0 && $this->payed) { - \App\Entity\Pay::addPayment($this->document_id, 0 - $this->payed, $this->headerdata['payment'], \App\Entity\Pay::PAY_BASE_OUTCOME); + \App\Entity\Pay::addPayment($this->document_id,$this->document_date, 0 - $this->payed, $this->headerdata['payment'], \App\Entity\Pay::PAY_BASE_OUTCOME); } return true; diff --git a/www/app/entity/doc/outcomemoney.php b/www/app/entity/doc/outcomemoney.php index e214873df..445e756ec 100644 --- a/www/app/entity/doc/outcomemoney.php +++ b/www/app/entity/doc/outcomemoney.php @@ -15,7 +15,7 @@ class OutcomeMoney extends Document { public function Execute() { - Pay::addPayment($this->document_id, 0 - $this->amount, $this->headerdata['payment'], $this->headerdata['type'], $this->notes); + Pay::addPayment($this->document_id,$this->document_date, 0 - $this->amount, $this->headerdata['payment'], $this->headerdata['type'], $this->notes); return true; diff --git a/www/app/entity/doc/poscheck.php b/www/app/entity/doc/poscheck.php index 51f3dcea3..9e15575fc 100644 --- a/www/app/entity/doc/poscheck.php +++ b/www/app/entity/doc/poscheck.php @@ -170,7 +170,7 @@ public function Execute() { $sc->save(); } if ($this->headerdata['payment'] > 0 && $this->payed > 0) { - \App\Entity\Pay::addPayment($this->document_id, $this->payed, $this->headerdata['payment'], \App\Entity\Pay::PAY_BASE_INCOME); + \App\Entity\Pay::addPayment($this->document_id,$this->document_date, $this->payed, $this->headerdata['payment'], \App\Entity\Pay::PAY_BASE_INCOME); } return true; diff --git a/www/app/entity/doc/retcustissue.php b/www/app/entity/doc/retcustissue.php index 0946f64db..f7a0d5ac1 100644 --- a/www/app/entity/doc/retcustissue.php +++ b/www/app/entity/doc/retcustissue.php @@ -79,7 +79,7 @@ public function Execute() { $sc->save(); } if ($this->headerdata['payment'] > 0 && $this->payed > 0) { - \App\Entity\Pay::addPayment($this->document_id, $this->payed, $this->headerdata['payment'], \App\Entity\Pay::PAY_CANCEL_CUST); + \App\Entity\Pay::addPayment($this->document_id,$this->document_date, $this->payed, $this->headerdata['payment'], \App\Entity\Pay::PAY_CANCEL_CUST); $this->payamount = $this->amount; } diff --git a/www/app/entity/doc/returnissue.php b/www/app/entity/doc/returnissue.php index 47f6205f7..a200aaf9a 100644 --- a/www/app/entity/doc/returnissue.php +++ b/www/app/entity/doc/returnissue.php @@ -71,7 +71,7 @@ public function Execute() { $sc->save(); } if ($this->headerdata['payment'] > 0 && $this->payed > 0) { - \App\Entity\Pay::addPayment($this->document_id, 0 - $this->payed, $this->headerdata['payment'], \App\Entity\Pay::PAY_CANCEL); + \App\Entity\Pay::addPayment($this->document_id,$this->document_date, 0 - $this->payed, $this->headerdata['payment'], \App\Entity\Pay::PAY_CANCEL); $this->payamount = $this->amount; } diff --git a/www/app/entity/doc/serviceact.php b/www/app/entity/doc/serviceact.php index f95713833..55431eff2 100644 --- a/www/app/entity/doc/serviceact.php +++ b/www/app/entity/doc/serviceact.php @@ -57,7 +57,7 @@ public function Execute() { $sc->save(); } if ($this->headerdata['payment'] > 0 && $this->payed > 0) { - \App\Entity\Pay::addPayment($this->document_id, $this->payed, $this->headerdata['payment'], \App\Entity\Pay::PAY_BASE_INCOME); + \App\Entity\Pay::addPayment($this->document_id,$this->document_date, $this->payed, $this->headerdata['payment'], \App\Entity\Pay::PAY_BASE_INCOME); } return true; diff --git a/www/app/entity/pay.php b/www/app/entity/pay.php index 0856ae437..d156cbfa3 100644 --- a/www/app/entity/pay.php +++ b/www/app/entity/pay.php @@ -53,7 +53,7 @@ public static function getPayments($document_id) { * @param mixed $mf денежный счет * @param mixed $comment коментарий */ - public static function addPayment($document_id, $amount, $mf, $type, $comment = '') { + public static function addPayment($document_id,$paydate, $amount, $mf, $type, $comment = '') { if (0 == (int) $amount || 0 == (int) $document_id || 0 == $mf) return; @@ -68,6 +68,7 @@ public static function addPayment($document_id, $amount, $mf, $type, $comment = $pay->document_id = $document_id; $pay->amount = $amount; $pay->paytype = $type; + $pay->paydate = $paydate; $pay->notes = $comment; diff --git a/www/app/pages/doc/goodsreceipt.php b/www/app/pages/doc/goodsreceipt.php index ec5a16ef3..0b8a863e1 100644 --- a/www/app/pages/doc/goodsreceipt.php +++ b/www/app/pages/doc/goodsreceipt.php @@ -526,7 +526,7 @@ private function calcTotal() { $item->amount = $item->price * $item->quantity; $total = $total + $item->amount; } - $this->docform->total->setText(round($total)); + $this->docform->total->setText(H::fa($total)); } private function CalcPay() { diff --git a/www/app/pages/register/paycustlist.php b/www/app/pages/register/paycustlist.php index 08abeb1fd..57412115f 100644 --- a/www/app/pages/register/paycustlist.php +++ b/www/app/pages/register/paycustlist.php @@ -62,6 +62,7 @@ public function __construct() { $this->paypan->payform->add(new DropDownChoice('payment', \App\Entity\MoneyFund::getList( ), H::getDefMF())); $this->paypan->payform->add(new TextInput('pamount')); $this->paypan->payform->add(new TextInput('pcomment')); + $this->paypan->payform->add(new Date('pdate',time())); $this->paypan->add(new DataView('paylist', new ArrayDataSource($this, '_pays'), $this, 'payOnRow'))->Reload(); @@ -213,6 +214,7 @@ public function payOnRow($row) { public function payOnSubmit($sender) { $form = $this->paypan->payform; $amount = $form->pamount->getText(); + $pdate = $form->pdate->getDate(); if ($amount == 0) return; @@ -229,7 +231,7 @@ public function payOnSubmit($sender) { $type = Pay::PAY_BASE_OUTCOME; } - Pay::addPayment($this->_doc->document_id, $amount, $form->payment->getValue(), $type, $form->pcomment->getText()); + Pay::addPayment($this->_doc->document_id,$pdate, $amount, $form->payment->getValue(), $type, $form->pcomment->getText()); diff --git a/www/app/pages/register/paylist.php b/www/app/pages/register/paylist.php index 51f67f314..c7d8f004f 100644 --- a/www/app/pages/register/paylist.php +++ b/www/app/pages/register/paylist.php @@ -87,7 +87,7 @@ public function doclistOnRow($row) { $row->add(new Label('number', $doc->document_number)); - $row->add(new Label('date', date('d-m-Y H:i', $doc->paydate))); + $row->add(new Label('date', date('d-m-Y', $doc->paydate))); $row->add(new Label('notes', $doc->notes)); $row->add(new Label('amountp', H::fa($doc->amount > 0 ? $doc->amount : ""))); $row->add(new Label('amountm', H::fa($doc->amount < 0 ? 0 - $doc->amount : ""))); @@ -126,7 +126,7 @@ public function delOnClick($sender) { if ($pl == null) return; - Pay::addPayment($pl->document_id, 0 - $pl->amount, $pl->mf_id, Pay::PAY_CANCEL, $sender->notes->getText()); + Pay::addPayment($pl->document_id,time(), 0 - $pl->amount, $pl->mf_id, Pay::PAY_CANCEL, $sender->notes->getText()); $conn = \ZDB\DB::getConnect(); diff --git a/www/app/pages/report/custorder.php b/www/app/pages/report/custorder.php index fc125b9f1..75b6d1045 100644 --- a/www/app/pages/report/custorder.php +++ b/www/app/pages/report/custorder.php @@ -78,8 +78,8 @@ private function generateReport() { foreach ($docs as $doc) { foreach ($doc->unpackDetails('detaildata') as $item) { - if (!isset($items[$item['itemname']])) { - $items[$item['itemname']] = array('itemname' => $item->itemname, 'msr' => $item->msr, 'qty' => 0); + if (!isset($items[$item->itemname])) { + $items[$item->itemname] = array('itemname' => $item->itemname, 'msr' => $item->msr, 'qty' => 0); } $items[$item->itemname]['qty'] += $item->quantity; $total += $item->amount; diff --git a/www/templates/pages/register/paycustlist.html b/www/templates/pages/register/paycustlist.html index 8ef62296b..69cf2dc9e 100644 --- a/www/templates/pages/register/paycustlist.html +++ b/www/templates/pages/register/paycustlist.html @@ -91,6 +91,8 @@

+ + diff --git a/www/templates_ua/pages/register/paycustlist.html b/www/templates_ua/pages/register/paycustlist.html index 8ef62296b..69cf2dc9e 100644 --- a/www/templates_ua/pages/register/paycustlist.html +++ b/www/templates_ua/pages/register/paycustlist.html @@ -91,6 +91,8 @@

+ + From 9fa86c0806e642207fc0b6de1c5df319a620c149 Mon Sep 17 00:00:00 2001 From: Leon Date: Mon, 30 Mar 2020 17:31:56 +0300 Subject: [PATCH 05/10] =?UTF-8?q?=D0=BB=D0=BE=D0=BA=D0=B0=D0=BB=D0=B8?= =?UTF-8?q?=D0=B7=D0=BE=D0=B2=D1=8B=D0=BD=D1=8B=D0=B5=20=D1=88=D0=B0=D0=B1?= =?UTF-8?q?=D0=BB=D0=BE=D0=BD=D1=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- db/initdata_ua.sql | 66 +++++++++ www/templates/pages/options.html | 2 +- www/templates/widgets/wwaited.html | 2 +- www/templates_ua/404.html | 2 +- www/templates_ua/index.html | 2 +- .../modules/issue/pages/calendar.html | 30 ++-- .../modules/issue/pages/issuelist.html | 58 ++++---- .../modules/issue/pages/projectlist.html | 60 ++++---- .../modules/issue/pages/stat.html | 10 +- www/templates_ua/modules/note/pages/main.html | 52 +++---- .../modules/note/pages/showtopic.html | 8 +- www/templates_ua/modules/ocstore/items.html | 28 ++-- www/templates_ua/modules/ocstore/options.html | 20 +-- www/templates_ua/modules/ocstore/orders.html | 30 ++-- www/templates_ua/modules/shop/pages/base.html | 12 +- .../modules/shop/pages/catalog.html | 29 ++-- .../modules/shop/pages/compare.html | 2 +- .../modules/shop/pages/contact.html | 10 +- .../modules/shop/pages/grouplist.html | 26 ++-- .../modules/shop/pages/manufacturers.html | 12 +- .../modules/shop/pages/options.html | 34 ++--- .../modules/shop/pages/order.html | 18 +-- .../modules/shop/pages/productlist.html | 68 ++++----- .../modules/shop/pages/productview.html | 18 +-- www/templates_ua/modules/wc/items.html | 22 +-- www/templates_ua/modules/wc/options.html | 22 +-- www/templates_ua/modules/wc/orders.html | 26 ++-- www/templates_ua/pages/base.html | 87 +++++------ www/templates_ua/pages/branchlist.html | 24 +-- www/templates_ua/pages/doc/goodsissue.html | 88 +++++------ www/templates_ua/pages/doc/goodsreceipt.html | 82 +++++------ www/templates_ua/pages/doc/incomeitem.html | 46 +++--- www/templates_ua/pages/doc/incomemoney.html | 16 +- www/templates_ua/pages/doc/inventory.html | 36 ++--- www/templates_ua/pages/doc/invoice.html | 66 ++++----- www/templates_ua/pages/doc/invoicecust.html | 70 ++++----- www/templates_ua/pages/doc/order.html | 62 ++++---- www/templates_ua/pages/doc/ordercust.html | 56 +++---- www/templates_ua/pages/doc/outcomeitem.html | 38 ++--- www/templates_ua/pages/doc/outcomemoney.html | 16 +- www/templates_ua/pages/doc/poscheck.html | 100 ++++++------- www/templates_ua/pages/doc/prodissue.html | 40 ++--- www/templates_ua/pages/doc/prodreceipt.html | 50 +++---- www/templates_ua/pages/doc/retcustissue.html | 52 +++---- www/templates_ua/pages/doc/returnissue.html | 48 +++--- www/templates_ua/pages/doc/serviceact.html | 76 +++++----- www/templates_ua/pages/doc/task.html | 82 +++++------ www/templates_ua/pages/doc/transitem.html | 16 +- www/templates_ua/pages/doc/warranty.html | 48 +++--- www/templates_ua/pages/notifylist.html | 8 +- www/templates_ua/pages/options.html | 137 +++++++++--------- www/templates_ua/pages/poslist.html | 34 ++--- .../pages/reference/categorylist.html | 24 +-- .../pages/reference/customerlist.html | 68 ++++----- .../pages/reference/employeelist.html | 36 ++--- www/templates_ua/pages/reference/eqlist.html | 46 +++--- .../pages/reference/itemlist.html | 88 +++++------ www/templates_ua/pages/reference/mflist.html | 26 ++-- .../pages/reference/prodarealist.html | 12 +- .../pages/reference/servicelist.html | 30 ++-- .../pages/reference/storelist.html | 26 ++-- www/templates_ua/pages/register/doclist.html | 48 +++--- www/templates_ua/pages/register/gilist.html | 34 ++--- www/templates_ua/pages/register/grlist.html | 24 +-- www/templates_ua/pages/register/itemlist.html | 62 ++++---- .../pages/register/ordercustlist.html | 28 ++-- .../pages/register/orderlist.html | 30 ++-- .../pages/register/paycustlist.html | 38 ++--- www/templates_ua/pages/register/paylist.html | 40 ++--- www/templates_ua/pages/register/serlist.html | 30 ++-- .../pages/register/stocklist.html | 18 +-- www/templates_ua/pages/register/tasklist.html | 42 +++--- www/templates_ua/pages/report/abc.html | 10 +- www/templates_ua/pages/report/custorder.html | 12 +- www/templates_ua/pages/report/emptask.html | 10 +- www/templates_ua/pages/report/income.html | 10 +- .../pages/report/itemactivity.html | 14 +- www/templates_ua/pages/report/outcome.html | 14 +- .../pages/report/payactivity.html | 10 +- www/templates_ua/pages/report/paybalance.html | 10 +- www/templates_ua/pages/report/price.html | 8 +- www/templates_ua/pages/report/prod.html | 12 +- www/templates_ua/pages/service/armpos.html | 90 ++++++------ www/templates_ua/pages/service/export.html | 24 +-- www/templates_ua/pages/service/import.html | 86 +++++------ www/templates_ua/pages/userlogin.html | 6 +- www/templates_ua/pages/userprofile.html | 42 +++--- www/templates_ua/pages/users.html | 70 ++++----- www/templates_ua/printforms/abc.tpl | 6 +- www/templates_ua/printforms/custorder.tpl | 12 +- www/templates_ua/printforms/emptask.tpl | 14 +- www/templates_ua/printforms/goodsissue.tpl | 32 ++-- www/templates_ua/printforms/goodsreceipt.tpl | 22 +-- www/templates_ua/printforms/income.tpl | 20 +-- www/templates_ua/printforms/incomeitem.tpl | 14 +- www/templates_ua/printforms/incomemoney.tpl | 8 +- www/templates_ua/printforms/inventory.tpl | 6 +- www/templates_ua/printforms/invoice.tpl | 20 +-- www/templates_ua/printforms/invoicecust.tpl | 22 +-- www/templates_ua/printforms/itemactivity.tpl | 16 +- www/templates_ua/printforms/order.tpl | 18 +-- www/templates_ua/printforms/ordercust.tpl | 16 +- www/templates_ua/printforms/outcome.tpl | 34 ++--- www/templates_ua/printforms/outcomeitem.tpl | 10 +- www/templates_ua/printforms/outcomemoney.tpl | 8 +- www/templates_ua/printforms/payactivity.tpl | 12 +- www/templates_ua/printforms/paybalance.tpl | 12 +- www/templates_ua/printforms/poscheck.tpl | 24 +-- www/templates_ua/printforms/poscheck_bill.tpl | 12 +- www/templates_ua/printforms/price.tpl | 8 +- www/templates_ua/printforms/prod.tpl | 18 +-- www/templates_ua/printforms/prodissue.tpl | 10 +- www/templates_ua/printforms/prodreceipt.tpl | 16 +- www/templates_ua/printforms/retcustissue.tpl | 14 +- www/templates_ua/printforms/returnissue.tpl | 14 +- www/templates_ua/printforms/serviceact.tpl | 18 +-- .../printforms/serviceact_bill.tpl | 16 +- www/templates_ua/printforms/task.tpl | 16 +- www/templates_ua/printforms/transitem.tpl | 8 +- www/templates_ua/printforms/warranty.tpl | 22 +-- www/templates_ua/widgets/docview.html | 38 ++--- www/templates_ua/widgets/wdebitors.html | 8 +- www/templates_ua/widgets/wminqty.html | 8 +- www/templates_ua/widgets/wnoliq.html | 10 +- www/templates_ua/widgets/wopendocs.html | 6 +- www/templates_ua/widgets/wplanneddocs.html | 4 +- www/templates_ua/widgets/wrdoc.html | 6 +- www/templates_ua/widgets/wreserved.html | 6 +- www/templates_ua/widgets/wsdate.html | 10 +- www/templates_ua/widgets/wwaited.html | 8 +- 130 files changed, 1931 insertions(+), 1896 deletions(-) create mode 100644 db/initdata_ua.sql diff --git a/db/initdata_ua.sql b/db/initdata_ua.sql new file mode 100644 index 000000000..4b46dd413 --- /dev/null +++ b/db/initdata_ua.sql @@ -0,0 +1,66 @@ + +SET NAMES 'utf8'; + + + +INSERT INTO `users` (`user_id`, `userlogin`, `userpass`, `createdon`, `email`, `acl`, `disabled`, `options`) VALUES(4, 'admin', '$2y$10$GsjC.thVpQAPMQMO6b4Ma.olbIFr2KMGFz12l5/wnmxI1PEqRDQf.', '2017-01-01', 'admin@admin.admin', 'a:8:{s:7:"acltype";i:0;s:6:"onlymy";i:0;s:7:"aclview";N;s:7:"acledit";N;s:6:"aclexe";N;s:9:"aclbranch";N;s:7:"widgets";N;s:7:"modules";N;}', 0, 'a:4:{s:9:"smartmenu";s:3:"7,8";s:8:"defstore";s:2:"19";s:5:"defmf";s:1:"2";s:8:"pagesize";s:2:"15";}'); + + +INSERT INTO `stores` (`store_id`, `storename`, `description`, `branch_id`) VALUES (28, 'Основний склад', '', 0); +INSERT INTO `mfund` (`mf_id`, `mf_name`, `description`, `branch_id`) VALUES (2, 'Каса', 'Основна каса', 0); + + +INSERT INTO `metadata` (`meta_id`, `meta_type`, `description`, `meta_name`, `menugroup`, `disabled`) VALUES + (1, 4, 'Склади', 'StoreList', 'Товары', 0), + (2, 4, 'Номенклатура', 'ItemList', 'Товары', 0), + (3, 4, 'Співробітники', 'EmployeeList', '', 0), + (4, 4, 'Категорії товарів', 'CategoryList', 'Товары', 0), + (5, 4, 'Контрагенти', 'CustomerList', '', 0), + (6, 1, 'Прибуткова накладна', 'GoodsReceipt', 'Закупки', 0), + (7, 1, 'Видаткова накладна', 'GoodsIssue', 'Продажи', 0), + (8, 3, 'Загальний журнал', 'DocList', '', 0), + (10, 1, 'Гарантійний талон', 'Warranty', 'Продажи', 0), + (12, 2, 'Рух по складу', 'ItemActivity', 'Склад', 0), + (13, 2, 'ABC аналіз', 'ABC', '', 0), + (14, 4, 'Послуги, роботи', 'ServiceList', '', 0), + (15, 1, 'Акт виконаних робіт', 'ServiceAct', 'Услуги', 0), + (16, 1, 'Повернення від покупця', 'ReturnIssue', 'Продажи', 0), + (18, 3, 'Наряди', 'TaskList', '', 0), + (19, 1, 'Наряд', 'Task', 'Производство', 0), + (20, 2, 'Оплата за нарядами', 'EmpTask', 'Производство', 0), + (21, 2, 'Закупівлі', 'Income', 'Закупки', 0), + (22, 2, 'Продажі', 'Outcome', 'Продажи', 0), + (27, 3, 'Замовлення клієнтів', 'OrderList', 'Продажи', 0), + (28, 1, 'Замовлення', 'Order', 'Продажи', 0), + (30, 1, 'Оприбуткування з виробництва', 'ProdReceipt', 'Производство', 0), + (31, 1, 'Списання на виробництво', 'ProdIssue', 'Производство', 0), + (32, 2, 'Звіт по виробництву', 'Prod', 'Производство', 0), + (33, 4, 'Виробничі дільниці', 'ProdAreaList', '', 0), + (35, 3, 'Продажі', 'GIList', 'Продажи', 0), + (36, 4, 'Устаткування', 'EqList', '', 0), + (37, 3, 'Закупівлі', 'GRList', 'Закупки', 0), + (38, 1, 'Заявка постачальнику', 'OrderCust', 'Закупки', 0), + (39, 3, 'Заявки постачальникам', 'OrderCustList', 'Закупки', 0), + (40, 2, 'Прайс', 'Price', 'Склад', 0), + (41, 1, 'Повернення постачальнику', 'RetCustIssue', 'Закупки', 0), + (44, 1, 'Перекомплектація ТМЦ', 'TransItem', 'Склад', 0), + (46, 4, 'Каси', 'MFList', '', 0), + (47, 3, 'Журнал платежів', 'PayList', 'Касса и платежи', 0), + (48, 2, 'Рух по грошовим рахунках', 'PayActivity', 'Платежи', 0), + (50, 1, 'Прибутковий ордер', 'IncomeMoney', 'Платежи', 0), + (51, 1, 'Видатковий ордер', 'OutcomeMoney', 'Платежи', 0), + (53, 2, 'Платіжний баланс', 'PayBalance', 'Платежи', 0), + (57, 1, 'Інвентаризація', 'Inventory', 'Склад', 0), + (58, 1, 'Рахунок вхідний', 'InvoiceCust', 'Закупки', 0), + (59, 1, 'Рахунок-фактура', 'Invoice', 'Продажи', 0), + (60, 5, 'Імпорт', 'Import', '', 0), + (61, 3, 'Рух ТМЦ', 'StockList', 'Склад', 0), + (62, 1, 'Касовий чек', 'POSCheck', 'Продажи', 0), + (63, 2, 'Товари в дорозі', 'CustOrder', 'Закупки', 0), + (64, 1, 'Списання ТМЦ', 'OutcomeItem', 'Склад', 0), + (65, 1, 'Оприбуткування ТМЦ', 'IncomeItem', 'Склад', 0), + (67, 5, 'АРМ касира', 'ARMPos', '', 0), + (69, 3, 'Роботи, послуги', 'SerList', '', 0), + (70, 3, 'Розрахунки з контрагентами', 'PayCustList', 'Касса и платежи', 0), + (71, 3, 'Товари на складі', 'ItemList', 'Склад', 0), + (75, 5, 'Експорт', 'Export', '', 0); \ No newline at end of file diff --git a/www/templates/pages/options.html b/www/templates/pages/options.html index 65f508e1b..89b1c8e64 100644 --- a/www/templates/pages/options.html +++ b/www/templates/pages/options.html @@ -7,7 +7,7 @@

Настройки системы

- + - +
- + @@ -113,16 +113,16 @@

Календарь рабочего времени

- +
- +
diff --git a/www/templates_ua/modules/issue/pages/issuelist.html b/www/templates_ua/modules/issue/pages/issuelist.html index 90de02104..65d7e7a2e 100644 --- a/www/templates_ua/modules/issue/pages/issuelist.html +++ b/www/templates_ua/modules/issue/pages/issuelist.html @@ -8,31 +8,31 @@
-

Список задач

+

Список завдань

- Новая задача + Нове завдання
@@ -63,24 +63,24 @@

Список задач

- Создан Admin 11.11.2011. Проект ddddd + Створено Admin 11.11.2011. проект ddddd

- Редактировать   Удалить + Редагувати   Вилучити
- + - +
- x   + x   @@ -88,7 +88,7 @@


-
Коментарии
+
Коментарі
- +
@@ -97,22 +97,22 @@
Коментарии

xx
- +
- Уведомить + Повідомити
- Наберите пользователей, которых надо уведомить о сообщении + Наберіть користувачів, яких треба повідомити про повідомленні
- +
@@ -131,7 +131,7 @@
Коментарии
- + @@ -149,7 +149,7 @@
Коментарии
- +
@@ -179,34 +179,34 @@
Коментарии
- +
- +
- +
- +
- + @@ -214,8 +214,8 @@
Коментарии
diff --git a/www/templates_ua/modules/issue/pages/projectlist.html b/www/templates_ua/modules/issue/pages/projectlist.html index c176a6433..efb2fedd3 100644 --- a/www/templates_ua/modules/issue/pages/projectlist.html +++ b/www/templates_ua/modules/issue/pages/projectlist.html @@ -8,18 +8,18 @@
-

Проекты

+

Проекти

- Новый проект + Новий проект - - + + - + @@ -43,17 +43,17 @@

Проекты

- - - + + + +
НазваниеЗаказчикНазваЗамовник СтатусЗадачиЗавдання
   - +    -
@@ -65,32 +65,32 @@

Проекты

- +
- - + +
- +
-   - +   +
- +
diff --git a/www/templates_ua/modules/issue/pages/stat.html b/www/templates_ua/modules/issue/pages/stat.html index 7a60ee910..2c058801d 100644 --- a/www/templates_ua/modules/issue/pages/stat.html +++ b/www/templates_ua/modules/issue/pages/stat.html @@ -12,19 +12,19 @@

Статистика по задачам

diff --git a/www/templates_ua/modules/note/pages/main.html b/www/templates_ua/modules/note/pages/main.html index 2c8000e16..7ac750af3 100644 --- a/www/templates_ua/modules/note/pages/main.html +++ b/www/templates_ua/modules/note/pages/main.html @@ -13,11 +13,11 @@
@@ -29,14 +29,14 @@
-   Новый топик - - - - - - - +   Новий топік + + + + + + +
@@ -68,18 +68,18 @@
- + +   @@ -102,19 +102,19 @@
- +
- +
- +
- Отмена  - Сохранить + Скасувати  + Зберегти @@ -128,19 +128,19 @@
- +
- +
- +
@@ -169,7 +169,7 @@ diff --git a/www/templates_ua/modules/note/pages/showtopic.html b/www/templates_ua/modules/note/pages/showtopic.html index 4fd2a8ef5..8d4a63ca0 100644 --- a/www/templates_ua/modules/note/pages/showtopic.html +++ b/www/templates_ua/modules/note/pages/showtopic.html @@ -23,13 +23,13 @@ - Вставить как копию - + Вставити як копію +       - Вставить как ссылку - + Вставити як посилання + diff --git a/www/templates_ua/modules/ocstore/items.html b/www/templates_ua/modules/ocstore/items.html index 76980f09a..1addd68a3 100644 --- a/www/templates_ua/modules/ocstore/items.html +++ b/www/templates_ua/modules/ocstore/items.html @@ -5,13 +5,13 @@
-

Экспорт новых товаров

+

Експорт нових товарів

- + - - - + + + @@ -49,26 +49,26 @@

Экспорт новых товаров

- +
-  
НаименованиеНайменування АртикулКол.Цена ОписаниеКіл.Ціна Опис
- + -   +  
-

Обновление цен и количеств

+

Оновлення цін і кількості