I have several products in my Bugzilla database and when I look at my ticket list there is no column for product.
How do I get a sortable Product column to be displayed?
And How do I make it the site default for all users?
Edit Bugzilla/Constants.pm and change DEFAULT_COLUMN_LIST to include product.
Related
I have an interesting one that I have searched for and can't find the solution to.
I am working with a developer who is trying to integrate our incident management tool into Palladium, a finance tool and we're stuck on being able to import invoices correctly.
Scenario
There is a view that contains the invoices but there's several elements to the invoice. The view here shows all the billing parts and includes value amounts for Products and Expenses but it doesn't show details of the products or expenses as there may be multiple line items in that invoice. There are 2 further views one containing the product information and one containing the expense information. There is a common field that can be used to reference the invoice in each of these views called Billing_Log_RecID.
Here's how the default invoice search view looks when exported. I've selected entries where there are products and/or expenses added.
What I need to do is display in a view a line item for each invoice but break out the multiple expense or product items into I guess separate columns so for example
Inv1 COMPANYNAME COMPANYID INVTOT PROD1 PVAL1 PROD2 PVAL2 etc EXP1 EVAL1 EXP2 EVAL2 etc, there's never likely to be more then 2-3 different items but to be safe 5 is a good number.
Here's an example of a query showing products attached to an invoice, I have highlighted where there are multiple lines.
The same exists for the expense items
Hope someone can help.
Dave
What I want to do?
I want to display all categories in first drop down and in second all titles of related nodes with the selected category.
To get that I have mentioned all the tasks I have done. Please read below.
Created taxonomy named category with terms listed Laptop, Car, Mobile etc.
Content type named product with fields title, description, category etc. The category field uses term reference of category taxonomy.
Created a form with WebForm with fields named category and productas drop down
First, categories drop down field, displayed all categories (Laptop, Car, Mobile) by using WebForm Term Options.
Second, product drop down field is empty yet.
I have used hook_form_FORM_ID_alter() hook to alter the webForm I created. I have found the solution to get all the nodes pragmatically those are related with specific taxonomy term ID.
My first question is how to display all these nodes' titles in existing drop down field?
Another question is on category change, products must be change according to its nodes like ajax?
I asked the same question on Drupal Stack Exchange. Here is the solution
https://drupal.stackexchange.com/questions/225840/how-to-programmatically-get-all-nodes-which-are-related-to-the-specific-term-id/225855?noredirect=1#225855
I am using the Bugzilla v 3.6.3 and in that for all the users the products are visible to every one how to restrict to some users?
First of all we need to set the Groups for the Products if we want for each individual product. After that set the Edit group permissions for the individual product
What you are looking for is called "security groups" see http://www.bugzilla.org/docs/tip/en/html/groups.html
I'm making a report that is a registration form to be printed.It prints customer information in the boxes, and it also lists the available licenses that can be purchased. Right now my problem is that each customer's info is displayed first, then at the end the licenses are displayed just once. I want it to print both the customer and license tablixes on each page. Any ideas?
I think you need to use one tablix and setup parent (customer info) and child groupings. Your being a little vague. Do you have two tablixes and customer info in one with license in another?
I have a strange requirement in Solr.
The business model is like for each store in state (say victoria), we have different sales catalog (like Richmond, Brunswick etc) which in turn act as fulfillment centers on their own.
so my url of storeId- vic and catalogId-Richmond will retrieve me catalogues with richmond's store.
Now the requirement is I need to filter out the products based on the inventory for each of these sales catalogues.
I constructed a TI table which has the following structure
catentry_id -------- QUANTITY_RICFUL-------------QUANTITY_BrunFUL
1234-------------------0------------------------------------20
I had incorporate the changes in solr query to add these columns in the final result too.
But I do not know how to filter out the products in the front end during catalogue navigation or during search.
Any help would be much appreciated!!!
So basically you want to tie the returned catalog entries in a list with inventory? For instance, when they click on a category you do not want to display products with no inventory?
This would be a customization you can either do at the Solr Level or at the JSP level. You should probably track inventory in commerce (import it) into a field Solr can key off of and then only return items with the flag set to greater than zero. I am not sure if you need actual inventory or just a boolean. Are you using a single fulfillment center or multiple ones? Multiple gets a bit trickier and it would require them to log in most likely but then fulfillment would be addressed by the ship to address.
If the store is set up with ATP inventory then you should just get this for free, as products not in stock will simply not be displayed. Check out this page in the infocenter - http://publib.boulder.ibm.com/infocenter/wchelp/v6r0m0/index.jsp?topic=%2Fcom.ibm.commerce.user.doc%2Fconcepts%2Fcosatpatpandnonatp.htm
I am not sure what you are trying to ask here but it seems you are trying to display a Quantity dropdown or display an Quantity field under each product on a search page which to me makes no sense from a UI perspective. Also keep in mind if you have integrated with a 3rd party inventory model that runs every few mins/hours etc. How often do you plan to run indexing etc?
I would rather leave such complexity to a Prodcut Detail page. If you do require to show an Quantity field on the search page I would rather prefer displaying a QuickView popup/modal that displays the color/size attributes with the quantity dropdown etc and enable a user to add an item to his/her shopping cart.