Code Monkey home page Code Monkey logo

siyamandayubi / orchardcollaboration Goto Github PK

View Code? Open in Web Editor NEW
39.0 39.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%
cms crm-system issue-tracker orchard-cms orchard-collaboration project-management ticketing-system

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

OrchardCore

Any plan to move to OrchardCore CMS
Thanks

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.

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

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

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.

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.