Code Monkey home page Code Monkey logo

siyamandayubi / orchardcollaboration Goto Github PK

View Code? Open in Web Editor NEW
39.0 13.0 20.0 42.19 MB

Orchard Collaboration is a free, open source ticketing system, project management and collaboration framework build on top of the Orchard CMS. It natively integrates with Orchard CMS and extends its features by allowing its users to collaboratively work on the content or by simplifying communication with the customers.

License: MIT License

Batchfile 0.03% JavaScript 46.84% CSS 4.40% C# 40.92% HTML 6.10% XSLT 0.45% C 0.02% ASP 0.01% TypeScript 0.20% Gherkin 0.39% TSQL 0.01% Rich Text Format 0.65%
crm-system issue-tracker project-management cms orchard-cms orchard-collaboration ticketing-system

orchardcollaboration's Introduction

Orchardcollaboration

Orchard Collaboration is a free, open source ticketing system, project management and collaboration framework build on top of the Orchard CMS. It natively integrates with Orchard CMS and extends its features by allowing its users to collaboratively work on the content or by simplifying communication with the customers.

Online demo

Project Management

  • Milestones per project
  • Cardwall, Kanban, Gantt Chart per Milestone
  • Milestone Planning
  • Wikis per project
  • Discussions per project
  • Tickets & issues per project
  • Customizable Project dashboard
  • Activity-Stream per project, user
  • Permissions controls per project
  • Invite customers to projects
  • Add custom sub-sections to projects
  • follow / unfollow project items
  • Custom portlets for project Dashboard
  • ...

Ticket Management

  • Email Ticketing
  • Dynamic Email Templates
  • Automatic & customizable Email replies
  • Automatic Email notification
  • Custom ticket forms, custom ticket fields
  • Add watchers to tickets
  • Automatic ticket assignment using workflows
  • Commenting & discussion on tickets
  • Create/relate tickets to the other items in the system
  • Unlimited level of tickets
  • Flexible mechanism to assign/share tickets

Sugar CRM Integration

  • Import-Export Projects/Tickets from/to Sugar CRM
  • Import users from Sugar CRM
  • Link Customers with Contacts in Sugar CRM

Integration with your own software and services

One of the great benefits of Orchard is modularity. Orchard CMS already contains lot of third party modules that can empower your system. You can also easily develop your own modules and integrate them with your OrchardCollaboration portal. For example, by the help of custom module, your users can integrate the related data from the other software and services in your OrchardCollaboration portal & vise versa.

Workflows

The ability to automate the processes is a key feature in nowadays systems. Orchard provides a mature workflow engine to target that and OrchardCollaboration is fully integrated with it. By extending the original workflow engine with custom / necessary activities, OrchardCollaboration provides a simple to use mechanism to automate the process & request management. It helps you create your own specific workflows suitable for your business in minutes.

For more information, please visit the website of OrchardCollaboration here.

orchardcollaboration's People

Contributors

kasparkallas avatar siyamandayubi avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

orchardcollaboration's Issues

i cant find Git Setting

hi, tnx for your support and work.
after i install the system with predefined git support package, i can't see Git section in Settings.

please help me where i can see it or how to fix it.

with the best regards

How do supervisors see operators tickets ?

Lets say I have a supervisor operator who manages 3 operators in his company.
How would one configure the system so that the supervisor can view the tickets of all three operators under his supervision ? So that in the tickets dashboard he would see his own tickets and those of the 3 operators working under him.
Thank you.

System.Dynamic.ExpandoObject do not have definition for UserId exception throws when go to project detail page

Parts.DashboardActivityStream-ProjectLastActivityStream.cshtml
This file's part as below
<a href="@Url.Action("Display", "User", new { userId = item.UserId, area = "Orchard.CRM.Project" })">

@item.UserFullName

The cause:
If we create ticket from email, there is no UserId assigned to dynamic object as below code snippets from
ActivityStreamService.cs

if (item.User != null)
{
var user = this.basicDataService.GetOperatorOrCustomerUser(item.User.Id);
itemModel.User = user;
itemModel.UserId = item.User.Id;
itemModel.UserFullName = user != null ? CRMHelper.GetFullNameOfUser(user) : item.User.UserName;
}
else
{
itemModel.UserFullName = T("System").Text;
}

It could be quick fixed by

if (item.User != null)
{
var user = this.basicDataService.GetOperatorOrCustomerUser(item.User.Id);
itemModel.User = user;
itemModel.UserId = item.User.Id;
itemModel.UserFullName = user != null ? CRMHelper.GetFullNameOfUser(user) : item.User.UserName;
}
else
{
itemModel.UserId = 0;
itemModel.UserFullName = T("System").Text;
}
How do you think of this?
If you agree I could send a merge request.
Thanks
David

Error in Coocking Orchard

when i try to setup orchard after complete all fields it is shown this message :
This tenant is currently initializing. Please try again later.

also the online them was not available

Can't create NuGet packages

I wanted to add Orchard Collaboration packages to an existing Orchard CMS instance. Because the Orchard Collaboration in Gallery is way out of date then I had to package OC modules myself using Packaging so I could "Install from local machine". To do so I had to write a Description for Dashboard's module.txt and delete App_Data\Localization\de-DE\orchard.module.po in CRM.Core, CRM.Dashboard, CRM.Notification, CRM.Project & Reporting.

OrchardCore

Any plan to move to OrchardCore CMS
Thanks

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.