Chore: Changed layout to confirm better with the Style Guide
This commit is contained in:
parent
90c8e50cfa
commit
1468d43144
brewman/static
app
404.html
base.htmlaccount
attendance
balance-sheet
cash-flow
client
closing-stock
cost-centre
daybook
employee
employee-attendance.controller.jsemployee-attendance.htmlemployee-detail.htmlemployee-functions.controller.jsemployee-functions.htmlemployee-list.htmlemployee-service-charge.htmlemployee.controller.js
group
home.controller.jshome.htmlissue
journal
ledger
login
net-transactions
overlord.app.jspayment
product-group
product-ledger
product
profit-loss
purchase-entries
purchase-return
purchase
purchases
raw-material-cost
receipt
recipe
reconcile
salary-deduction
service-charge
settings
stock-movement
trial-balance
unposted
user
0
brewman/static/partial/cost-centre-list.html → brewman/static/app/cost-centre/cost-centre-list.html
0
brewman/static/partial/cost-centre-list.html → brewman/static/app/cost-centre/cost-centre-list.html
0
brewman/static/partial/employee-functions.html → brewman/static/app/employee/employee-functions.html
0
brewman/static/partial/employee-functions.html → brewman/static/app/employee/employee-functions.html
@ -208,7 +208,7 @@ var IssueController = ['$scope', '$routeParams', '$location', 'asDateFilter', 'v
|
||||
var modalInstance = $modal.open({
|
||||
backdrop: true,
|
||||
size: 'lg',
|
||||
templateUrl: '/partial/issue-modal.html',
|
||||
templateUrl: '/app/issue/issue-modal.html',
|
||||
controller: IssueModalController,
|
||||
resolve: {
|
||||
edit: function () {
|
@ -149,7 +149,7 @@ var JournalController = ['$scope', '$location', 'asDateFilter', '$uibModal', 'up
|
||||
var modalInstance = $modal.open({
|
||||
backdrop: true,
|
||||
size: 'lg',
|
||||
templateUrl: '/partial/journal-modal.html',
|
||||
templateUrl: '/app/journal/journal-modal.html',
|
||||
controller: JournalModalController,
|
||||
resolve: {
|
||||
edit: function () {
|
@ -3,402 +3,402 @@
|
||||
var overlord = angular.module('overlord', ['overlord.directive', 'overlord.filter', 'overlord.service', 'ngCookies', 'ngRoute', 'ui.bootstrap', 'chieffancypants.loadingBar', 'ngMaterial'])
|
||||
.config(['$routeProvider', '$locationProvider', function ($routeProvider, $locationProvider) {
|
||||
$routeProvider.
|
||||
when('/', {templateUrl: '/partial/home.html', controller: HomeController, resolve: HomeController.resolve}).
|
||||
when('/login', {templateUrl: '/partial/login.html', controller: LoginController}).
|
||||
when('/logout', {templateUrl: '/partial/home.html', controller: LogoutController}).
|
||||
when('/', {templateUrl: '/app/home.html', controller: HomeController, resolve: HomeController.resolve}).
|
||||
when('/login', {templateUrl: '/app/login/login.html', controller: LoginController}).
|
||||
when('/logout', {templateUrl: '/app/home.html', controller: LogoutController}).
|
||||
|
||||
when('/Journal', {
|
||||
templateUrl: '/partial/journal.html',
|
||||
templateUrl: '/app/journal/journal.html',
|
||||
controller: JournalController,
|
||||
resolve: JournalController.resolve
|
||||
}).
|
||||
when('/Journal/:id', {
|
||||
templateUrl: '/partial/journal.html',
|
||||
templateUrl: '/app/journal/journal.html',
|
||||
controller: JournalController,
|
||||
resolve: JournalController.resolve
|
||||
}).
|
||||
|
||||
when('/Payment', {
|
||||
templateUrl: '/partial/payment.html',
|
||||
templateUrl: '/app/payment/payment.html',
|
||||
controller: PaymentController,
|
||||
resolve: PaymentController.resolve,
|
||||
reloadOnSearch: false
|
||||
}).
|
||||
when('/Payment/:id', {
|
||||
templateUrl: '/partial/payment.html',
|
||||
templateUrl: '/app/payment/payment.html',
|
||||
controller: PaymentController,
|
||||
resolve: PaymentController.resolve,
|
||||
reloadOnSearch: false
|
||||
}).
|
||||
|
||||
when('/Receipt', {
|
||||
templateUrl: '/partial/receipt.html',
|
||||
templateUrl: '/app/receipt/receipt.html',
|
||||
controller: ReceiptController,
|
||||
resolve: ReceiptController.resolve,
|
||||
reloadOnSearch: false
|
||||
}).
|
||||
when('/Receipt/:id', {
|
||||
templateUrl: '/partial/receipt.html',
|
||||
templateUrl: '/app/receipt/receipt.html',
|
||||
controller: ReceiptController,
|
||||
resolve: ReceiptController.resolve,
|
||||
reloadOnSearch: false
|
||||
}).
|
||||
|
||||
when('/Purchase', {
|
||||
templateUrl: '/partial/purchase.html',
|
||||
templateUrl: '/app/purchase/purchase.html',
|
||||
controller: PurchaseController,
|
||||
resolve: PurchaseController.resolve
|
||||
}).
|
||||
when('/Purchase/:id', {
|
||||
templateUrl: '/partial/purchase.html',
|
||||
templateUrl: '/app/purchase/purchase.html',
|
||||
controller: PurchaseController,
|
||||
resolve: PurchaseController.resolve
|
||||
}).
|
||||
|
||||
when('/Return', {
|
||||
templateUrl: '/partial/purchase-return.html',
|
||||
templateUrl: '/app/purchase-return/purchase-return.html',
|
||||
controller: PurchaseReturnController,
|
||||
resolve: PurchaseReturnController.resolve
|
||||
}).
|
||||
when('/Return/:id', {
|
||||
templateUrl: '/partial/purchase-return.html',
|
||||
templateUrl: '/app/purchase-return/purchase-return.html',
|
||||
controller: PurchaseReturnController,
|
||||
resolve: PurchaseReturnController.resolve
|
||||
}).
|
||||
|
||||
when('/Issue', {
|
||||
templateUrl: '/partial/issue.html',
|
||||
templateUrl: '/app/issue/issue.html',
|
||||
controller: IssueController,
|
||||
resolve: IssueController.resolve
|
||||
}).
|
||||
when('/Issue/:id', {
|
||||
templateUrl: '/partial/issue.html',
|
||||
templateUrl: '/app/issue/issue.html',
|
||||
controller: IssueController,
|
||||
resolve: IssueController.resolve
|
||||
}).
|
||||
|
||||
when('/SalaryDeduction', {
|
||||
templateUrl: '/partial/salary-deduction.html',
|
||||
templateUrl: '/app/salary-deduction/salary-deduction.html',
|
||||
controller: SalaryDeductionController,
|
||||
resolve: SalaryDeductionController.resolve
|
||||
}).
|
||||
when('/SalaryDeduction/:id', {
|
||||
templateUrl: '/partial/salary-deduction.html',
|
||||
templateUrl: '/app/salary-deduction/salary-deduction.html',
|
||||
controller: SalaryDeductionController,
|
||||
resolve: SalaryDeductionController.resolve
|
||||
}).
|
||||
|
||||
when('/ServiceCharge', {
|
||||
templateUrl: '/partial/employee-service-charge.html',
|
||||
templateUrl: '/app/employee/employee-service-charge.html',
|
||||
controller: ServiceChargeController,
|
||||
resolve: ServiceChargeController.resolve
|
||||
}).
|
||||
when('/ServiceCharge/:id', {
|
||||
templateUrl: '/partial/employee-service-charge.html',
|
||||
templateUrl: '/app/employee/employee-service-charge.html',
|
||||
controller: ServiceChargeController,
|
||||
resolve: ServiceChargeController.resolve
|
||||
}).
|
||||
|
||||
when('/Ledger', {
|
||||
templateUrl: '/partial/ledger.html',
|
||||
templateUrl: '/app/ledger/ledger.html',
|
||||
controller: LedgerController,
|
||||
resolve: LedgerController.resolve
|
||||
}).
|
||||
when('/Ledger/:id', {
|
||||
templateUrl: '/partial/ledger.html',
|
||||
templateUrl: '/app/ledger/ledger.html',
|
||||
controller: LedgerController,
|
||||
resolve: LedgerController.resolve
|
||||
}).
|
||||
|
||||
when('/Reconcile', {
|
||||
templateUrl: '/partial/reconcile.html',
|
||||
templateUrl: '/app/reconcile/reconcile.html',
|
||||
controller: ReconcileController,
|
||||
resolve: ReconcileController.resolve
|
||||
}).
|
||||
when('/Reconcile/:id', {
|
||||
templateUrl: '/partial/reconcile.html',
|
||||
templateUrl: '/app/reconcile/reconcile.html',
|
||||
controller: ReconcileController,
|
||||
resolve: ReconcileController.resolve
|
||||
}).
|
||||
|
||||
when('/ProductLedger', {
|
||||
templateUrl: '/partial/product-ledger.html',
|
||||
templateUrl: '/app/product-ledger/product-ledger.html',
|
||||
controller: ProductLedgerController,
|
||||
resolve: ProductLedgerController.resolve
|
||||
}).
|
||||
when('/ProductLedger/:id', {
|
||||
templateUrl: '/partial/product-ledger.html',
|
||||
templateUrl: '/app/product-ledger/product-ledger.html',
|
||||
controller: ProductLedgerController,
|
||||
resolve: ProductLedgerController.resolve
|
||||
}).
|
||||
|
||||
when('/CashFlow', {
|
||||
templateUrl: '/partial/cash-flow.html',
|
||||
templateUrl: '/app/cash-flow/cash-flow.html',
|
||||
controller: CashFlowController,
|
||||
resolve: CashFlowController.resolve
|
||||
}).
|
||||
when('/CashFlow/:id', {
|
||||
templateUrl: '/partial/cash-flow.html',
|
||||
templateUrl: '/app/cash-flow/cash-flow.html',
|
||||
controller: CashFlowController,
|
||||
resolve: CashFlowController.resolve
|
||||
}).
|
||||
|
||||
when('/RawMaterialCost', {
|
||||
templateUrl: '/partial/raw-material-cost.html',
|
||||
templateUrl: '/app/raw-material-cost/raw-material-cost.html',
|
||||
controller: RawMaterialCostController,
|
||||
resolve: RawMaterialCostController.resolve
|
||||
}).
|
||||
when('/RawMaterialCost/:id', {
|
||||
templateUrl: '/partial/raw-material-cost-detail.html',
|
||||
templateUrl: '/app/raw-material-cost/raw-material-cost-detail.html',
|
||||
controller: RawMaterialCostController,
|
||||
resolve: RawMaterialCostController.resolve
|
||||
}).
|
||||
|
||||
when('/Attendance', {
|
||||
templateUrl: '/partial/attendance.html',
|
||||
templateUrl: '/app/attendance/attendance.html',
|
||||
controller: AttendanceController,
|
||||
resolve: AttendanceController.resolve
|
||||
}).
|
||||
when('/Attendance/:date', {
|
||||
templateUrl: '/partial/attendance.html',
|
||||
templateUrl: '/app/attendance/attendance.html',
|
||||
controller: AttendanceController,
|
||||
resolve: AttendanceController.resolve
|
||||
}).
|
||||
|
||||
when('/EmployeeAttendance', {
|
||||
templateUrl: '/partial/employee-attendance.html',
|
||||
templateUrl: '/app/employee/employee-attendance.html',
|
||||
controller: EmployeeAttendanceController,
|
||||
resolve: EmployeeAttendanceController.resolve
|
||||
}).
|
||||
when('/EmployeeAttendance/:id', {
|
||||
templateUrl: '/partial/employee-attendance.html',
|
||||
templateUrl: '/app/employee/employee-attendance.html',
|
||||
controller: EmployeeAttendanceController,
|
||||
resolve: EmployeeAttendanceController.resolve
|
||||
}).
|
||||
|
||||
when('/Daybook', {
|
||||
templateUrl: '/partial/daybook.html',
|
||||
templateUrl: '/app/daybook/daybook.html',
|
||||
controller: DaybookController,
|
||||
resolve: DaybookController.resolve
|
||||
}).
|
||||
when('/Unposted', {
|
||||
templateUrl: '/partial/unposted.html',
|
||||
templateUrl: '/app/unposted/unposted.html',
|
||||
controller: UnpostedController,
|
||||
resolve: UnpostedController.resolve
|
||||
}).
|
||||
when('/ProfitLoss', {
|
||||
templateUrl: '/partial/profit-loss.html',
|
||||
templateUrl: '/app/profit-loss/profit-loss.html',
|
||||
controller: ProfitLossController,
|
||||
resolve: ProfitLossController.resolve
|
||||
}).
|
||||
when('/StockMovement', {
|
||||
templateUrl: '/partial/stock-movement.html',
|
||||
templateUrl: '/app/stock-movement/stock-movement.html',
|
||||
controller: StockMovementController,
|
||||
resolve: StockMovementController.resolve
|
||||
}).
|
||||
when('/NetTransactions', {
|
||||
templateUrl: '/partial/net-transactions.html',
|
||||
templateUrl: '/app/net-transactions/net-transactions.html',
|
||||
controller: NetTransactionsController,
|
||||
resolve: NetTransactionsController.resolve
|
||||
}).
|
||||
when('/PurchaseEntries', {
|
||||
templateUrl: '/partial/purchase-entries.html',
|
||||
templateUrl: '/app/purchase-entries/purchase-entries.html',
|
||||
controller: PurchaseEntriesController,
|
||||
resolve: PurchaseEntriesController.resolve
|
||||
}).
|
||||
when('/Purchases', {
|
||||
templateUrl: '/partial/purchases.html',
|
||||
templateUrl: '/app/purchases/purchases.html',
|
||||
controller: PurchasesController,
|
||||
resolve: PurchasesController.resolve
|
||||
}).
|
||||
when('/EmployeeFunctions', {
|
||||
templateUrl: '/partial/employee-functions.html',
|
||||
templateUrl: '/app/employee-functions/employee-functions.html',
|
||||
controller: EmployeeFunctionsController
|
||||
}).
|
||||
|
||||
when('/BalanceSheet', {
|
||||
templateUrl: '/partial/balance-sheet.html',
|
||||
templateUrl: '/app/balance-sheet/balance-sheet.html',
|
||||
controller: BalanceSheetController,
|
||||
resolve: BalanceSheetController.resolve
|
||||
}).
|
||||
when('/BalanceSheet/:date', {
|
||||
templateUrl: '/partial/balance-sheet.html',
|
||||
templateUrl: '/app/balance-sheet/balance-sheet.html',
|
||||
controller: BalanceSheetController,
|
||||
resolve: BalanceSheetController.resolve
|
||||
}).
|
||||
|
||||
when('/TrialBalance', {
|
||||
templateUrl: '/partial/trial-balance.html',
|
||||
templateUrl: '/app/trial-balance/trial-balance.html',
|
||||
controller: TrialBalanceController,
|
||||
resolve: TrialBalanceController.resolve
|
||||
}).
|
||||
when('/TrialBalance/:date', {
|
||||
templateUrl: '/partial/trial-balance.html',
|
||||
templateUrl: '/app/trial-balance/trial-balance.html',
|
||||
controller: TrialBalanceController,
|
||||
resolve: TrialBalanceController.resolve
|
||||
}).
|
||||
|
||||
when('/ClosingStock', {
|
||||
templateUrl: '/partial/closing-stock.html',
|
||||
templateUrl: '/app/closing-stock/closing-stock.html',
|
||||
controller: ClosingStockController,
|
||||
resolve: ClosingStockController.resolve
|
||||
}).
|
||||
when('/ClosingStock/:date', {
|
||||
templateUrl: '/partial/closing-stock.html',
|
||||
templateUrl: '/app/closing-stock/closing-stock.html',
|
||||
controller: ClosingStockController,
|
||||
resolve: ClosingStockController.resolve
|
||||
}).
|
||||
|
||||
when('/Accounts', {
|
||||
templateUrl: '/partial/account-list.html',
|
||||
templateUrl: '/app/account/account-list.html',
|
||||
controller: AccountListController,
|
||||
resolve: AccountListController.resolve,
|
||||
reloadOnSearch: false
|
||||
}).
|
||||
when('/Account', {
|
||||
templateUrl: '/partial/account-detail.html',
|
||||
templateUrl: '/app/account/account-detail.html',
|
||||
controller: AccountController,
|
||||
resolve: AccountController.resolve
|
||||
}).
|
||||
when('/Account/:id', {
|
||||
templateUrl: '/partial/account-detail.html',
|
||||
templateUrl: '/app/account-detail/account-detail.html',
|
||||
controller: AccountController,
|
||||
resolve: AccountController.resolve
|
||||
}).
|
||||
|
||||
when('/Employees', {
|
||||
templateUrl: '/partial/employee-list.html',
|
||||
templateUrl: '/app/employee/employee-list.html',
|
||||
controller: EmployeeListController,
|
||||
resolve: EmployeeListController.resolve,
|
||||
reloadOnSearch: false
|
||||
}).
|
||||
when('/Employee', {
|
||||
templateUrl: '/partial/employee-detail.html',
|
||||
templateUrl: '/app/employee/employee-detail.html',
|
||||
controller: EmployeeController,
|
||||
resolve: EmployeeController.resolve
|
||||
}).
|
||||
when('/Employee/:id', {
|
||||
templateUrl: '/partial/employee-detail.html',
|
||||
templateUrl: '/app/employee/employee-detail.html',
|
||||
controller: EmployeeController,
|
||||
resolve: EmployeeController.resolve
|
||||
}).
|
||||
|
||||
when('/CostCentres', {
|
||||
templateUrl: '/partial/cost-centre-list.html',
|
||||
templateUrl: '/app/cost-centre/cost-centre-list.html',
|
||||
controller: CostCentreListController,
|
||||
resolve: CostCentreListController.resolve
|
||||
}).
|
||||
when('/CostCentre', {
|
||||
templateUrl: '/partial/cost-centre-detail.html',
|
||||
templateUrl: '/app/cost-centre/cost-centre-detail.html',
|
||||
controller: CostCentreController,
|
||||
resolve: CostCentreController.resolve
|
||||
}).
|
||||
when('/CostCentre/:id', {
|
||||
templateUrl: '/partial/cost-centre-detail.html',
|
||||
templateUrl: '/app/cost-centre/cost-centre-detail.html',
|
||||
controller: CostCentreController,
|
||||
resolve: CostCentreController.resolve
|
||||
}).
|
||||
|
||||
when('/Products', {
|
||||
templateUrl: '/partial/product-list.html',
|
||||
templateUrl: '/app/product/product-list.html',
|
||||
controller: ProductListController,
|
||||
resolve: ProductListController.resolve,
|
||||
reloadOnSearch: false
|
||||
}).
|
||||
when('/Product', {
|
||||
templateUrl: '/partial/product-detail.html',
|
||||
templateUrl: '/app/product/product-detail.html',
|
||||
controller: ProductController,
|
||||
resolve: ProductController.resolve
|
||||
}).
|
||||
when('/Product/:id', {
|
||||
templateUrl: '/partial/product-detail.html',
|
||||
templateUrl: '/app/product/product-detail.html',
|
||||
controller: ProductController,
|
||||
resolve: ProductController.resolve
|
||||
}).
|
||||
|
||||
when('/Recipes', {
|
||||
templateUrl: '/partial/recipe-list.html',
|
||||
templateUrl: '/app/recipe/recipe-list.html',
|
||||
controller: RecipeListController,
|
||||
resolve: RecipeListController.resolve,
|
||||
reloadOnSearch: false
|
||||
}).
|
||||
when('/Recipe', {
|
||||
templateUrl: '/partial/recipe-detail.html',
|
||||
templateUrl: '/app/recipe/recipe-detail.html',
|
||||
controller: RecipeController,
|
||||
resolve: RecipeController.resolve
|
||||
}).
|
||||
when('/Recipe/:id', {
|
||||
templateUrl: '/partial/recipe-detail.html',
|
||||
templateUrl: '/app/recipe/recipe-detail.html',
|
||||
controller: RecipeController,
|
||||
resolve: RecipeController.resolve
|
||||
}).
|
||||
|
||||
when('/ProductGroups', {
|
||||
templateUrl: '/partial/product-group-list.html',
|
||||
templateUrl: '/app/product-group/product-group-list.html',
|
||||
controller: ProductGroupListController,
|
||||
resolve: ProductGroupListController.resolve
|
||||
}).
|
||||
when('/ProductGroup', {
|
||||
templateUrl: '/partial/product-group-detail.html',
|
||||
templateUrl: '/app/product-group/product-group-detail.html',
|
||||
controller: ProductGroupController,
|
||||
resolve: ProductGroupController.resolve
|
||||
}).
|
||||
when('/ProductGroup/:id', {
|
||||
templateUrl: '/partial/product-group-detail.html',
|
||||
templateUrl: '/app/product-group/product-group-detail.html',
|
||||
controller: ProductGroupController,
|
||||
resolve: ProductGroupController.resolve
|
||||
}).
|
||||
|
||||
when('/Users', {
|
||||
templateUrl: '/partial/user-list.html',
|
||||
templateUrl: '/app/user/user-list.html',
|
||||
controller: UserListController,
|
||||
resolve: UserListController.resolve
|
||||
}).
|
||||
when('/User', {
|
||||
templateUrl: '/partial/user-detail.html',
|
||||
templateUrl: '/app/user/user-detail.html',
|
||||
controller: UserController,
|
||||
resolve: UserController.resolve
|
||||
}).
|
||||
when('/User/:id', {
|
||||
templateUrl: '/partial/user-detail.html',
|
||||
templateUrl: '/app/user/user-detail.html',
|
||||
controller: UserController,
|
||||
resolve: UserController.resolve
|
||||
}).
|
||||
|
||||
when('/Groups', {
|
||||
templateUrl: '/partial/group-list.html',
|
||||
templateUrl: '/app/group/group-list.html',
|
||||
controller: GroupListController,
|
||||
resolve: GroupListController.resolve
|
||||
}).
|
||||
when('/Group', {
|
||||
templateUrl: '/partial/group-detail.html',
|
||||
controller: GroupController,
|
||||
templateUrl: '/app/group/group-detail.html',
|
||||
resolve: GroupController.resolve
|
||||
}).
|
||||
when('/Group/:id', {
|
||||
templateUrl: '/partial/group-detail.html',
|
||||
templateUrl: '/app/group/group-detail.html',
|
||||
controller: GroupController,
|
||||
resolve: GroupController.resolve
|
||||
}).
|
||||
|
||||
when('/Clients', {
|
||||
templateUrl: '/partial/client-list.html',
|
||||
templateUrl: '/app/client/client-list.html',
|
||||
controller: ClientListController,
|
||||
resolve: ClientListController.resolve
|
||||
}).
|
||||
when('/Client/:id', {
|
||||
templateUrl: '/partial/client-detail.html',
|
||||
templateUrl: '/app/client/client-detail.html',
|
||||
controller: ClientController,
|
||||
resolve: ClientController.resolve
|
||||
}).
|
||||
|
||||
when('/Settings', {
|
||||
templateUrl: '/partial/settings.html',
|
||||
templateUrl: '/app/settings/settings.html',
|
||||
controller: SettingsController,
|
||||
resolve: SettingsController.resolve
|
||||
}).
|
||||
|
||||
otherwise({templateUrl: '/partial/404.html'});
|
||||
otherwise({templateUrl: '/app/404.html'});
|
||||
$locationProvider.html5Mode(true).hashPrefix('!');
|
||||
}])
|
||||
.config(['$httpProvider', function ($httpProvider) {
|
@ -144,7 +144,7 @@ var PaymentController = ['$scope', '$location', 'asDateFilter', '$uibModal', 'up
|
||||
var modalInstance = $modal.open({
|
||||
backdrop: true,
|
||||
size: 'lg',
|
||||
templateUrl: '/partial/payment-modal.html',
|
||||
templateUrl: '/app/payment/payment-modal.html',
|
||||
controller: PaymentModalController,
|
||||
resolve: {
|
||||
edit: function () {
|
0
brewman/static/partial/product-ledger.html → brewman/static/app/product-ledger/product-ledger.html
0
brewman/static/partial/product-ledger.html → brewman/static/app/product-ledger/product-ledger.html
@ -135,7 +135,7 @@ var PurchaseReturnController = ['$scope', '$location', 'asDateFilter', '$uibModa
|
||||
var modalInstance = $modal.open({
|
||||
backdrop: true,
|
||||
size: 'lg',
|
||||
templateUrl: '/partial/purchase-return-modal.html',
|
||||
templateUrl: '/app/purchase-return/purchase-return-modal.html',
|
||||
controller: PurchaseReturnModalController,
|
||||
resolve: {
|
||||
edit: function () {
|
@ -137,7 +137,7 @@ var PurchaseController = ['$scope', '$location', 'asDateFilter', '$uibModal', 'u
|
||||
var modalInstance = $modal.open({
|
||||
backdrop: true,
|
||||
size: 'lg',
|
||||
templateUrl: '/partial/purchase-modal.html',
|
||||
templateUrl: '/app/purchase/purchase-modal.html',
|
||||
controller: PurchaseModalController,
|
||||
resolve: {
|
||||
edit: function () {
|
@ -143,7 +143,7 @@ var ReceiptController = ['$scope', '$routeParams', '$location', 'asDateFilter',
|
||||
var modalInstance = $modal.open({
|
||||
backdrop: true,
|
||||
size: 'lg',
|
||||
templateUrl: '/partial/receipt-modal.html',
|
||||
templateUrl: '/app/receipt/receipt-modal.html',
|
||||
controller: ReceiptModalController,
|
||||
resolve: {
|
||||
edit: function () {
|
0
brewman/static/partial/stock-movement.html → brewman/static/app/stock-movement/stock-movement.html
0
brewman/static/partial/stock-movement.html → brewman/static/app/stock-movement/stock-movement.html
@ -9,9 +9,11 @@
|
||||
<meta name="author" content="Tanshu">
|
||||
|
||||
<!-- Styles -->
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
|
||||
integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
|
||||
<!-- <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous"> -->
|
||||
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/angular_material/1.0.0/angular-material.min.css"/>
|
||||
<link rel="stylesheet"
|
||||
href="https://ajax.googleapis.com/ajax/libs/angular_material/1.0.0/angular-material.min.css"/>
|
||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||||
<link rel="stylesheet" type="text/css" media="screen" href="/css/table.css"/>
|
||||
<link rel="stylesheet" type="text/css" media="screen" href="/css/chosen.min.css"/>
|
||||
@ -29,7 +31,9 @@
|
||||
<script src="/js/jquery-2.1.3.min.js"></script>
|
||||
<script src="/js/jquery.scrolltoview.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/lodash/4.17.2/lodash.min.js"></script>
|
||||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
|
||||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"
|
||||
integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"
|
||||
crossorigin="anonymous"></script>
|
||||
<script src="/js/showdown.min.js"></script>
|
||||
<script src="/js/moment.js"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjs/3.8.0/math.min.js"></script>
|
||||
@ -46,52 +50,52 @@
|
||||
<script src="/js/ui-bootstrap-tpls-2.5.0.min.js"></script>
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/angular_material/1.0.0/angular-material.min.js"></script>
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular-aria.min.js"></script>
|
||||
<script src="/script/overlord.js"></script>
|
||||
<script src="/script/angular_directive.js"></script>
|
||||
<script src="/script/angular_filter.js"></script>
|
||||
<script src="/script/angular_service.js"></script>
|
||||
<script src="/script/growl-service.js"></script>
|
||||
<script src="/script/home.js"></script>
|
||||
<script src="/script/login.js"></script>
|
||||
<script src="/script/settings.js"></script>
|
||||
|
||||
<script src="/script/journal.js"></script>
|
||||
<script src="/script/payment.js"></script>
|
||||
<script src="/script/receipt.js"></script>
|
||||
<script src="/script/purchase.js"></script>
|
||||
<script src="/script/purchase-return.js"></script>
|
||||
<script src="/script/issue.js"></script>
|
||||
<script src="/script/salary-deduction.js"></script>
|
||||
<script src="/script/service-charge.js"></script>
|
||||
|
||||
<script src="/script/employee-attendance.js"></script>
|
||||
<script src="/script/employee-functions.js"></script>
|
||||
<script src="/script/attendance.js"></script>
|
||||
<script src="/script/purchases.js"></script>
|
||||
<script src="/script/ledger.js"></script>
|
||||
<script src="/script/reconcile.js"></script>
|
||||
<script src="/script/recipe.js"></script>
|
||||
<script src="/script/product-ledger.js"></script>
|
||||
<script src="/script/trial-balance.js"></script>
|
||||
<script src="/script/net-transactions.js"></script>
|
||||
<script src="/script/closing-stock.js"></script>
|
||||
<script src="/script/profit-loss.js"></script>
|
||||
<script src="/script/stock-movement.js"></script>
|
||||
<script src="/script/balance-sheet.js"></script>
|
||||
<script src="/script/purchase-entries.js"></script>
|
||||
<script src="/script/cash-flow.js"></script>
|
||||
<script src="/script/raw-material-cost.js"></script>
|
||||
<script src="/script/daybook.js"></script>
|
||||
<script src="/script/unposted.js"></script>
|
||||
<script src="/app/overlord.app.js"></script>
|
||||
<script src="/app/account/account.controller.js"></script>
|
||||
<script src="/app/attendance/attendance.controller.js"></script>
|
||||
<script src="/app/balance-sheet/balance-sheet.controller.js"></script>
|
||||
<script src="/app/cash-flow/cash-flow.controller.js"></script>
|
||||
<script src="/app/client/client.controller.js"></script>
|
||||
<script src="/app/closing-stock/closing-stock.controller.js"></script>
|
||||
<script src="/app/cost-centre/cost-centre.controller.js"></script>
|
||||
<script src="/app/daybook/daybook.controller.js"></script>
|
||||
<script src="/app/employee/employee.controller.js"></script>
|
||||
<script src="/app/employee/employee-attendance.controller.js"></script>
|
||||
<script src="/app/employee/employee-functions.controller.js"></script>
|
||||
<script src="/app/group/group.controller.js"></script>
|
||||
<script src="/app/issue/issue.controller.js"></script>
|
||||
<script src="/app/journal/journal.controller.js"></script>
|
||||
<script src="/app/ledger/ledger.controller.js"></script>
|
||||
<script src="/app/login/login.controller.js"></script>
|
||||
<script src="/app/net-transactions/net-transactions.controller.js"></script>
|
||||
<script src="/app/payment/payment.controller.js"></script>
|
||||
<script src="/app/product/product.controller.js"></script>
|
||||
<script src="/app/product-group/product-group.controller.js"></script>
|
||||
<script src="/app/product-ledger/product-ledger.controller.js"></script>
|
||||
<script src="/app/profit-loss/profit-loss.controller.js"></script>
|
||||
<script src="/app/purchase/purchase.controller.js"></script>
|
||||
<script src="/app/purchase-entries/purchase-entries.controller.js"></script>
|
||||
<script src="/app/purchase-return/purchase-return.controller.js"></script>
|
||||
<script src="/app/purchases/purchases.controller.js"></script>
|
||||
<script src="/app/raw-material-cost/raw-material-cost.controller.js"></script>
|
||||
<script src="/app/receipt/receipt.controller.js"></script>
|
||||
<script src="/app/recipe/recipe.controller.js"></script>
|
||||
<script src="/app/reconcile/reconcile.controller.js"></script>
|
||||
<script src="/app/salary-deduction/salary-deduction.controller.js"></script>
|
||||
<script src="/app/service-charge/service-charge.controller.js"></script>
|
||||
<script src="/app/settings/settings.controller.js"></script>
|
||||
<script src="/app/stock-movement/stock-movement.controller.js"></script>
|
||||
<script src="/app/trial-balance/trial-balance.controller.js"></script>
|
||||
<script src="/app/unposted/unposted.controller.js"></script>
|
||||
<script src="/app/user/user.controller.js"></script>
|
||||
<script src="/app/home.controller.js"></script>
|
||||
|
||||
<script src="/script/account.js"></script>
|
||||
<script src="/script/employee.js"></script>
|
||||
<script src="/script/user.js"></script>
|
||||
<script src="/script/group.js"></script>
|
||||
<script src="/script/client.js"></script>
|
||||
<script src="/script/cost-centre.js"></script>
|
||||
<script src="/script/product.js"></script>
|
||||
<script src="/script/product-group.js"></script>
|
||||
|
||||
<!-- Le fav and touch icons -->
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
|
Loading…
x
Reference in New Issue
Block a user